diff options
author | Nick Schonning <nschonni@gmail.com> | 2023-02-18 00:56:16 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-18 14:56:16 +0900 |
commit | 9ab2a775c9a832fe6320f95e5b405feb93f9eaf3 (patch) | |
tree | 7dc58a5c3d8507e6e36e8160e364a6ebb9776954 /.github/workflows | |
parent | 49b9ef0c1e5190990784b0515962945f10791203 (diff) |
Set CI concurrency at the job level (#23689)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build-image.yml | 2 | ||||
-rw-r--r-- | .github/workflows/rebase-needed.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index 9962bbde6..c567cd9c3 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -18,7 +18,7 @@ jobs: runs-on: ubuntu-latest concurrency: - group: ${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true steps: diff --git a/.github/workflows/rebase-needed.yml b/.github/workflows/rebase-needed.yml index 553f6c329..a5899e0f0 100644 --- a/.github/workflows/rebase-needed.yml +++ b/.github/workflows/rebase-needed.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest concurrency: - group: ${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true steps: |