From 30d4e684da2f380055e7ab15fe0a920ff974a88d Mon Sep 17 00:00:00 2001
From: lucian929 <60053521+lucian929@users.noreply.github.com>
Date: Thu, 12 Jan 2023 17:50:36 -0500
Subject: [PATCH 1/2] Add back feature request issue template
---
.github/ISSUE_TEMPLATE/feature-request.yml | 29 ++++++++++++++++++++++
1 file changed, 29 insertions(+)
create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yml
diff --git a/.github/ISSUE_TEMPLATE/feature-request.yml b/.github/ISSUE_TEMPLATE/feature-request.yml
new file mode 100644
index 00000000..7ab941fc
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/feature-request.yml
@@ -0,0 +1,29 @@
+name: Feature Request
+description: Create a feature request to help us keep track of all features you want to be added
+title: "[FEATURE]
"
+labels: [feature]
+
+body:
+ - type: "checkboxes"
+ id: "i-have-checked"
+ attributes:
+ label: "I have checked that..."
+ options:
+ - label: "...such a feature does not exist already"
+ required: true
+ - label: "...such a feature request has not been submitted already"
+ required: true
+ - type: "textarea"
+ id: "description"
+ attributes:
+ label: "Description"
+ description: "A full description of the feature"
+ validations:
+ required: true
+ - type: "textarea"
+ id: "config-changes"
+ attributes:
+ label: "Config Changes"
+ description: "The configuration changes your feature should have"
+ validations:
+ required: false
From 36515abafa08a43a4e5902f6817e5bae3123e48f Mon Sep 17 00:00:00 2001
From: lucian929 <60053521+lucian929@users.noreply.github.com>
Date: Thu, 12 Jan 2023 17:51:06 -0500
Subject: [PATCH 2/2] Add back bug report issue template
---
.github/ISSUE_TEMPLATE/bug-report.yml | 62 +++++++++++++++++++++++++++
1 file changed, 62 insertions(+)
create mode 100644 .github/ISSUE_TEMPLATE/bug-report.yml
diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml
new file mode 100644
index 00000000..2e57ae16
--- /dev/null
+++ b/.github/ISSUE_TEMPLATE/bug-report.yml
@@ -0,0 +1,62 @@
+name: Bug Report
+description: Create a bug report to help us keep track of all bugs that have to be fixed
+title: "[BUG] "
+labels: [bug]
+
+body:
+ - type: checkboxes
+ id: i-have-checked
+ attributes:
+ label: I have checked...
+ options:
+ - label: "I am using the latest version of HMCCosmetics"
+ required: true
+ - label: "I am using the latest version of any dependencies"
+ required: true
+ - label: "I have checked if any similar bug reports exist"
+ required: true
+ - type: textarea
+ id: description
+ attributes:
+ label: Description
+ description: A full description of the bug
+ validations:
+ required: true
+ - type: textarea
+ id: reproduce
+ attributes:
+ label: Steps to reproduce
+ description: Explain how to reproduce this issue step-by-step, in as much detail as possible.
+ validations:
+ required: true
+ - type: textarea
+ id: hmcc-version
+ attributes:
+ label: Plugin Version
+ description: Run `version HMCCosmetics` in your console and paste the output
+ validations:
+ required: true
+ - type: textarea
+ id: meg-version
+ attributes:
+ label: ModelEngine Version
+ description: "Run `version ModelEngine` in your console and paste the output. Optional if not using balloons."
+ validations:
+ required: false
+ - type: textarea
+ id: server-version
+ attributes:
+ label: Server Version
+ description: "Run `version` in your console and paste the output."
+ validations:
+ required: true
+ - type: "dropdown"
+ id: "type"
+ attributes:
+ label: "How breaking is the bug?"
+ options:
+ - "Breaking Bug - Plugin unusable"
+ - "Non-breaking Bug - Plugin still usable, but certain features unavailable"
+ - "Minor Bug - Plugin completely functional, but features have non-working aspects"
+ validations:
+ required: true