Use concurrency (#3610)

Use concurrency in GitHub workflows to cancel in-progress or pending
runs for the same ref.
This commit is contained in:
Florian Albrechtskirchinger
2022-07-28 21:51:32 +02:00
committed by GitHub
parent 5520761433
commit 298e4a9449
4 changed files with 16 additions and 0 deletions

View File

@@ -11,6 +11,10 @@ on:
- cron: '0 19 * * 1'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
CodeQL-Build: