|
| 1 | +name: "Bug report" |
| 2 | +description: Report something that is broken or crashes |
| 3 | +title: "[Bug]: " |
| 4 | +labels: ["bug", "needs-triage"] |
| 5 | +assignees: [] |
| 6 | +body: |
| 7 | + - type: markdown |
| 8 | + attributes: |
| 9 | + value: | |
| 10 | + Thanks for filing a bug. Please give a **minimal** repro when you can. |
| 11 | + - type: input |
| 12 | + id: summary |
| 13 | + attributes: |
| 14 | + label: Summary |
| 15 | + description: Short one-liner of the problem |
| 16 | + placeholder: "Crash when running dg transcribe on a large file" |
| 17 | + validations: |
| 18 | + required: true |
| 19 | + |
| 20 | + - type: textarea |
| 21 | + id: what_happened |
| 22 | + attributes: |
| 23 | + label: What happened? |
| 24 | + description: Tell us what you saw and what you expected instead |
| 25 | + placeholder: | |
| 26 | + Actual: |
| 27 | + - ... |
| 28 | +
|
| 29 | + Expected: |
| 30 | + - ... |
| 31 | + validations: |
| 32 | + required: true |
| 33 | + |
| 34 | + - type: textarea |
| 35 | + id: repro_steps |
| 36 | + attributes: |
| 37 | + label: Steps to reproduce |
| 38 | + description: Numbered steps; include inputs that matter (model, options, etc.) |
| 39 | + placeholder: | |
| 40 | + 1. Install deepctl 0.2.2 |
| 41 | + 2. Run dg transcribe large-file.wav |
| 42 | + 3. Observe error XYZ |
| 43 | + validations: |
| 44 | + required: true |
| 45 | + |
| 46 | + - type: textarea |
| 47 | + id: command |
| 48 | + attributes: |
| 49 | + label: Command and output |
| 50 | + description: Full command you ran and the output (redact secrets). |
| 51 | + render: text |
| 52 | + placeholder: | |
| 53 | + $ dg transcribe audio.wav --model nova-3 |
| 54 | + Error: ... |
| 55 | + validations: |
| 56 | + required: true |
| 57 | + |
| 58 | + - type: textarea |
| 59 | + id: logs |
| 60 | + attributes: |
| 61 | + label: Logs / traceback |
| 62 | + description: Full stack trace or error message (use --verbose for more detail) |
| 63 | + render: text |
| 64 | + validations: |
| 65 | + required: false |
| 66 | + |
| 67 | + - type: dropdown |
| 68 | + id: command_area |
| 69 | + attributes: |
| 70 | + label: Command area |
| 71 | + options: |
| 72 | + - transcribe |
| 73 | + - speak |
| 74 | + - listen |
| 75 | + - read |
| 76 | + - models / keys / members / billing |
| 77 | + - login / auth |
| 78 | + - mcp |
| 79 | + - debug |
| 80 | + - init |
| 81 | + - plugin |
| 82 | + - other |
| 83 | + validations: |
| 84 | + required: true |
| 85 | + |
| 86 | + - type: dropdown |
| 87 | + id: repro_rate |
| 88 | + attributes: |
| 89 | + label: How often? |
| 90 | + options: |
| 91 | + - Always |
| 92 | + - Often |
| 93 | + - Sometimes |
| 94 | + - Rarely |
| 95 | + - Only once |
| 96 | + validations: |
| 97 | + required: true |
| 98 | + |
| 99 | + - type: checkboxes |
| 100 | + id: regression |
| 101 | + attributes: |
| 102 | + label: Is this a regression? |
| 103 | + options: |
| 104 | + - label: "Yes, it worked in an earlier version" |
| 105 | + required: false |
| 106 | + |
| 107 | + - type: input |
| 108 | + id: worked_version |
| 109 | + attributes: |
| 110 | + label: Last working version (if known) |
| 111 | + placeholder: "0.2.1" |
| 112 | + validations: |
| 113 | + required: false |
| 114 | + |
| 115 | + - type: input |
| 116 | + id: cli_version |
| 117 | + attributes: |
| 118 | + label: CLI version |
| 119 | + description: Output of `dg --version` |
| 120 | + placeholder: "deepctl, version 0.2.2" |
| 121 | + validations: |
| 122 | + required: true |
| 123 | + |
| 124 | + - type: input |
| 125 | + id: python_version |
| 126 | + attributes: |
| 127 | + label: Python version |
| 128 | + placeholder: "3.11.9" |
| 129 | + validations: |
| 130 | + required: true |
| 131 | + |
| 132 | + - type: dropdown |
| 133 | + id: install_method |
| 134 | + attributes: |
| 135 | + label: Install method |
| 136 | + options: |
| 137 | + - curl installer (install.sh / install.ps1) |
| 138 | + - pip |
| 139 | + - pipx |
| 140 | + - uv tool |
| 141 | + - From source |
| 142 | + validations: |
| 143 | + required: false |
| 144 | + |
| 145 | + - type: dropdown |
| 146 | + id: os |
| 147 | + attributes: |
| 148 | + label: OS |
| 149 | + multiple: true |
| 150 | + options: |
| 151 | + - macOS (Intel) |
| 152 | + - macOS (Apple Silicon) |
| 153 | + - Linux (x86_64) |
| 154 | + - Linux (arm64) |
| 155 | + - Windows |
| 156 | + - Other |
| 157 | + validations: |
| 158 | + required: true |
| 159 | + |
| 160 | + - type: textarea |
| 161 | + id: extra_env |
| 162 | + attributes: |
| 163 | + label: Environment details |
| 164 | + description: Anything else? Docker, CI, proxies, corporate network, etc. |
| 165 | + render: text |
| 166 | + validations: |
| 167 | + required: false |
| 168 | + |
| 169 | + - type: input |
| 170 | + id: request_id |
| 171 | + attributes: |
| 172 | + label: Request ID (optional) |
| 173 | + description: From API error messages or response headers (`dg-request-id`) |
| 174 | + placeholder: "req_def456" |
| 175 | + validations: |
| 176 | + required: false |
| 177 | + |
| 178 | + - type: checkboxes |
| 179 | + id: conduct |
| 180 | + attributes: |
| 181 | + label: Code of Conduct |
| 182 | + options: |
| 183 | + - label: I agree to follow this project's Code of Conduct |
| 184 | + required: true |
0 commit comments