Skip to content

Commit 2a88a46

Browse files
do not require version
1 parent 6010e22 commit 2a88a46

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
inputs:
66
version:
77
description: 'Version to release (or "auto")'
8-
required: true
8+
required: false
99
force:
1010
description: Force a release even when there are release-blockers (optional)
1111
required: false
@@ -17,6 +17,8 @@ jobs:
1717
release:
1818
uses: getsentry/craft/.github/workflows/release.yml@v2
1919
with:
20-
version: ${{ inputs.version || 'auto' }}
20+
version: ${{ github.event.inputs.version || 'auto' }}
21+
force: ${{ github.event.inputs.force }}
22+
merge_target: ${{ github.event.inputs.merge_target }}
2123
secrets: inherit
2224

0 commit comments

Comments
 (0)