From b1b782076969befcc6e23538fe276764fac93784 Mon Sep 17 00:00:00 2001 From: Andreas Braun Date: Mon, 24 Jul 2023 14:40:02 +0200 Subject: [PATCH] Allow skipping legacy shell install when running as GitHub Action --- action.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/action.yml b/action.yml index f7eee185..d902ff25 100644 --- a/action.yml +++ b/action.yml @@ -19,6 +19,9 @@ inputs: require-api-version: description: "Whether to start the server with requireApiVersion enabled (defaults to false)" required: false + skip-legacy-shell: + description: "Whether to skip installing the legacy shell for 6.0+ servers" + required: false outputs: cluster-uri: description: "URI of the cluster" @@ -48,6 +51,7 @@ runs: SSL: ${{ inputs.ssl }} STORAGE_ENGINE: ${{ inputs.storage-engine }} REQUIRE_API_VERSION: ${{ inputs.require-api-version }} + SKIP_LEGACY_SHELL: ${{ inputs.skip-legacy-shell }} shell: sh - id: "get-cluster-uri" name: "Expose Cluster URI"