Skip to content

Commit

Permalink
test open
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Dec 29, 2023
1 parent d02b853 commit ea20409
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/scripts/python/handle_new_contributor.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,11 @@ def send_verify_new_contributor_email(
def main():
"""Runs the scripts."""

os.environ["HELLO"] = "WORLD!!!"
with open(os.environ["GITHUB_ENV"], "a", encoding="utf-8") as github_env:
github_env.write("HELLO=WORLD!!")

with open(os.environ["GITHUB_ENV"], "r", encoding="utf-8") as github_env:
print(github_env.read())

# pr_url, dd_api_user_auth = get_starter_info()

Expand Down

0 comments on commit ea20409

Please sign in to comment.