|
| 1 | +name: 🐞 Bug Report |
| 2 | +description: Report a reproducible bug or unexpected behavior |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug", "needs-triage"] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for the report! Please provide enough details so we can reproduce and fix the issue quickly. |
| 10 | +
|
| 11 | + - type: input |
| 12 | + id: affected_version |
| 13 | + attributes: |
| 14 | + label: Affected Version |
| 15 | + description: Which version(s) are affected? |
| 16 | + placeholder: e.g. 0.5.0 (or main @ <commit>) |
| 17 | + validations: |
| 18 | + required: true |
| 19 | + |
| 20 | + - type: dropdown |
| 21 | + id: affected_module |
| 22 | + attributes: |
| 23 | + label: Affected Module |
| 24 | + description: Which module is affected? |
| 25 | + options: |
| 26 | + - api |
| 27 | + - core |
| 28 | + - codec |
| 29 | + - testkit |
| 30 | + - cli |
| 31 | + - schema-tools |
| 32 | + - spring-boot-starter |
| 33 | + - other / unknown |
| 34 | + validations: |
| 35 | + required: true |
| 36 | + |
| 37 | + - type: textarea |
| 38 | + id: summary |
| 39 | + attributes: |
| 40 | + label: Summary |
| 41 | + description: Short summary of what is wrong. |
| 42 | + placeholder: One or two sentences. |
| 43 | + validations: |
| 44 | + required: true |
| 45 | + |
| 46 | + - type: textarea |
| 47 | + id: expected |
| 48 | + attributes: |
| 49 | + label: Expected Behavior |
| 50 | + description: What did you expect to happen? |
| 51 | + validations: |
| 52 | + required: true |
| 53 | + |
| 54 | + - type: textarea |
| 55 | + id: actual |
| 56 | + attributes: |
| 57 | + label: Actual Behavior |
| 58 | + description: What happened instead? |
| 59 | + validations: |
| 60 | + required: true |
| 61 | + |
| 62 | + - type: textarea |
| 63 | + id: repro_steps |
| 64 | + attributes: |
| 65 | + label: Steps to Reproduce |
| 66 | + description: Provide a minimal, complete, reproducible set of steps. |
| 67 | + placeholder: | |
| 68 | + 1. ... |
| 69 | + 2. ... |
| 70 | + 3. ... |
| 71 | + validations: |
| 72 | + required: true |
| 73 | + |
| 74 | + - type: textarea |
| 75 | + id: minimal_example |
| 76 | + attributes: |
| 77 | + label: Minimal Reproducible Example (code/config) |
| 78 | + description: If possible, paste a small snippet that reproduces the issue. |
| 79 | + render: java |
| 80 | + validations: |
| 81 | + required: false |
| 82 | + |
| 83 | + - type: textarea |
| 84 | + id: stacktrace |
| 85 | + attributes: |
| 86 | + label: Logs / Stacktrace |
| 87 | + description: Paste relevant logs or the full stacktrace. |
| 88 | + render: shell |
| 89 | + validations: |
| 90 | + required: false |
| 91 | + |
| 92 | + - type: dropdown |
| 93 | + id: regression |
| 94 | + attributes: |
| 95 | + label: Regression? |
| 96 | + description: Did this work in a previous version? |
| 97 | + options: |
| 98 | + - "unknown" |
| 99 | + - "yes" |
| 100 | + - "no" |
| 101 | + validations: |
| 102 | + required: true |
| 103 | + |
| 104 | + - type: input |
| 105 | + id: last_working_version |
| 106 | + attributes: |
| 107 | + label: Last Known Working Version (if regression) |
| 108 | + placeholder: e.g. 0.4.0 |
| 109 | + validations: |
| 110 | + required: false |
| 111 | + |
| 112 | + - type: input |
| 113 | + id: environment |
| 114 | + attributes: |
| 115 | + label: Environment |
| 116 | + description: Java version, OS, build tool, etc. |
| 117 | + placeholder: e.g. Java 21, Maven 3.9.x, Windows 11 / Ubuntu 24.04 |
| 118 | + validations: |
| 119 | + required: false |
| 120 | + |
| 121 | + - type: checkboxes |
| 122 | + id: checklist |
| 123 | + attributes: |
| 124 | + label: Checklist |
| 125 | + options: |
| 126 | + - label: I searched existing issues to avoid duplicates. |
| 127 | + required: true |
| 128 | + - label: I can reproduce this reliably. |
| 129 | + required: false |
| 130 | + - label: I included a minimal example or clear repro steps. |
| 131 | + required: false |
0 commit comments