We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e88989c commit 60eee56Copy full SHA for 60eee56
.github/workflows/ci-cd.yml
@@ -508,9 +508,12 @@ jobs:
508
codecov-token: ${{ secrets.CODECOV_TOKEN }}
509
510
check: # This job does nothing and is only used for the branch protection
511
- # Prevent run 'push' events for the branches in upstream repository as it
512
- # already covered by 'pull_request' event
513
- name: ${{ github.event_name == 'pull_request' && '🔀 check' || 'check' }}
+
+ # Separate 'pull_request' check from other checks to avoid confusion in
+ # GitHub branch protection about which check is required when multiple
514
+ # events trigger this workflow.
515
+ name: >-
516
+ ${{ github.event_name == 'pull_request' && 'check' || 'check ' }}
517
if: always()
518
519
needs:
0 commit comments