Эх сурвалжийг харах

fix(ci): unique concurrency group names across workflows

Lucas Nogueira 3 жил өмнө
parent
commit
146b588b2e

+ 1 - 1
.github/workflows/artifacts-updater.yml

@@ -22,7 +22,7 @@ env:
   CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency.
 
 concurrency:
-  group: ${{ github.ref }}
+  group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
 
 jobs:

+ 1 - 1
.github/workflows/audit.yml

@@ -16,7 +16,7 @@ on:
       - '**/yarn.lock'
 
 concurrency:
-  group: ${{ github.ref }}
+  group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
 
 jobs:

+ 1 - 1
.github/workflows/bench.yml

@@ -13,7 +13,7 @@ env:
   CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency.
 
 concurrency:
-  group: ${{ github.ref }}
+  group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
 
 jobs:

+ 1 - 1
.github/workflows/lint-fmt-cli.yml

@@ -20,7 +20,7 @@ env:
   CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency.
 
 concurrency:
-  group: ${{ github.ref }}
+  group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
 
 jobs:

+ 1 - 1
.github/workflows/lint-fmt-core.yml

@@ -21,7 +21,7 @@ env:
   CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency.
 
 concurrency:
-  group: ${{ github.ref }}
+  group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
 
 jobs:

+ 1 - 1
.github/workflows/lint-js.yml

@@ -12,7 +12,7 @@ on:
       - 'tooling/api/**'
 
 concurrency:
-  group: ${{ github.ref }}
+  group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
 
 jobs:

+ 1 - 1
.github/workflows/test-bundler.yml

@@ -20,7 +20,7 @@ env:
   CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency.
 
 concurrency:
-  group: ${{ github.ref }}
+  group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
 
 jobs:

+ 1 - 1
.github/workflows/test-cli.yml

@@ -20,7 +20,7 @@ env:
   CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency.
 
 concurrency:
-  group: ${{ github.ref }}
+  group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
 
 jobs:

+ 1 - 1
.github/workflows/test-core.yml

@@ -22,7 +22,7 @@ env:
   CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency.
 
 concurrency:
-  group: ${{ github.ref }}
+  group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
 
 jobs:

+ 1 - 1
.github/workflows/udeps.yml

@@ -18,7 +18,7 @@ env:
   CARGO_PROFILE_DEV_DEBUG: 0 # This would add unnecessary bloat to the target folder, decreasing cache efficiency.
 
 concurrency:
-  group: ${{ github.ref }}
+  group: ${{ github.workflow }}-${{ github.ref }}
   cancel-in-progress: true
 
 jobs: