1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47name: Bug report
description: Something's broken or behaving unexpectedly
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to report a bug. Please fill out the fields below so we can reproduce and fix it.
- type: textarea
id: description
attributes:
label: What went wrong?
description: A clear description of the bug.
validations:
required: true
- type: textarea
id: reproduction
attributes:
label: How to reproduce
description: Minimal steps. If possible, link a sample PDF or share a job ID.
placeholder: |
1. Submit PDF via `POST /api/v1/documents/submit`
2. Poll `/api/v1/documents/{job_id}`
3. Expected X, got Y
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant logs
description: Output from `make logs-api` or the failing test.
render: shell
- type: input
id: version
attributes:
label: Version or commit SHA
placeholder: "v0.1.0-beta.4 or git SHA"
validations:
required: true
- type: input
id: environment
attributes:
label: Environment
description: "Local dev (`make dev`), Docker, bare metal, production deployment?"
validations:
required: true