ci: don't cancel jobs on master
It can be useful to see the full results of all master commits when trying to bisect a regression.
This commit is contained in:
parent
b97208704b
commit
a994562121
1 changed files with 1 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -8,7 +8,7 @@ on:
|
|||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
cancel-in-progress: ${{ github.event_name != 'push' }}
|
||||
|
||||
jobs:
|
||||
checks:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue