Skip to content

Commit 65a213b

Browse files
authored
Merge pull request #127 from nmburgan/main
Add release_prep workflow
2 parents b83c54f + f74d566 commit 65a213b

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.github/workflows/release_prep.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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"

.sync.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
.github/workflows/auto_release.yml:
2+
.github/workflows/release_prep.yml:
33
unmanaged: false
44
.github/workflows/release.yml:
55
unmanaged: false

0 commit comments

Comments
 (0)