From 36b5962a7331805cd41d2fe67638bb3322389c4b Mon Sep 17 00:00:00 2001 From: miles-kt-inkeep Date: Wed, 14 Feb 2024 20:05:29 -0500 Subject: [PATCH] test1 --- entrypoint.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/entrypoint.py b/entrypoint.py index a66e6e6..44fa9d5 100644 --- a/entrypoint.py +++ b/entrypoint.py @@ -60,6 +60,8 @@ def main(): source_id = get_actions_input("source-id") print(source_id) + print("Direct ENV:", os.getenv("INPUT_SOURCE_ID")) + print("Direct ENV 2:", os.getenv("INPUT_SOURCE-ID")) api_key = get_actions_input("api-key") # Prepare the JSON payload @@ -82,6 +84,7 @@ def main(): ) mutation_result = mutation_response.json() + print(mutation_result) query_response = requests.post( graphql_endpoint, headers=headers, json=query_payload