Skip to content

Commit 073b691

Browse files
authored
Merge pull request #519 from TheHive-Project/issue-template-experiment
Experiment with issue templates
2 parents ba381e3 + d00280b commit 073b691

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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}}"

0 commit comments

Comments
 (0)