Skip to content

Commit 824405b

Browse files
authored
Replace Markdown issue template with YAML schema (#1426)
* Replace Markdown issue template with YML schema * YAML doesn't like that apparently * Address requested changes
1 parent d036866 commit 824405b

File tree

3 files changed

+96
-48
lines changed

3 files changed

+96
-48
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 48 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
name: Bug Report
2+
description: Report a bug, crash, or other type of error in Unleashed Recompiled
3+
type: Bug
4+
body:
5+
- id: validation
6+
type: checkboxes
7+
attributes:
8+
label: Validation
9+
options:
10+
- label: I have checked the [Issues](https://github.com/hedge-dev/UnleashedRecomp/issues) page to see if my problem has already been reported
11+
required: true
12+
- label: I have confirmed that this bug does not occur in the original game running on original Xbox 360 hardware
13+
required: false
14+
- id: dlc-installed
15+
type: checkboxes
16+
attributes:
17+
label: If you have DLC installed, please specify which ones you have.
18+
options:
19+
- label: Apotos & Shamar Adventure Pack
20+
required: false
21+
- label: Chun-nan Adventure Pack
22+
required: false
23+
- label: Empire City & Adabat Adventure Pack
24+
required: false
25+
- label: Holoska Adventure Pack
26+
required: false
27+
- label: Mazuri Adventure Pack
28+
required: false
29+
- label: Spagonia Adventure Pack
30+
required: false
31+
- id: mods-used
32+
type: textarea
33+
validations:
34+
required: false
35+
attributes:
36+
label: If you have mods enabled, please specify which ones you have.
37+
description: Provide a list of your enabled mods in Hedge Mod Manager here. You will not receive support for issues *caused* by mods.
38+
- id: codes-used
39+
type: textarea
40+
validations:
41+
required: false
42+
attributes:
43+
label: If you have codes enabled, please specify which ones you have.
44+
description: Provide a list of your enabled codes in Hedge Mod Manager here.
45+
- id: describe-bug
46+
type: textarea
47+
validations:
48+
required: true
49+
attributes:
50+
label: Describe the Bug
51+
description: A clear and concise description of what the bug is.
52+
- id: repro-steps
53+
type: textarea
54+
validations:
55+
required: true
56+
attributes:
57+
label: Steps to Reproduce
58+
description: Step-by-step instructions on how to reproduce the bug.
59+
placeholder: |
60+
1. Go to '...'
61+
2. etc.
62+
- id: expected-behavior
63+
type: textarea
64+
validations:
65+
required: true
66+
attributes:
67+
label: Expected Behavior
68+
description: A clear and concise description of what you expected to happen.
69+
- id: footage
70+
type: textarea
71+
validations:
72+
required: true
73+
attributes:
74+
label: Footage
75+
description: Attach a screenshot or video of the bug. If possible, please also provide footage of the expected behaviour on original Xbox 360 hardware.
76+
- id: system-specifications
77+
type: textarea
78+
validations:
79+
required: true
80+
attributes:
81+
label: System Specifications
82+
description: Fill out the following details.
83+
placeholder: |
84+
- CPU: (e.g. Intel Core [...], AMD Ryzen [...], etc.)
85+
- GPU: (e.g. NVIDIA GeForce [...], Radeon HD [...], Intel HD [...], etc.)
86+
- GPU Driver: (e.g NVIDIA driver 545.XX, AMD driver 24.X.X, etc.)
87+
- OS: (e.g. Windows 10, Windows 11, Linux distro)
88+
- Version: (e.g. 1.0.0)
89+
- id: additional-context
90+
type: textarea
91+
validations:
92+
required: false
93+
attributes:
94+
label: Additional Context
95+
description: Provide any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: true

0 commit comments

Comments
 (0)