Skip to content

Commit 7e29628

Browse files
authored
Fix newsfragment check being cancelled on rapid PR events (#64447)
Change cancel-in-progress from true to false so that concurrent runs queue instead of cancelling each other. This check is very lightweight (single API call) so queueing has no downside, and avoids spurious "Cancelled" status on PRs that receive multiple events in quick succession (e.g. push + label change).
1 parent fbdff1e commit 7e29628

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/check-newsfragment-pr-number.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ permissions:
3232

3333
concurrency:
3434
group: check-newsfragment-${{ github.event.pull_request.number }}
35-
cancel-in-progress: true
35+
cancel-in-progress: false
3636

3737
jobs:
3838
check-newsfragment-pr-number:

0 commit comments

Comments
 (0)