|
| 1 | +name: Bug report |
| 2 | +description: A tool command misbehaves, errors, or produces unexpected output |
| 3 | +title: "[Bug] " |
| 4 | +labels: [bug] |
| 5 | +body: |
| 6 | + - type: markdown |
| 7 | + attributes: |
| 8 | + value: | |
| 9 | + Thanks for filing this. Please include the **exact command you ran** |
| 10 | + and the **complete error output** (or expected-vs-actual). Most |
| 11 | + bug reports stall on missing version info and unredacted command |
| 12 | + output, so the fields below ask for both up front. |
| 13 | +
|
| 14 | + - type: dropdown |
| 15 | + id: subcommand |
| 16 | + attributes: |
| 17 | + label: Which script / subcommand? |
| 18 | + description: If multiple are involved, pick the one that errored or produced wrong output. |
| 19 | + options: |
| 20 | + - snapshot.py |
| 21 | + - analyze_mods.py |
| 22 | + - changelog.py |
| 23 | + - fetch_version.py |
| 24 | + - deps_fetch.py |
| 25 | + - deps_diff.py |
| 26 | + - deps_audit.py |
| 27 | + - deps_changelog.py |
| 28 | + - Multiple / unsure |
| 29 | + - Other (describe in body) |
| 30 | + validations: |
| 31 | + required: true |
| 32 | + |
| 33 | + - type: input |
| 34 | + id: tool_version |
| 35 | + attributes: |
| 36 | + label: Tool version |
| 37 | + description: Either the GitHub tag (e.g. `v1.0.0`) or the commit SHA from `git rev-parse HEAD` if you're running an unreleased build. |
| 38 | + placeholder: e.g. v1.0.0 |
| 39 | + validations: |
| 40 | + required: true |
| 41 | + |
| 42 | + - type: input |
| 43 | + id: python_version |
| 44 | + attributes: |
| 45 | + label: Python version |
| 46 | + description: Output of `python --version`. |
| 47 | + placeholder: e.g. Python 3.11.9 |
| 48 | + validations: |
| 49 | + required: true |
| 50 | + |
| 51 | + - type: dropdown |
| 52 | + id: os |
| 53 | + attributes: |
| 54 | + label: Operating system |
| 55 | + options: |
| 56 | + - Windows 10 |
| 57 | + - Windows 11 |
| 58 | + - macOS |
| 59 | + - Linux |
| 60 | + - Other (describe in body) |
| 61 | + validations: |
| 62 | + required: true |
| 63 | + |
| 64 | + - type: input |
| 65 | + id: target_game |
| 66 | + attributes: |
| 67 | + label: Target game |
| 68 | + description: The game this tool is being used against. Most users are on Road to Vostok, but the tool is designed to work for any Godot-on-Steam game — knowing helps if the issue is game-specific. |
| 69 | + placeholder: e.g. Road to Vostok |
| 70 | + validations: |
| 71 | + required: false |
| 72 | + |
| 73 | + - type: textarea |
| 74 | + id: command |
| 75 | + attributes: |
| 76 | + label: Command you ran |
| 77 | + description: Exact command including flags. Wrap in triple backticks for readability. |
| 78 | + render: shell |
| 79 | + placeholder: | |
| 80 | + python analyze_mods.py --from game-v0.1.0.0-build22674175 --to HEAD --output report.html |
| 81 | + validations: |
| 82 | + required: true |
| 83 | + |
| 84 | + - type: textarea |
| 85 | + id: expected |
| 86 | + attributes: |
| 87 | + label: Expected behavior |
| 88 | + description: What did you expect the command to output / produce? |
| 89 | + validations: |
| 90 | + required: true |
| 91 | + |
| 92 | + - type: textarea |
| 93 | + id: actual |
| 94 | + attributes: |
| 95 | + label: Actual behavior |
| 96 | + description: What actually happened? Include the full traceback if Python errored. |
| 97 | + render: shell |
| 98 | + placeholder: | |
| 99 | + Traceback (most recent call last): |
| 100 | + File "analyze_mods.py", line 42, in <module> |
| 101 | + ... |
| 102 | + SomeError: ... |
| 103 | + validations: |
| 104 | + required: true |
| 105 | + |
| 106 | + - type: textarea |
| 107 | + id: config |
| 108 | + attributes: |
| 109 | + label: Relevant mod_tracker.toml content |
| 110 | + description: Paste the section(s) of your config that this command reads. Redact any private paths if needed. |
| 111 | + render: toml |
| 112 | + placeholder: | |
| 113 | + [paths] |
| 114 | + decompiled = "..." |
| 115 | + history = "..." |
| 116 | + validations: |
| 117 | + required: false |
| 118 | + |
| 119 | + - type: checkboxes |
| 120 | + id: checks |
| 121 | + attributes: |
| 122 | + label: Confirmations |
| 123 | + options: |
| 124 | + - label: I searched existing issues |
| 125 | + required: true |
| 126 | + - label: I'm running Python 3.11+ |
| 127 | + required: true |
| 128 | + - label: My git is recent (`git --version` → 2.20+) |
| 129 | + required: false |
0 commit comments