Update GitHub workflow concurrency groups to prevent cancelling workflows

This commit is contained in:
Dan Paulat 2024-11-28 08:31:56 -06:00
parent dab88ebb98
commit a78d02617f
3 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@ on:
concurrency:
# Cancel in-progress jobs for the same pull request
group: ${{ github.head_ref || github.run_id }}
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:

View file

@ -8,7 +8,7 @@ on:
concurrency:
# Cancel in-progress jobs for the same pull request
group: ${{ github.head_ref || github.run_id }}
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:

View file

@ -7,7 +7,7 @@ on:
concurrency:
# Cancel in-progress jobs for the same pull request
group: ${{ github.head_ref || github.run_id }}
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs: