diff --git a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml index 761d284..170fe8d 100644 --- a/.github/ISSUE_TEMPLATE/BUG-REPORT.yml +++ b/.github/ISSUE_TEMPLATE/BUG-REPORT.yml @@ -2,9 +2,16 @@ name: "🐛 Bug Report" description: Create a new ticket for a bug. title: "🐛 [BUG] - " labels: [ - "bug" + "bug", "needs-triage" ] body: + - type: input + id: contact + attributes: + label: Discord Username + description: How can we get in touch with you if we need more info? + validations: + required: false - type: textarea id: description attributes: diff --git a/.github/ISSUE_TEMPLATE/ENHANCEMENT.yml b/.github/ISSUE_TEMPLATE/ENHANCEMENT.yml new file mode 100644 index 0000000..92d95fa --- /dev/null +++ b/.github/ISSUE_TEMPLATE/ENHANCEMENT.yml @@ -0,0 +1,23 @@ +name: "💡 Enhancement" +description: Create a new ticket for suggesting an enhancement. +title: "💡 [Enhancement] - <title>" +labels: [ + "enhancement", + "needs-triage" +] +assignees: + - jabinb +body: + - type: markdown + attributes: + value: | + Please before submitting your enhancement search if someone has already submitted something similar. + If it does please voice your support there, we are more likely to implement a feature with broad community support. + - type: textarea + id: description + attributes: + label: "Description" + description: Please enter a description for your enhancement to the client. + placeholder: Concise description of your idea + validations: + required: true