Skip to content

Commit 4deb364

Browse files
committed
Add manual workflows to concurrency group
1 parent 73c3b6c commit 4deb364

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

.github/workflows/manual-benchmark.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,11 @@ on:
1717
description: "Enable all feature flags (false by default)"
1818
default: false
1919

20+
# Restrict to only running workflows of this group one at a time.
21+
# Any new runs will be queued until the previous run is complete.
22+
# Any existing pending runs will be cancelled and replaced with current run.
23+
concurrency:
24+
group: continuous-benchmark
2025

2126
jobs:
2227
runManualBenchmark:

.github/workflows/manual-compare-versions-benchmark.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,12 @@ on:
2828
description: "Enable all feature flags (false by default), version 2"
2929
default: false
3030

31+
# Restrict to only running this workflow one at a time.
32+
# Any new runs will be queued until the previous run is complete.
33+
# Any existing pending runs will be cancelled and replaced with current run.
34+
concurrency:
35+
group: continuous-benchmark
36+
3137
jobs:
3238
prepareImage1:
3339
name: Prepare image ${{ inputs.qdrant_version_1 }}

0 commit comments

Comments
 (0)