Skip to content

Commit

Permalink
Consider both commit authors and PR authors in status of testing issue
Browse files Browse the repository at this point in the history
  • Loading branch information
amoghrajesh committed Oct 19, 2024
1 parent 204d26f commit 49cef93
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3484,7 +3484,7 @@ def generate_issue_content(
for commit in commits:
author = commit.author
if author:
users.setdefault(pr_number, set()).add(author.login)
users[pr_number].add(author.login)
progress.console.print(f"Added commit author {author.login} for PR#{pr_number}")

except Exception as e:
Expand Down

0 comments on commit 49cef93

Please sign in to comment.