From c33ea9926c839f9e89fceed1579945ff6132d5d7 Mon Sep 17 00:00:00 2001 From: "Sherif A. Nada" Date: Fri, 30 Jun 2023 13:06:02 -0700 Subject: [PATCH] make publish_option required in publish connectors workflow (#27879) --- .github/workflows/publish_connectors.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_connectors.yml b/.github/workflows/publish_connectors.yml index 0241714f6f4..c1573d4cf2b 100644 --- a/.github/workflows/publish_connectors.yml +++ b/.github/workflows/publish_connectors.yml @@ -9,11 +9,12 @@ on: workflow_dispatch: inputs: connectors-options: - description: "Options to pass to the 'airbyte-ci connectors' command group" + description: "Options to pass to the 'airbyte-ci connectors' command group." default: "--name=source-pokeapi" publish-options: - description: "Options to pass to the 'airbyte-ci connectors publish' command" + description: "Options to pass to the 'airbyte-ci connectors publish' command. Use --pre-release or --main-release depending on whether you want to publish a dev image or not. " default: "--pre-release" + required: true jobs: publish_connectors: name: Publish connectors