about summary refs log tree commit diff
path: root/.github
diff options
context:
space:
mode:
authorNick Schonning <nschonni@gmail.com>2023-02-18 00:56:16 -0500
committerGitHub <noreply@github.com>2023-02-18 14:56:16 +0900
commit9ab2a775c9a832fe6320f95e5b405feb93f9eaf3 (patch)
tree7dc58a5c3d8507e6e36e8160e364a6ebb9776954 /.github
parent49b9ef0c1e5190990784b0515962945f10791203 (diff)
Set CI concurrency at the job level (#23689)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build-image.yml2
-rw-r--r--.github/workflows/rebase-needed.yml2
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: