Include URL in Discord bot changelog to link to the Github PR page (#22497)

This commit is contained in:
SlamBamActionman
2023-12-14 19:19:24 +01:00
committed by GitHub
parent 6ef2673c8a
commit bba158d9e7
2 changed files with 5 additions and 3 deletions

View File

@@ -61,6 +61,7 @@ def main():
"time", datetime.datetime.now(datetime.timezone.utc).isoformat()
)
changes = partyaml["changes"]
url = partyaml["url"]
if not isinstance(changes, list):
changes = [changes]
@@ -71,7 +72,7 @@ def main():
new_id = max_id
entries_list.append(
{"author": author, "time": time, "changes": changes, "id": new_id}
{"author": author, "time": time, "changes": changes, "id": new_id, "url": url}
)
os.remove(partpath)