We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c029062 commit 7c54ed4Copy full SHA for 7c54ed4
.github/workflows/auto_release.yml
.github/workflows/release_prep.yml
@@ -0,0 +1,15 @@
1
+name: "Release Prep"
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ version:
7
+ description: "Module version to be released. Must be a valid semver string. (1.2.3)"
8
+ required: true
9
10
+jobs:
11
+ release_prep:
12
+ uses: "puppetlabs/cat-github-actions/.github/workflows/module_release_prep.yml@main"
13
+ with:
14
+ version: "${{ github.event.inputs.version }}"
15
+ secrets: "inherit"
0 commit comments