diff options
author | Pierrick Hymbert <pierrick.hymbert@gmail.com> | 2024-04-22 13:22:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-22 13:22:54 +0200 |
commit | c0956b09ba845a7cd787d5580d7c8b96e80f40f5 (patch) | |
tree | 4b6fcb4040b055c1c15668358b1405b418ed75e6 | |
parent | e9b4a1bf68c18beff4e33f23ea62c1245b296915 (diff) |
ci: fix job are cancelling each other (#6781)
-rw-r--r-- | .github/workflows/bench.yml | 2 | ||||
-rw-r--r-- | .github/workflows/server.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 75879663..d50af0b7 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -32,7 +32,7 @@ on: - cron: '04 2 * * *' concurrency: - group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }}-${{ github.event.inputs.sha }} + group: ${{ github.workflow }}-${{ github.ref || github.run_id }}-${{ github.event.inputs.sha }} cancel-in-progress: true jobs: diff --git a/.github/workflows/server.yml b/.github/workflows/server.yml index 521cc29a..3e68a3c8 100644 --- a/.github/workflows/server.yml +++ b/.github/workflows/server.yml @@ -23,7 +23,7 @@ on: - cron: '2 4 * * *' concurrency: - group: ${{ github.workflow }}-${{ github.head_ref && github.ref || github.run_id }} + group: ${{ github.workflow }}-${{ github.ref || github.run_id }} cancel-in-progress: true jobs: |