Skip to content

Commit 1c08f8e

Browse files
committed
GH-47067: [Release] Fix wrong GitHub Actions context in verify_rc.yml (#47068)
### Rationale for this change We must use `inputs` not `input` for inputs for workflow dispatch: https://docs.github.com/en/actions/reference/contexts-reference#inputs-context ### What changes are included in this PR? Fix the context name. ### Are these changes tested? No. ### Are there any user-facing changes? No. * GitHub Issue: #47067 Authored-by: Sutou Kouhei <[email protected]> Signed-off-by: Sutou Kouhei <[email protected]>
1 parent 70e5c51 commit 1c08f8e

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/verify_rc.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,9 @@ jobs:
5454
run: |
5555
case "${GITHUB_EVENT_NAME}" in
5656
workflow_dispatch)
57-
tag="${{ input.rc_tag }}"
57+
tag="${{ inputs.rc_tag }}"
5858
;;
5959
pull_request)
60-
env | sort
6160
tag="$(gh release list \
6261
--jq '.[] | select(.isPrerelease) | .tagName' \
6362
--json tagName,isPrerelease \

0 commit comments

Comments
 (0)