Skip to content

Commit

Permalink
Merge pull request #81 from voxpupuli/prep
Browse files Browse the repository at this point in the history
Add release-prep action
  • Loading branch information
bastelfreak authored Dec 20, 2024
2 parents c5eb924 + 68fc9ee commit 7fe77c1
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/prepare_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
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 7fe77c1

Please sign in to comment.