diff options
author | Patric Stout <truebrain@openttd.org> | 2021-06-26 13:51:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-26 13:51:29 +0200 |
commit | 1ed7afc0a8f40325dca8f4bef0b46e5b8dc06713 (patch) | |
tree | 49c5a77fb391c3d31dec0c1662209d7abc66950d /.github/ISSUE_TEMPLATE/bug.yaml | |
parent | 95a94dcf90847463f8c9a249f15ee9fe5dc14247 (diff) | |
download | openttd-1ed7afc0a8f40325dca8f4bef0b46e5b8dc06713.tar.xz |
Change: [GitHub] use an issue form to let people fill in bug report / crashes (#9400)
Diffstat (limited to '.github/ISSUE_TEMPLATE/bug.yaml')
-rw-r--r-- | .github/ISSUE_TEMPLATE/bug.yaml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml new file mode 100644 index 000000000..39168fe5f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -0,0 +1,41 @@ +name: Bug Report +description: Found a bug in OpenTTD? +title: "[Bug]: " +body: + - type: markdown + attributes: + value: | + Thanks for taking the time to fill out this bug report! + - type: input + id: version + attributes: + label: Version of OpenTTD + description: Fill in below what version of OpenTTD you are using, including your OS. + placeholder: ex. 1.11.2, Windows 10 + validations: + required: true + - type: textarea + id: expected + attributes: + label: Expected result + description: Describe in a few words what you expected to happen. + validations: + required: true + - type: textarea + id: actual + attributes: + label: Actual result + description: Describe in a few words what actually happens. + validations: + required: true + - type: textarea + id: reproduce + attributes: + label: Steps to reproduce + description: As detailed as possible, please tell us how we can reproduce this. Feel free to attach a savegame (zip it first) to make it more clear. + placeholder: | + 1. Loaded the attached savegame. + 2. Click on the button left of that other icon. + 3. The window doesn't open. + validations: + required: true |