Skip to content

Commit

Permalink
add issue templates
Browse files Browse the repository at this point in the history
  • Loading branch information
PssbleTrngle committed Aug 31, 2023
1 parent 72ff823 commit 61d7b86
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: Bug Report
description: File a bug report
labels: ["bug"]
assignees: [PssbleTrngle]

body:
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you see!
validations:
required: true

- type: dropdown
id: loader
attributes:
label: Loader
multiple: false
options:
- forge
- fabric
validations:
required: true

- type: input
id: version-version
attributes:
label: Mod Version
validations:
required: true

- type: dropdown
id: minecraft-version
attributes:
label: Minecraft Version
multiple: false
options:
- "1.20"
validations:
required: true

- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: Shell
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
21 changes: 21 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Feature Request
description: Suggest a feature
labels: ["enhancement", "feature", "feature-request"]
assignees: [PssbleTrngle]

body:
- type: textarea
id: idea
attributes:
label: Describe the feature you have in mind.
placeholder: So I was think about...
validations:
required: true

- type: textarea
id: problem-solving
attributes:
label: Does this solve a particular problem?
placeholder: Yes, it balances...
validations:
required: false

0 comments on commit 61d7b86

Please sign in to comment.