Cancel concurrent workflow runs in PRs.
parent
816a97ab47
commit
5a3e21788d
|
@ -18,6 +18,11 @@ on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '0 9 * * *'
|
- cron: '0 9 * * *'
|
||||||
|
|
||||||
|
concurrency:
|
||||||
|
# Make sure there is at most one active run per PR, but do not cancel any non-PR runs
|
||||||
|
group: ${{ github.workflow }}-${{ (github.head_ref && github.event.number) || github.run_id }}
|
||||||
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
sanity:
|
sanity:
|
||||||
name: EOL Sanity (Ⓐ${{ matrix.ansible }})
|
name: EOL Sanity (Ⓐ${{ matrix.ansible }})
|
||||||
|
|
Loading…
Reference in New Issue