Add worflow name to concurrency group (#3897)
This commit is contained in:
parent
d06669df27
commit
8fbc5d545c
2 changed files with 2 additions and 2 deletions
2
.github/workflows/cypress.yml
vendored
2
.github/workflows/cypress.yml
vendored
|
@ -17,7 +17,7 @@ on:
|
|||
concurrency:
|
||||
# Only cancel jobs for new commits on PRs, and always do a complete run on other branches (e.g. `main`).
|
||||
# See: https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
|
||||
group: ${{ github.head_ref || github.run_id }}
|
||||
group: cypress-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
jobs:
|
||||
build-keycloak:
|
||||
|
|
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
@ -7,7 +7,7 @@ on:
|
|||
concurrency:
|
||||
# Only cancel jobs for new commits on PRs, and always do a complete run on other branches (e.g. `main`).
|
||||
# See: https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value
|
||||
group: ${{ github.head_ref || github.run_id }}
|
||||
group: main-${{ github.head_ref || github.run_id }}
|
||||
cancel-in-progress: true
|
||||
env:
|
||||
NODE_VERSION: 18
|
||||
|
|
Loading…
Reference in a new issue