diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml new file mode 100644 index 000000000..f8ab9243a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -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 diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 000000000..3ba13e0ce --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1 @@ +blank_issues_enabled: false diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml new file mode 100644 index 000000000..86e6978f1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -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