Skip to content

Commit

Permalink
Setup issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
Mrbysco committed Jun 13, 2023
1 parent c4afa85 commit ea0efa8
Show file tree
Hide file tree
Showing 3 changed files with 100 additions and 0 deletions.
71 changes: 71 additions & 0 deletions .github/ISSUE_TEMPLATE/BUG_REPORT.yaml
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
28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/FEATURE_REQUEST.yaml
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
1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false

0 comments on commit ea0efa8

Please sign in to comment.