Skip to content

Commit

Permalink
Update generate_releasenotes.py
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaae authored Jan 24, 2022
1 parent f1268ad commit 5db1c78
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/generate_releasenotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,12 @@ def get_integration_commits(github, skip=True):
continue
if "\n" in msg:
msg = msg.split("\n")[0]
if commit.author:
ath = commit.author
else:
ath = "Unknown"
changes += CHANGE.format(
line=msg, link=commit.html_url, author=commit.author.login
line=msg, link=commit.html_url, author=ath
)

return changes
Expand Down

0 comments on commit 5db1c78

Please sign in to comment.