Skip to content

Commit

Permalink
chore: Add merge target to release action (#555)
Browse files Browse the repository at this point in the history
  • Loading branch information
AbhiPrasad committed Sep 13, 2022
1 parent 489609a commit 3fc87af
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: Prepare Release
on:
workflow_dispatch:
inputs:
Expand All @@ -8,6 +8,9 @@ on:
force:
description: Force a release even when there are release-blockers (optional)
required: false
merge_target:
description: Target branch to merge into. Uses the default branch as a fallback (optional)
required: false
jobs:
release:
runs-on: ubuntu-latest
Expand All @@ -24,3 +27,4 @@ jobs:
with:
version: ${{ github.event.inputs.version }}
force: ${{ github.event.inputs.force }}
merge_target: ${{ github.event.inputs.merge_target }}

0 comments on commit 3fc87af

Please sign in to comment.