Skip to content

Commit

Permalink
(MAINT) Add a release prep workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
chelnak committed Sep 29, 2022
1 parent 63aed5d commit e8e9738
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release_prep.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: "Release Prep"

on:
workflow_dispatch:
inputs:
target:
description: "The target for the release. This can be a commit sha or a branch."
required: false
default: "main"

jobs:
release_prep:
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_release_prep.yml@main"
with:
target: "${{ github.event.inputs.target }}"
secrets: "inherit"

0 comments on commit e8e9738

Please sign in to comment.