From 2afc38b771c0e755280652dc1a698c8aaacaa5c9 Mon Sep 17 00:00:00 2001 From: ThatGravyBoat Date: Sat, 2 Oct 2021 10:26:33 -0230 Subject: Create feature-request.yml --- .github/ISSUE_TEMPLATE/feature-request.yml | 71 ++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/feature-request.yml (limited to '.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 0000000..3f73353 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature-request.yml @@ -0,0 +1,71 @@ +name: Feature Request +description: File a feature request +title: "[Feature Request]: " +labels: [enhancement] +body: + + - type: textarea + id: related-problem + attributes: + label: Is your feature request related to a problem? + description: A clear and concise description of what the problem is. + placeholder: I'm always frustrated when X happens. + validations: + required: false + + - type: textarea + id: solution + attributes: + label: Solution(s) + description: A clear and concise description of what you want to happen. + placeholder: When X happens Y should happen like this other thing when A happens. + validations: + required: false + + - type: textarea + id: alternatives + attributes: + label: Describe alternatives you've considered + description: A clear and concise description of any alternative solutions or features you've considered. + placeholder: Maybe X could also do Z when Y happens instead of X doing something when Y happens. + validations: + required: false + + - type: input + id: version + attributes: + label: Mod Version + description: What version of the mod are you on? + placeholder: 1.0.0 + validations: + required: true + + - type: input + id: loader-version + attributes: + label: Mod Loader Version + description: What version of the mod loader are you on? + placeholder: 1.8.9 - 1.0.0 + validations: + required: true + + #Add back when fabric version is here. + # - type: dropdown + # id: loader + # attributes: + # label: Mod Loader + # description: What mod loader are you using? (Not required as of right now) + # multiple: true + # options: + # - N/A + # - Forge + # validations: + # required: false + + - type: textarea + id: additional-context + attributes: + label: Additional context + description: You may also give any additional information here. + validations: + required: false -- cgit