Skip to content

Commit 3bf2958

Browse files
committed
Fix concurrency
1 parent 1c16c36 commit 3bf2958

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/backward-compatibility.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
COMPOSER_ROOT_VERSION: "1.6.x-dev"
1313

1414
concurrency:
15-
group: ${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
15+
group: bc-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
1616
cancel-in-progress: true
1717

1818
jobs:

.github/workflows/e2e-tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
COMPOSER_ROOT_VERSION: "1.6.x-dev"
1717

1818
concurrency:
19-
group: ${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
19+
group: e2e-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
2020
cancel-in-progress: true
2121

2222
jobs:

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
COMPOSER_ROOT_VERSION: "1.6.x-dev"
1313

1414
concurrency:
15-
group: ${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
15+
group: lint-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
1616
cancel-in-progress: true
1717

1818
jobs:

.github/workflows/static-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
COMPOSER_ROOT_VERSION: "1.6.x-dev"
1717

1818
concurrency:
19-
group: ${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
19+
group: sa-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
2020
cancel-in-progress: true
2121

2222
jobs:

.github/workflows/tests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
COMPOSER_ROOT_VERSION: "1.6.x-dev"
1717

1818
concurrency:
19-
group: ${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
19+
group: tests-${{ github.head_ref || github.run_id }} # will be canceled on subsequent pushes in pull requests but not branches
2020
cancel-in-progress: true
2121

2222
jobs:

0 commit comments

Comments
 (0)