diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index fa44604bf7..19d01a2f05 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -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: diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3fadeb9eee..7d48ff01fe 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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