Create issue templates

This commit is contained in:
Emmie
2024-07-29 23:29:06 -05:00
parent 7fadc64656
commit 8a617fb2df
3 changed files with 101 additions and 0 deletions

62
.github/ISSUE_TEMPLATE/bug-report.yml vendored Normal file
View File

@@ -0,0 +1,62 @@
name: Bug Report
description: File a bug report.
title: "[Bug]: "
labels: ["bug"]
body:
- type: input
id: issue
attributes:
label: What is the issue?
description: Please describe what the issue is.
placeholder: ex. Game crashes when [...]
validations:
required: true
- type: textarea
id: how-to-reproduce
attributes:
label: To Reproduce
description: Please describe what steps to take to recreate the issue.
placeholder: |
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true
- type: dropdown
id: mc-version
attributes:
label: Minecraft Version
description: What version of Minecraft are you running?
options:
- 1.21
- 1.20.1
default: 0
validations:
required: true
- type: input
id: rc-version
attributes:
label: Re-Console Version
description: What Re-Console version are you on?
validations:
required: true
- type: textarea
id: logs
attributes:
label: Log
description: Please upload your log here.
- type: textarea
id: extras
attributes:
label: Additional Context
description: Put any extra info you feel is nessecary here.
- type: checkboxes
id: terms
attributes:
label: Acknowledgement
description: If you do not fill out this form correctly, your issue will be immediately closed.
options:
- label: I understand and have fully filled out the form.
required: true

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

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

View File

@@ -0,0 +1,38 @@
name: Feature request
description: Request a feature to be added.
labels: ["enhancement"]
body:
- type: textarea
id: feature
attributes:
label: What would you like added?
description: What feature do you want added to Re-Console?
validations:
required: true
- type: textarea
id: problem-relation
attributes:
label: Is your feature request related to a problem?
description: Please provide a clear and concise description of what the problem is. (If applicable)
validations:
required: false
- type: textarea
id: solution
attributes:
label: What should be done about this?
description: Describe the solution you'd like
validations:
required: true
- type: textarea
id: extras
attributes:
label: Additional Context
description: Put any extra info you feel is nessecary here.
- type: checkboxes
id: terms
attributes:
label: Acknowledgement
description: If you do not fill out this form correctly, your issue will be immediately closed.
options:
- label: I understand and have fully filled out the form.
required: true