From 35b611a4e5abe36fb78f48bec72c1cadfef78db3 Mon Sep 17 00:00:00 2001 From: SKairinos Date: Thu, 28 Dec 2023 18:17:09 +0000 Subject: [PATCH] test --- .../scripts/python/handle_new_contributor.py | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/scripts/python/handle_new_contributor.py b/.github/scripts/python/handle_new_contributor.py index 8ba9590b..4f3b78d8 100644 --- a/.github/scripts/python/handle_new_contributor.py +++ b/.github/scripts/python/handle_new_contributor.py @@ -28,18 +28,18 @@ def get_starter_info(): user's password). """ - pr_id = int(os.getenv("PR_ID", "-1")) - assert pr_id != -1, "Pull request ID environment variable not set." - - commit_id = subprocess.run( - [ - "git", - "rev-parse", - "HEAD", - ], - check=True, - stdout=subprocess.PIPE, - ).stdout.decode("utf-8") + # pr_id = int(os.getenv("PR_ID", "-1")) + # assert pr_id != -1, "Pull request ID environment variable not set." + + # commit_id = subprocess.run( + # [ + # "git", + # "rev-parse", + # "HEAD", + # ], + # check=True, + # stdout=subprocess.PIPE, + # ).stdout.decode("utf-8") dd_api_user_email_address = os.getenv("DOTDIGITAL_API_USER_EMAIL_ADDRESS") assert (