Skip to content

Commit

Permalink
Change to multi line string in the output
Browse files Browse the repository at this point in the history
  • Loading branch information
beyhan committed Dec 19, 2023
1 parent 019e655 commit 8269e13
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion org/org_user_management.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import datetime
import yaml
import os
import uuid

from org_management import OrgGenerator

Expand Down Expand Up @@ -160,7 +161,10 @@ def _get_bool_env_var(env_var_name, default):
elif users_to_delete:
userHandler.delete_inactive_contributors(users_to_delete)
with open(os.environ["GITHUB_OUTPUT"], "a") as env:
print(f"inactive_users_pr_description={inactive_users_msg}", file=env)
delimiter = uuid.uuid1()
print(f"inactive_users_pr_description<<{delimiter}", file=env)
print(inactive_users_msg, file=env)
print(delimiter, file=env)

inactive_users_with_role = community_members_with_role.intersection(inactive_users)
print(f"Inactive users with role length is {len(inactive_users_with_role)} and users are {inactive_users_with_role}")

0 comments on commit 8269e13

Please sign in to comment.