CI: cancel other builds if others are building for the same commit too (this happens when a commit is tagged)
This commit is contained in:
parent
bf21f20d9e
commit
60fe40e509
1 changed files with 3 additions and 0 deletions
3
.github/workflows/CI.yml
vendored
3
.github/workflows/CI.yml
vendored
|
|
@ -5,6 +5,9 @@ on: [push, pull_request]
|
|||
jobs:
|
||||
CI:
|
||||
runs-on: ubuntu-latest
|
||||
concurrency:
|
||||
group: ${{ github.sha }}
|
||||
cancel-in-progress: true
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue