File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -57,17 +57,18 @@ jobs:
57
57
env :
58
58
GITHUB_TOKEN : ${{ github.token }}
59
59
run : |
60
- CHECK_RUN_ID =$(gh api \
60
+ check_run_id =$(gh api \
61
61
--header "Accept: application/vnd.github+json" \
62
62
--header "X-GitHub-Api-Version: 2022-11-28" \
63
63
--field name="release-status" \
64
64
--field head_sha="$HEAD_SHA" \
65
65
--jq ".id" \
66
66
/repos/$GITHUB_REPOSITORY/check-runs)
67
67
68
- echo "Created release status check run with id $CHECK_RUN_ID "
68
+ echo "Created release status check run with id $check_run_id "
69
69
# Reset the status to in progress.
70
70
echo "CHECK_RUN_STATUS=in_progress" >> "$GITHUB_ENV"
71
+ echo "CHECK_RUN_ID=$check_run_id" >> "$GITHUB_ENV"
71
72
72
73
- name : Check all runs completed
73
74
if : env.CHECK_RUN_STATUS != 'completed'
You can’t perform that action at this time.
0 commit comments