From: Myra Date: Wed, 11 Sep 2024 22:15:06 +0000 (+0200) Subject: Make the pr link more visible in the changelog bot (#32047) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=0df531970b80f073590efb5bc9b5fe79cacbe77e;p=space-station-14.git Make the pr link more visible in the changelog bot (#32047) --- diff --git a/Tools/actions_changelogs_since_last_run.py b/Tools/actions_changelogs_since_last_run.py index 0cb27ae741..89eca69b33 100755 --- a/Tools/actions_changelogs_since_last_run.py +++ b/Tools/actions_changelogs_since_last_run.py @@ -146,7 +146,7 @@ def send_to_discord(entries: Iterable[ChangelogEntry]) -> None: message = change['message'] url = entry.get("url") if url and url.strip(): - group_content.write(f"{emoji} [-]({url}) {message}\n") + group_content.write(f"{emoji} - {message} [PR]({url}) \n") else: group_content.write(f"{emoji} - {message}\n")