Skip to content
This repository was archived by the owner on Sep 2, 2022. It is now read-only.

Commit 4fa8e00

Browse files
committed
Don't cancel concurrent CI builds running for merged commits on master
This would happen for the commit that was merged first: > Canceling since a higher priority waiting request for 'ci-' exists More info: https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
1 parent a55ca4d commit 4fa8e00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
pull_request:
77

88
concurrency:
9-
group: ci-${{ github.head_ref }}
9+
group: ci-${{ github.head_ref || github.run_id }}
1010
cancel-in-progress: true
1111

1212
jobs:

0 commit comments

Comments
 (0)