Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Dec 28, 2023
1 parent 7c8d4e5 commit 35b611a
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/scripts/python/handle_new_contributor.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 (
Expand Down

0 comments on commit 35b611a

Please sign in to comment.