Skip to content

Commit a39a08f

Browse files
chore: add issue templates
1 parent f48e9df commit a39a08f

1 file changed

Lines changed: 45 additions & 0 deletions

File tree

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
name: 🐛 Bug report
2+
description: Report something that's broken
3+
labels: ["bug", "needs-triage"]
4+
body:
5+
- type: textarea
6+
id: what-happened
7+
attributes:
8+
label: What happened?
9+
description: A clear description of the bug.
10+
placeholder: "When I called /health, ..."
11+
validations:
12+
required: true
13+
- type: textarea
14+
id: reproduce
15+
attributes:
16+
label: Steps to reproduce
17+
description: Minimal reproducible example.
18+
placeholder: |
19+
1. Clone the repo
20+
2. Run `uvicorn app.main:app`
21+
3. `curl http://localhost:8000/health`
22+
4. See error...
23+
validations:
24+
required: true
25+
- type: textarea
26+
id: expected
27+
attributes:
28+
label: Expected behavior
29+
placeholder: "I expected..."
30+
validations:
31+
required: true
32+
- type: input
33+
id: python-version
34+
attributes:
35+
label: Python version
36+
placeholder: "3.12.1"
37+
validations:
38+
required: true
39+
- type: input
40+
id: os
41+
attributes:
42+
label: OS
43+
placeholder: "Ubuntu 24.04 / macOS 14 / Windows 11"
44+
validations:
45+
required: true

0 commit comments

Comments
 (0)