diff options
author | Pierrick Hymbert <pierrick.hymbert@gmail.com> | 2024-04-04 16:59:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-04 16:59:04 +0200 |
commit | 8120efee1d9931b514aeb5a047209d576f23286c (patch) | |
tree | d698ed54c8148ea7b65fa227756cc8472b5cc08a | |
parent | a74401f0e5ebb15fa4d8b6619d1baa6ea9179123 (diff) |
ci: bench fix concurrency for workflow trigger dispatch with sha1 (#6478)
-rw-r--r-- | .github/workflows/bench.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/bench.yml b/.github/workflows/bench.yml index 47d8b6b5..98895a8b 100644 --- a/.github/workflows/bench.yml +++ b/.github/workflows/bench.yml @@ -32,7 +32,7 @@ on: - cron: '04 2 * * *' concurrency: - group: ${{ github.workflow }}-${{ github.ref }} + group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.sha }} cancel-in-progress: true jobs: |