From 32ac72d22565f08150feda12666b5e366a2a939b Mon Sep 17 00:00:00 2001 From: timvisee Date: Mon, 14 Apr 2025 13:02:50 +0200 Subject: [PATCH] Use boolean input type in workflow input for toggling all feature flags --- .github/workflows/manual-benchmark.yaml | 3 ++- .github/workflows/manual-compare-versions-benchmark.yaml | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/manual-benchmark.yaml b/.github/workflows/manual-benchmark.yaml index efba761c..19be097a 100644 --- a/.github/workflows/manual-benchmark.yaml +++ b/.github/workflows/manual-benchmark.yaml @@ -14,7 +14,8 @@ on: description: "Engine config to benchmark" default: qdrant-continuous-benchmark feature_flags_all: - description: "Enable all feature flags (true|false, false by default)" + type: boolean + description: "Enable all feature flags (false by default)" default: false diff --git a/.github/workflows/manual-compare-versions-benchmark.yaml b/.github/workflows/manual-compare-versions-benchmark.yaml index fb1e486a..ea208c20 100644 --- a/.github/workflows/manual-compare-versions-benchmark.yaml +++ b/.github/workflows/manual-compare-versions-benchmark.yaml @@ -20,10 +20,12 @@ on: description: "Engine config to benchmark" default: qdrant-continuous-benchmark feature_flags_all_version_1: - description: "Enable all feature flags (true|false, false by default), version 1" + type: boolean + description: "Enable all feature flags (false by default), version 1" default: false feature_flags_all_version_2: - description: "Enable all feature flags (true|false, false by default), version 2" + type: boolean + description: "Enable all feature flags (false by default), version 2" default: false jobs: