Skip to content

Commit

Permalink
Allow reset of release-status checkrun with dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
rvermeulen committed Sep 20, 2023
1 parent e9b5131 commit 01a0a7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-release-status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
echo "CHECK_RUN_CONCLUSION=$check_run_conclusion" >> "$GITHUB_ENV"
- name: Reset release status
if: github.event_name == 'check_run' && env.CHECK_RUN_STATUS == 'completed' && github.event.action == 'rerequested'
if: env.CHECK_RUN_STATUS == 'completed' && ((github.event_name == 'check_run' && github.event.action == 'rerequested') || github.event_name == 'workflow_dispatch')
env:
GITHUB_TOKEN: ${{ github.token }}
run: |
Expand Down

0 comments on commit 01a0a7f

Please sign in to comment.