Skip to content

Commit

Permalink
Add release-prep action
Browse files Browse the repository at this point in the history
  • Loading branch information
bastelfreak committed Dec 19, 2024
1 parent c5eb924 commit a384951
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/prepare_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: 'Prepare Release'

on:
workflow_dispatch:
inputs:
version:
description: 'Module version to be released. Must be a valid semver string without leading v. (1.2.3)'
required: true

jobs:
release_prep:
uses: 'voxpupuli/gha-puppet/.github/workflows/prepare_release.yml@prep'
with:
version: ${{ github.event.inputs.version }}
secrets: 'inherit'

0 comments on commit a384951

Please sign in to comment.