]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Revert "Include URL in Discord bot changelog to link to the Github PR page" (#22498)
authorPieter-Jan Briers <pieterjan.briers+git@gmail.com>
Thu, 14 Dec 2023 18:25:33 +0000 (19:25 +0100)
committerGitHub <noreply@github.com>
Thu, 14 Dec 2023 18:25:33 +0000 (19:25 +0100)
Tools/actions_changelogs_since_last_run.py
Tools/update_changelog.py

index 3591e41506bf821cfa0ee416146fd4e2605a1a04..0c46cd22ec8ce47e1159724046ad375ca4701492 100755 (executable)
@@ -114,9 +114,8 @@ def send_to_discord(entries: Iterable[ChangelogEntry]) -> None:
         for entry in group:
             for change in entry["changes"]:
                 emoji = TYPES_TO_EMOJI.get(change['type'], "❓")
-                url = entry["url"]
                 message = change['message']
-                content.write(f"[{emoji}]({url}) {message}\n")
+                content.write(f"{emoji} {message}\n")
 
     body = {
         "content": content.getvalue(),
@@ -131,4 +130,4 @@ def send_to_discord(entries: Iterable[ChangelogEntry]) -> None:
     requests.post(DISCORD_WEBHOOK_URL, json=body)
 
 
-main()
+main()
\ No newline at end of file
index a42479908b8e4d25b8d579048c4898baa7f6d679..b4e661d80d7455ecc3aab1ce73afd5a87c7a559b 100755 (executable)
@@ -61,7 +61,6 @@ def main():
             "time", datetime.datetime.now(datetime.timezone.utc).isoformat()
         )
         changes = partyaml["changes"]
-        url = partyaml["url"]
 
         if not isinstance(changes, list):
             changes = [changes]
@@ -72,7 +71,7 @@ def main():
             new_id = max_id
 
             entries_list.append(
-                {"author": author, "time": time, "changes": changes, "id": new_id, "url": url}
+                {"author": author, "time": time, "changes": changes, "id": new_id}
             )
 
         os.remove(partpath)