From 1438632ddeebdf2362a04d1aa92d7812edadd473 Mon Sep 17 00:00:00 2001 From: Yamila Moreno Date: Wed, 27 Aug 2025 11:19:35 +0200 Subject: [PATCH] :paperclip: Fix CI inputs --- .github/workflows/build-bundle.yml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-bundle.yml b/.github/workflows/build-bundle.yml index e5c5b4a9cc..0e379c0289 100644 --- a/.github/workflows/build-bundle.yml +++ b/.github/workflows/build-bundle.yml @@ -10,17 +10,13 @@ on: required: true default: 'develop' build_wasm: - type: choice - options: - - yes - - no + description: 'Valid values: yes, no' + type: string required: false default: 'yes' build_storybook: - type: choice - options: - - yes - - no + description: 'Valid values: yes, no' + type: string required: false default: 'yes' workflow_call: @@ -31,10 +27,12 @@ on: required: true default: 'develop' build_wasm: + description: 'Valid values: yes, no' type: string required: false default: 'yes' build_storybook: + description: 'Valid values: yes, no' type: string required: false default: 'yes'