Skip to content

Commit

Permalink
ci: don't cancel previous workflows on master
Browse files Browse the repository at this point in the history
  • Loading branch information
iisakkirotko committed Mar 11, 2024
1 parent be4ee6a commit 8b80650
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codequality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: ${{ !(github.ref == 'refs/heads/master') }}

jobs:
code-quality:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/installation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: ${{ !(github.ref == 'refs/heads/master') }}

env:
SOLARA_TELEMETRY_SERVER_USER_ID: "install-test"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: ${{ !(github.ref == 'refs/heads/master') }}

env:
SOLARA_TELEMETRY_SERVER_USER_ID: "install-test"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_vue3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: ${{ !(github.ref == 'refs/heads/master') }}

env:
SOLARA_TELEMETRY_SERVER_USER_ID: "install-test"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/javascript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: ${{ !(github.ref == 'refs/heads/master') }}

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: ${{ !(github.ref == 'refs/heads/master') }}

env:
SOLARA_TELEMETRY_SERVER_USER_ID: "install-test"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/webdeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ defaults:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
cancel-in-progress: ${{ !(github.ref == 'refs/heads/master') }}

jobs:
update-ssg:
Expand Down

0 comments on commit 8b80650

Please sign in to comment.