From 8abe9c8d5f85e1058df6a9acbbda8a952adac865 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A2=96=E9=80=B8?= <49649786+Zuoqiu-Yingyi@users.noreply.github.com> Date: Thu, 17 Nov 2022 15:51:54 +0800 Subject: [PATCH] :octocat: Update link address of CI/CD release changelogs (#6633) --- scripts/parse-changelog.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/parse-changelog.py b/scripts/parse-changelog.py index 0bad77e2a..db48695b1 100644 --- a/scripts/parse-changelog.py +++ b/scripts/parse-changelog.py @@ -35,8 +35,9 @@ def generate_msg_from_repo(repo_name, tag_name): milestone = find_milestone(repo, tag_name) for issue in repo.get_issues(state="closed", milestone=milestone): + # REF https://pygithub.readthedocs.io/en/latest/github_objects/Issue.html#github.Issue.Issue desc_mapping[get_issue_first_label(issue)].append( - {"title": issue.title, "url": issue.url} + {"title": issue.title, "url": issue.html_url} ) generate_msg(desc_mapping)