Update actions_changelogs_since_last_run.py

This commit is contained in:
Red
2025-06-09 14:49:07 +03:00
committed by GitHub
parent 508aead876
commit 14efec2f47

View File

@@ -173,7 +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("\n")
message_lines.append(f"`{contributor_name}` updated:\n")
for entry in group: