-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c1994ac
commit 790adee
Showing
2 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
name: 🐛 Bug / Crash Report | ||
description: File a bug / crash report | ||
title: "[Bug]: " | ||
labels: [bug, crash] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out this bug report! | ||
- type: checkboxes | ||
id: general-info | ||
attributes: | ||
label: General Info | ||
description: You may select more than one. | ||
options: | ||
- label: I am running a modpack | ||
- label: I can reproduce this issue consistently in single-player | ||
- label: I can reproduce this issue consistently in multi-player | ||
- label: I have searched for this issue previously and it was either (1) not previously reported, or (2) previously fixed and I am having the same problem. | ||
required: true | ||
- label: I am crashing and can provide my crash report(s) | ||
- label: I am using the latest version of the mod | ||
- type: input | ||
id: forge-info | ||
attributes: | ||
label: Forge version | ||
placeholder: ex. 36.2.0 | ||
description: Please be as specific as possible, latest is not a valid version | ||
validations: | ||
required: true | ||
- type: input | ||
id: minecraft-info | ||
attributes: | ||
label: Minecraft version | ||
placeholder: ex. 1.16.5 | ||
description: Please be as specific as possible, latest is not a valid version | ||
validations: | ||
required: true | ||
- type: input | ||
id: mod-info | ||
attributes: | ||
label: Mod version | ||
placeholder: ex. 0.0.1 | ||
description: Please be as specific as possible, latest is not a valid version | ||
validations: | ||
required: true | ||
- type: input | ||
id: java-info | ||
attributes: | ||
label: Java version | ||
placeholder: ex. Java 8 update 51 | ||
description: Please be as specific as possible, latest is not a valid version | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: issue-description | ||
attributes: | ||
label: Issue Description | ||
description: Also tell us, what did you expect to happen? | ||
placeholder: Tell us what you see! | ||
value: "A bug happened!" | ||
validations: | ||
required: true | ||
- type: textarea | ||
id: logs | ||
attributes: | ||
label: Additional Information | ||
description: Please post any crash reports, screenshots, etc. here. (use Pastebin or Imgur accordingly) | ||
placeholder: Please put crash reports onto pastebin | ||
validations: | ||
required: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: 💡 Suggestions | ||
description: For suggesting changes / additions | ||
title: "[Suggestion]: " | ||
labels: [suggestion, enhancement] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
Thanks for taking the time to fill out the feature request! | ||
- type: checkboxes | ||
id: general-info | ||
attributes: | ||
label: General Info | ||
description: You may select more than one. | ||
options: | ||
- label: I would like to propose new content | ||
- label: I would like to propose changes | ||
- label: I would like to propose another thing | ||
validations: | ||
required: false | ||
- type: textarea | ||
id: suggestion-description | ||
attributes: | ||
label: Suggestion Description | ||
description: Tell us your suggestion | ||
placeholder: I want this to happen | ||
validations: | ||
required: true |