From 5040dbea23ab6b94804aa4e4e516b6c2b3346a5c Mon Sep 17 00:00:00 2001 From: Jonas Jaszkowic Date: Tue, 17 Oct 2023 14:59:43 +0200 Subject: [PATCH] chore: Add SKIP_MAPBOX input variable to action --- action.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/action.yml b/action.yml index 1b385b26..829efabc 100644 --- a/action.yml +++ b/action.yml @@ -46,6 +46,10 @@ inputs: description: "" required: true default: "INFO" + SKIP_MAPBOX: + description: "Set to 'True' to skip the Mapbox Tileset generation (for testing pipelines)" + required: true + default: "False" runs: using: "docker" image: "harvester/Dockerfile" @@ -64,3 +68,4 @@ runs: MAPBOXLAYERNAME: ${{ inputs.MAPBOXLAYERNAME }} LOGGING: ${{ inputs.LOGGING }} DATABASE_URL: ${{ inputs.DATABASE_URL }} + SKIP_MAPBOX: ${{ inputs.SKIP_MAPBOX }}