Add empty line between changelogs discord entries (#38170)

Update actions_changelogs_since_last_run.py
This commit is contained in:
Red
2025-07-18 14:20:20 +03:00
committed by GitHub
parent 4e99f05522
commit 08a1d57331

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