File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4,7 +4,13 @@ name: PR Benchmarks
44
55concurrency :
66 # The group causes runs to queue instead of running in parallel.
7- group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
7+ # Use a unique group for non-benchmark label events so they don't interfere with in-progress benchmark runs.
8+ group : >-
9+ ${{ github.workflow }}-${{
10+ github.event.label.name == 'action/benchmark'
11+ && github.head_ref
12+ || github.run_id
13+ }}
814 # Don't cancel benchmarks that are already running, instead just queue them up.
915 cancel-in-progress : false
1016
Original file line number Diff line number Diff line change 33name : PR SQL Benchmarks
44
55concurrency :
6- group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
6+ # Use a unique group for non-benchmark label events so they don't interfere with in-progress benchmark runs.
7+ group : >-
8+ ${{ github.workflow }}-${{
9+ github.event.label.name == 'action/benchmark-sql'
10+ && github.head_ref
11+ || github.run_id
12+ }}
713 cancel-in-progress : true
814
915on :
You can’t perform that action at this time.
0 commit comments