From 8b7d5b6e4251eb14fe586bf27ad4d874910782a6 Mon Sep 17 00:00:00 2001 From: Blaize M Kaye Date: Fri, 23 Feb 2024 07:45:02 +1300 Subject: [PATCH] Removes test data --- action.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/action.py b/action.py index 45c6243..a88e3c6 100644 --- a/action.py +++ b/action.py @@ -13,8 +13,8 @@ def driver(): # Read environment variables mode = os.environ.get("INPUT_ACTION", "default") # Get project and environment names from environment variables - project_name = os.environ.get("INPUT_LAGOON_PROJECT", "test6-drupal-example-simple") - environment_name = os.environ.get("INPUT_LAGOON_ENVIRONMENT", "test1copy") + project_name = os.environ.get("INPUT_LAGOON_PROJECT", "") + environment_name = os.environ.get("INPUT_LAGOON_ENVIRONMENT", "") wait_till_deployed = os.environ.get("INPUT_WAIT_FOR_DEPLOYMENT", "true").lower().strip() == "true" # Perform actions based on the value of the 'mode' variable