Skip to content

Commit 0b6493e

Browse files
potiukSubham-KRLX
authored andcommitted
Fix newsfragment check being cancelled on rapid PR events (apache#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 7ffa965 commit 0b6493e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.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)