Showing with 49 additions and 25 deletions.
  1. +6 −2 .github/workflows/ci.yml
  2. +0 −13 .github/workflows/labeller.yml
  3. +1 −1 .github/workflows/mend.yml
  4. +1 −1 .github/workflows/nightly.yml
  5. +30 −3 .github/workflows/release.yml
  6. +4 −2 .github/workflows/release_prep.yml
  7. +4 −0 CHANGELOG.md
  8. +1 −1 CODEOWNERS
  9. +2 −2 metadata.json
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ on:
branches:
- "main"
workflow_dispatch:


concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
Spec:
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@forked-modules"
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
secrets: "inherit"
13 changes: 0 additions & 13 deletions .github/workflows/labeller.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/mend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ on:
jobs:

mend:
uses: "puppetlabs/cat-github-actions/.github/workflows/mend_ruby.yml@forked-modules"
uses: "puppetlabs/cat-github-actions/.github/workflows/mend_ruby.yml@main"
secrets: "inherit"
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ on:

jobs:
Spec:
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@forked-modules"
uses: "puppetlabs/cat-github-actions/.github/workflows/module_ci.yml@main"
secrets: "inherit"
33 changes: 30 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,36 @@
name: "Publish module"
run-name: >
${{ format('tag={0}', inputs.tag) }}
${{ format('release={0}', inputs.release) }}
${{ format('publish={0}', inputs.publish) }}
${{ format('edit={0}', inputs.edit) }}
on:
workflow_dispatch:

inputs:
tag:
description: "Leave blank to tag HEAD of branch, or existing tag to edit"
default: ''
type: string
release:
description: "Create a Github release"
type: boolean
default: true
publish:
description: "Publish to the Forge"
type: boolean
default: true
edit:
description: "Regenerate release notes and existing tag"
default: false
type: boolean

jobs:
release:
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release.yml@forked-modules"
release:
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release.yml@main"
secrets: "inherit"
with:
tag: ${{ inputs.tag }}
release: ${{ inputs.release }}
publish: ${{ inputs.publish }}
edit: ${{ inputs.edit }}
6 changes: 4 additions & 2 deletions .github/workflows/release_prep.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
name: "Release Prep"
run-name: >
version=${{ inputs.version }}
on:
workflow_dispatch:
Expand All @@ -9,7 +11,7 @@ on:

jobs:
release_prep:
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release_prep.yml@forked-modules"
uses: "puppetlabs/cat-github-actions/.github/workflows/module_release_prep.yml@main"
with:
version: "${{ github.event.inputs.version }}"
version: "${{ inputs.version }}"
secrets: "inherit"
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org).

## [v0.9.2](https://github.com/puppetlabs/puppetlabs-puppet_status_check/tree/v0.9.2) - 2024-05-22

[Full Changelog](https://github.com/puppetlabs/puppetlabs-puppet_status_check/compare/v0.9.1...v0.9.2)

## [v0.9.1](https://github.com/puppetlabs/puppetlabs-puppet_status_check/tree/v0.9.1) - 2024-05-10

[Full Changelog](https://github.com/puppetlabs/puppetlabs-puppet_status_check/compare/v0.9.0...v0.9.1)
Expand Down
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Setting ownership to the PS Team
* @professional-services
* @puppetlabs/professional-services
4 changes: 2 additions & 2 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-puppet_status_check",
"version": "0.9.1",
"version": "0.9.2",
"author": "puppetlabs",
"summary": "A Puppet Module to Promote Preventative Maintenance and Self Service",
"license": "Apache-2.0",
Expand Down Expand Up @@ -94,7 +94,7 @@
"requirements": [
{
"name": "puppet",
"version_requirement": ">= 7.18.0 < 9.0.0"
"version_requirement": ">= 7.10.0 < 9.0.0"
}
],
"pdk-version": "3.1.0 (g0d3e8e8)",
Expand Down