Add worflow name to concurrency group (#3897)

This commit is contained in:
Jon Koops 2022-11-30 14:26:03 +01:00 committed by GitHub
parent d06669df27
commit 8fbc5d545c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -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:

View file

@ -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