Skip to content

Commit 0e5b68c

Browse files
committed
Add issue templates
Hopefully this minimises the chance of hard to resolve stale reports in the future.
1 parent f01d21c commit 0e5b68c

File tree

2 files changed

+106
-0
lines changed

2 files changed

+106
-0
lines changed
Lines changed: 88 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
name: Bug Report
2+
description: Create a bug report to help us improve
3+
4+
labels: [ 'bug' ]
5+
assignees: [ 'Ampflower' ]
6+
7+
body:
8+
- type: textarea
9+
attributes:
10+
label: Environment
11+
description: |
12+
What platform and version of the mod are you using?
13+
14+
Example:
15+
- **Minecraft**: 1.21.1 Server
16+
- **QuickBench**: 4.4.0
17+
- **Loader**: Fabric or Forge+Sinytra
18+
- **Java**: Adoptium 21.0.2
19+
- **Mods**: *Add other mods here, if any. Provide exact versions if possible.*
20+
value: |
21+
- **Minecraft**:
22+
- **QuickBench**:
23+
- **Loader**:
24+
- **Java**:
25+
- **Mods**:
26+
validations:
27+
required: true
28+
29+
- type: textarea
30+
attributes:
31+
label: To Reproduce
32+
description: |
33+
Minimum steps required to reproduce the behavior.
34+
35+
Feel free to include variations if you find any.
36+
placeholder: |
37+
### Botania:
38+
1. Open a manufactory halo
39+
2. Set an autocrafting recipe
40+
3. Have it not autocraft, or lag the entire server
41+
42+
### Item conflict:
43+
1. Open a crafting table
44+
2. Use a recipe requiring this item
45+
3. Have it erroneously consume the item
46+
47+
### Other:
48+
1. ...
49+
2. ...
50+
3. ...
51+
validations:
52+
required: true
53+
54+
- type: input
55+
attributes:
56+
label: Expected results
57+
description: What behavior was expected?
58+
placeholder: e.g. To not consume the crystal, or not add lag
59+
validations:
60+
required: true
61+
62+
- type: textarea
63+
attributes:
64+
label: Logs, crash report, mod list or unmodified mod pack
65+
description: |
66+
Bugs can be tricky to track down, and more information helps.
67+
Include the versions of mods, as mods may change to fix the incompatibility on their own.
68+
69+
If you are having crash-related bugs, post the full log and any accompanying crash report.
70+
You may use a service such as <https://mclo.gs> to upload your log if you wish.
71+
placeholder: |
72+
<details><summary>latest.log</summary>
73+
74+
```
75+
[00:00:00] [main/INFO]: Loading Minecraft 1.21 with Fabric Loader 0.15.11
76+
[00:00:00] [main/INFO]: Loading ??? mods:
77+
- fabricloader 0.15.11
78+
\-- mixinextras 0.3.5
79+
- java 21
80+
- minecraft 1.21
81+
- quickbench 4.4.0
82+
- ...
83+
[00:00:00] [main/INFO]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=??? Service=Knot/Fabric Env=SERVER
84+
...
85+
```
86+
</details>
87+
validations:
88+
required: true
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Feature Request
2+
description: Suggest features for QuickBench, or just ask for an update.
3+
4+
labels: [ 'enhancement' ]
5+
6+
body:
7+
- type: textarea
8+
attributes:
9+
label: What would you like added or changed?
10+
placeholder: A clear and concise description of what you'd like.
11+
validations:
12+
required: true
13+
14+
- type: textarea
15+
attributes:
16+
label: Any additional context or solutions you thought of?
17+
validations:
18+
required: false

0 commit comments

Comments
 (0)