File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " Release Issue"
2+ description : " Template for tracking a new project release"
3+ title : " Release {{version}}"
4+ labels :
5+ - " category:release"
6+ - " 2.0"
7+ body :
8+ - type : input
9+ id : version
10+ attributes :
11+ label : Release version
12+ description : Enter the release version (e.g., 2.0.3)
13+ placeholder : " 2.0.x"
14+ validations :
15+ required : true
16+
17+ - type : textarea
18+ id : todos
19+ attributes :
20+ label : Release tasks
21+ description : Checklist of things to do for this release
22+ value : |
23+ - [ ] bump version to {{version}}
24+ - [ ] generate release notes and paste them in `docs/release-notes.md`, then run the linkification script
25+ - [ ] tag `main` with {{version}} (`git checkout main && git pull && git tag {{version}} && git push origin tag {{version}}`)
26+ - [ ] publish release notes after PyPI upload
27+ validations :
28+ required : true
29+
30+ - type : input
31+ id : milestone
32+ attributes :
33+ label : Milestone
34+ description : The milestone associated with this release
35+ placeholder : " {{version}}"
You can’t perform that action at this time.
0 commit comments