CI: do not cancel concurrent builds on the same branch
Instead, only cancel them if the builds have the same commit SHA.
This commit is contained in:
parent
27e10c5292
commit
7fb559353e
2 changed files with 2 additions and 2 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -31,7 +31,7 @@ defaults:
|
|||
run:
|
||||
shell: bash
|
||||
concurrency:
|
||||
group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}"
|
||||
group: "${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}"
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
pr:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue