Update actions_changelogs_since_last_run.py

This commit is contained in:
Ed
2025-06-02 23:34:20 +03:00
parent 7df16c306d
commit 8d8ad5130b

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