We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7f24a3 commit b40a473Copy full SHA for b40a473
.github/workflows/release.yml
@@ -50,8 +50,8 @@ jobs:
50
51
if (eventName === 'workflow_dispatch') {
52
shouldRelease = true
53
- bump = core.getInput('bump')
54
- targetSha = core.getInput('ref') || context.ref.replace('refs/heads/', '')
+ bump = (context.payload.inputs?.bump || '').toLowerCase()
+ targetSha = context.payload.inputs?.ref || context.ref.replace('refs/heads/', '')
55
}
56
57
if (eventName === 'issue_comment') {
0 commit comments