From 9d323857ad82140148b6309b1722560be79c7779 Mon Sep 17 00:00:00 2001 From: lodewiges <131907615+lodewiges@users.noreply.github.com> Date: Tue, 29 Oct 2024 12:42:43 +0100 Subject: [PATCH] change n/y to boolean --- .github/workflows/continuous-delivery.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-delivery.yml b/.github/workflows/continuous-delivery.yml index aedc0ec9b..e3d7afc09 100644 --- a/.github/workflows/continuous-delivery.yml +++ b/.github/workflows/continuous-delivery.yml @@ -4,9 +4,10 @@ on: workflow_dispatch: inputs: merge: - description: Merge staging into master first? (y/N) + type: boolean + description: Merge staging into master first? required: false - default: 'n' + default: false ignore_metadata_diff: type: boolean description: Perform all jobs, regardless of whether there are actual changes?