Setup issue templates

This commit is contained in:
Mrbysco 2024-11-09 16:06:42 +01:00
parent c0e0480d73
commit cf4ebf02a5
3 changed files with 100 additions and 0 deletions

71
.github/ISSUE_TEMPLATE/BUG_REPORT.yaml vendored Normal file
View file

@ -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/Neoforge version
placeholder: ex. 21.1.1
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.21.1
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 21.0.3
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

View file

@ -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

1
.github/ISSUE_TEMPLATE/config.yml vendored Normal file
View file

@ -0,0 +1 @@
blank_issues_enabled: false