Skip to content

Commit

Permalink
Convert tasklist to checkbox list
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson committed Sep 25, 2024
1 parent a2e7fe6 commit c1c3439
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions scripts/gen_release_checklist_issue.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,9 @@
pages = data["pages"]
if not pages:
continue
print("```[tasklist]")
print(f"### {data['name']}")
print(f"### {data['name']}\n")
for page in sorted(pages, key=lambda x: x["url"]):
print(f"- [ ] {page['url']}")
print("```\n")
print()

print(f"_Issue text generated by {script_name.parent.name}/{script_name.name}._")

0 comments on commit c1c3439

Please sign in to comment.