Skip to content

Commit

Permalink
Do not display github-actions[bot] in RC testing issue content (apach…
Browse files Browse the repository at this point in the history
  • Loading branch information
amoghrajesh authored and ellisms committed Dec 13, 2024
1 parent a63fdd7 commit c17727f
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2415,6 +2415,7 @@ def print_issue_content(
all_users: set[str] = set()
for user_list in users.values():
all_users.update(user_list)
all_users = {user for user in all_users if user != "github-actions[bot]"}
all_user_logins = " ".join(f"@{u}" for u in all_users)
content = render_template(
template_name="ISSUE",
Expand Down

0 comments on commit c17727f

Please sign in to comment.