Skip to content

Commit

Permalink
Fix concurrency
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Apr 27, 2022
1 parent 1c16c36 commit 3bf2958
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/backward-compatibility.yml
Expand Up @@ -12,7 +12,7 @@ env:
COMPOSER_ROOT_VERSION: "1.6.x-dev"

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

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-tests.yml
Expand Up @@ -16,7 +16,7 @@ env:
COMPOSER_ROOT_VERSION: "1.6.x-dev"

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

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Expand Up @@ -12,7 +12,7 @@ env:
COMPOSER_ROOT_VERSION: "1.6.x-dev"

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

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static-analysis.yml
Expand Up @@ -16,7 +16,7 @@ env:
COMPOSER_ROOT_VERSION: "1.6.x-dev"

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

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Expand Up @@ -16,7 +16,7 @@ env:
COMPOSER_ROOT_VERSION: "1.6.x-dev"

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

jobs:
Expand Down

0 comments on commit 3bf2958

Please sign in to comment.