Skip to content

Commit d065128

Browse files
committed
Update issue templates
1 parent 3aedfff commit d065128

File tree

4 files changed

+114
-53
lines changed

4 files changed

+114
-53
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 0 additions & 39 deletions
This file was deleted.
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
name: Bug report
2+
description: File a bug report
3+
labels: [triage]
4+
assignees: henkelmax
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
> [!WARNING]
10+
> This form is **only for bug reports**!
11+
> Please don't abuse this for feature requests or questions.
12+
> Forms that are not filled out properly will be closed without response!
13+
- type: textarea
14+
id: description
15+
attributes:
16+
label: Bug description
17+
description: A clear and concise description of what the bug is.
18+
validations:
19+
required: true
20+
- type: input
21+
id: mc_version
22+
attributes:
23+
label: Minecraft version
24+
description: The Minecraft version you are using.
25+
placeholder: 1.20.4
26+
validations:
27+
required: true
28+
- type: input
29+
id: mod_version
30+
attributes:
31+
label: Mod version
32+
description: The version of the mod.
33+
placeholder: 1.20.4-1.2.3
34+
validations:
35+
required: true
36+
- type: input
37+
id: mod_loader_version
38+
attributes:
39+
label: Mod loader and version
40+
description: The mod loader and mod loader version you are using.
41+
placeholder: Fabric Loader 0.15.6 / NeoForge 20.4.1 / Forge 48.1.0
42+
validations:
43+
required: true
44+
- type: textarea
45+
id: steps
46+
attributes:
47+
label: Steps to reproduce
48+
description: |
49+
Steps to reproduce the issue.
50+
Please **don't** report issues that are not reproducible.
51+
placeholder: |
52+
1. Go to '...'
53+
2. Click on '...'
54+
3. Scroll down to '...'
55+
4. See error
56+
validations:
57+
required: true
58+
- type: textarea
59+
id: expected
60+
attributes:
61+
label: Expected behavior
62+
description: A clear and concise description of what you expected to happen.
63+
validations:
64+
required: false
65+
- type: input
66+
id: logs
67+
attributes:
68+
label: Log files
69+
description: |
70+
Please provide log files of the game session in which the problem occurred.
71+
Don't paste the complete logs into the issue.
72+
You can use [https://gist.github.com/](https://gist.github.com/).
73+
placeholder: https://gist.github.com/exampleuser/example
74+
validations:
75+
required: true
76+
- type: textarea
77+
id: screenshots
78+
attributes:
79+
label: Screenshots
80+
description: Screenshots of the issue.
81+
validations:
82+
required: false

.github/ISSUE_TEMPLATE/translation.md

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: Translation
2+
description: Submit a translation for this project
3+
labels: [translation]
4+
assignees: henkelmax
5+
body:
6+
- type: textarea
7+
id: notes
8+
attributes:
9+
label: Additional notes
10+
description: Additional information.
11+
validations:
12+
required: false
13+
- type: input
14+
id: locale_code
15+
attributes:
16+
label: Locale code
17+
description: The Minecraft locale code (See [this](https://minecraft.wiki/w/Language#Languages) for more information).
18+
placeholder: en_us
19+
validations:
20+
required: true
21+
- type: textarea
22+
id: translation
23+
attributes:
24+
label: Translation json
25+
description: The contents of your translation file.
26+
render: json
27+
placeholder: |
28+
{
29+
"translation.key": "Translated value"
30+
}
31+
validations:
32+
required: true

0 commit comments

Comments
 (0)