Update actions_changelogs_since_last_run.py

This commit is contained in:
Red
2025-06-09 14:43:33 +03:00
committed by GitHub
parent 50af3f1d23
commit 508aead876

View File

@@ -173,6 +173,7 @@ def changelog_entries_to_message_lines(entries: Iterable[ChangelogEntry]) -> lis
message_lines = []
for contributor_name, group in itertools.groupby(entries, lambda x: x["author"]):
message_lines.append("")
message_lines.append(f"`{contributor_name}` updated:\n")
for entry in group: