Skip to content

Commit 60eee56

Browse files
committed
Make name difference invisible for end users
1 parent e88989c commit 60eee56

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/ci-cd.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -508,9 +508,12 @@ jobs:
508508
codecov-token: ${{ secrets.CODECOV_TOKEN }}
509509

510510
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' }}
511+
512+
# Separate 'pull_request' check from other checks to avoid confusion in
513+
# 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 ' }}
514517
if: always()
515518

516519
needs:

0 commit comments

Comments
 (0)