Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
Vanessa 2022-11-17 15:52:59 +08:00
commit c98cb3299f
4 changed files with 6 additions and 5 deletions

File diff suppressed because one or more lines are too long

View file

@ -6,7 +6,7 @@ require (
github.com/88250/clipboard v0.1.5
github.com/88250/css v0.1.2
github.com/88250/gulu v1.2.3-0.20221117052724-cd06804db798
github.com/88250/lute v1.7.5-0.20221112140857-4ed13af8b26c
github.com/88250/lute v1.7.5-0.20221117073528-884d0a9e7ca5
github.com/88250/pdfcpu v0.3.13
github.com/88250/vitess-sqlparser v0.0.0-20210205111146-56a2ded2aba1
github.com/ConradIrwin/font v0.0.0-20210318200717-ce8d41cc0732

View file

@ -17,8 +17,8 @@ github.com/88250/go-sqlite3 v1.14.13-0.20220714142610-fbbda1ee84f5 h1:8HdZozCsXS
github.com/88250/go-sqlite3 v1.14.13-0.20220714142610-fbbda1ee84f5/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU=
github.com/88250/gulu v1.2.3-0.20221117052724-cd06804db798 h1:sR/s/Y9wyl79ZRCUERwLPo9zqaB3KhNRodCMTJ4ozEU=
github.com/88250/gulu v1.2.3-0.20221117052724-cd06804db798/go.mod h1:I1qBzsksFL2ciGSuqDE7R3XW4BUMrfDgOvSXEk7FsAI=
github.com/88250/lute v1.7.5-0.20221112140857-4ed13af8b26c h1:X3GtZkdIT4cINW4pWios67vxaVa2Xix24zK6rCR1xG8=
github.com/88250/lute v1.7.5-0.20221112140857-4ed13af8b26c/go.mod h1:cEoBGi0zArPqAsp0MdG9SKinvH/xxZZWXU7sRx8vHSA=
github.com/88250/lute v1.7.5-0.20221117073528-884d0a9e7ca5 h1:EKPon2nUi+gIVXS+vBoLKclssEkZw/9UDrvm70uevWE=
github.com/88250/lute v1.7.5-0.20221117073528-884d0a9e7ca5/go.mod h1:cEoBGi0zArPqAsp0MdG9SKinvH/xxZZWXU7sRx8vHSA=
github.com/88250/pdfcpu v0.3.13 h1:touMWMZkCGalMIbEg9bxYp7rETM+zwb9hXjwhqi4I7Q=
github.com/88250/pdfcpu v0.3.13/go.mod h1:S5YT38L/GCjVjmB4PB84PymA1qfopjEhfhTNQilLpv4=
github.com/88250/vitess-sqlparser v0.0.0-20210205111146-56a2ded2aba1 h1:48T899JQDwyyRu9yXHePYlPdHtpJfrJEUGBMH3SMBWY=

View file

@ -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)