Browse Source

Set CI concurrency at the job level (#23689)

closed-social-glitch-2
Nick Schonning 1 year ago
committed by GitHub
parent
commit
9ab2a775c9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      .github/workflows/build-image.yml
  2. +1
    -1
      .github/workflows/rebase-needed.yml

+ 1
- 1
.github/workflows/build-image.yml View File

@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:

+ 1
- 1
.github/workflows/rebase-needed.yml View File

@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
steps:

Loading…
Cancel
Save