|
| 1 | +name: Bug report |
| 2 | +description: Something is broken, incorrect, or lost data. |
| 3 | +title: "<one-line summary of what is broken>" |
| 4 | +labels: ["type:bug", "status:needs-triage"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + A good bug report is **reproducible** and pins **exactly when it happened**. |
| 10 | + Fill every required field — an issue we cannot reproduce or place in a build cannot be fixed. |
| 11 | +
|
| 12 | + **Security vulnerability?** Do not file it here — use this repo's private |
| 13 | + security advisory (Security tab → Report a vulnerability). |
| 14 | +
|
| 15 | + - type: input |
| 16 | + id: version |
| 17 | + attributes: |
| 18 | + label: Version / build tested against |
| 19 | + description: A released tag, or `main @ <short-sha>` for a source build. Never "latest". |
| 20 | + placeholder: "v0.3.0 (or main @ 8e84501a)" |
| 21 | + validations: |
| 22 | + required: true |
| 23 | + |
| 24 | + - type: textarea |
| 25 | + id: summary |
| 26 | + attributes: |
| 27 | + label: Summary |
| 28 | + description: One paragraph — what is wrong, and why it matters. |
| 29 | + validations: |
| 30 | + required: true |
| 31 | + |
| 32 | + - type: textarea |
| 33 | + id: repro |
| 34 | + attributes: |
| 35 | + label: Steps to reproduce |
| 36 | + description: Exact, minimal, copy-pasteable steps from a clean state. Annotate what each step returned. The single most important field. |
| 37 | + validations: |
| 38 | + required: true |
| 39 | + |
| 40 | + - type: textarea |
| 41 | + id: expected |
| 42 | + attributes: |
| 43 | + label: Expected behavior |
| 44 | + validations: |
| 45 | + required: true |
| 46 | + |
| 47 | + - type: textarea |
| 48 | + id: actual |
| 49 | + attributes: |
| 50 | + label: Actual behavior |
| 51 | + validations: |
| 52 | + required: true |
| 53 | + |
| 54 | + - type: markdown |
| 55 | + attributes: |
| 56 | + value: | |
| 57 | + --- |
| 58 | + ### Severity — answer the facts, then pick the level |
| 59 | +
|
| 60 | + Severity is a **technical** measure of impact — **not** priority (urgency), which the |
| 61 | + maintainers set at triage. Answer honestly; the answers determine the level. |
| 62 | +
|
| 63 | + - type: checkboxes |
| 64 | + id: severity-facts |
| 65 | + attributes: |
| 66 | + label: What actually happened? (check all that are true) |
| 67 | + options: |
| 68 | + - label: "Acknowledged/committed data was lost, corrupted, or silently wrong" |
| 69 | + - label: "The process crashed, hung, or failed to start" |
| 70 | + - label: "A security or isolation boundary was crossed" |
| 71 | + - label: "Core functionality is broken with no acceptable workaround" |
| 72 | + - label: "A workaround exists" |
| 73 | + |
| 74 | + - type: dropdown |
| 75 | + id: severity |
| 76 | + attributes: |
| 77 | + label: Proposed severity |
| 78 | + description: > |
| 79 | + SEV-1: data loss / corruption / security / crash, no workaround. |
| 80 | + SEV-2: major functionality broken, no acceptable workaround. |
| 81 | + SEV-3: feature wrong but operational and a workaround exists. |
| 82 | + SEV-4: minimal / cosmetic. Maintainers confirm or adjust at triage. |
| 83 | + options: |
| 84 | + - "SEV-1 — Critical: data loss, corruption, security, or crash; no workaround" |
| 85 | + - "SEV-2 — High: major functionality broken; no acceptable workaround" |
| 86 | + - "SEV-3 — Medium: feature wrong, but operational and a workaround exists" |
| 87 | + - "SEV-4 — Low: minimal / cosmetic" |
| 88 | + validations: |
| 89 | + required: true |
| 90 | + |
| 91 | + - type: dropdown |
| 92 | + id: reproducibility |
| 93 | + attributes: |
| 94 | + label: Reproducibility |
| 95 | + options: |
| 96 | + - "Always — every attempt" |
| 97 | + - "Intermittent — some attempts" |
| 98 | + - "Seen once — could not reproduce again" |
| 99 | + validations: |
| 100 | + required: true |
| 101 | + |
| 102 | + - type: input |
| 103 | + id: regression |
| 104 | + attributes: |
| 105 | + label: Last known-good version / commit (if a regression) |
| 106 | + description: The tag or short SHA where it last worked. Leave blank if unknown or never worked. |
| 107 | + validations: |
| 108 | + required: false |
| 109 | + |
| 110 | + - type: textarea |
| 111 | + id: environment |
| 112 | + attributes: |
| 113 | + label: Environment & logs |
| 114 | + description: OS + arch, notable flags/config, and any relevant log lines or stack traces. |
| 115 | + validations: |
| 116 | + required: false |
| 117 | + |
| 118 | + - type: checkboxes |
| 119 | + id: checks |
| 120 | + attributes: |
| 121 | + label: Before submitting |
| 122 | + options: |
| 123 | + - label: I searched existing issues and this is not a duplicate. |
| 124 | + required: true |
| 125 | + - label: I reproduced this on a released tag or a current `main` build. |
| 126 | + required: true |
| 127 | + - label: This is not a security vulnerability (those go to a private advisory). |
| 128 | + required: true |
0 commit comments