diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index cc9ee307..e2e91279 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -86,6 +86,9 @@ body: validations: required: true - - type: markdown + - type: textarea attributes: - value: Additional information + label: Additional information + description: Anything else you'd like to add? + validations: + required: false diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md deleted file mode 100644 index 11fc491e..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project -title: '' -labels: enhancement -assignees: '' - ---- - -**Is your feature request related to a problem? Please describe.** -A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] - -**Describe the solution you'd like** -A clear and concise description of what you want to happen. - -**Describe alternatives you've considered** -A clear and concise description of any alternative solutions or features you've considered. - -**Additional context** -Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/new_feature.yml b/.github/ISSUE_TEMPLATE/new_feature.yml new file mode 100644 index 00000000..200a352a --- /dev/null +++ b/.github/ISSUE_TEMPLATE/new_feature.yml @@ -0,0 +1,53 @@ +name: ✨ New Feature +assignees: + - KRTirtho +description: Suggest an idea +title: "[Feature] " +labels: + - enhancement + - good first issue + +body: + - type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true + - type: dropdown + attributes: + label: Category of the Feature + description: In which category you think your feature belongs to. + multiple: true + options: + - UI Improvements + - Logical Improvements + - More Efficiency + - Performance Improvements + - UX Improvements + - Code Refactor + - Unable to categorize + - type: input + attributes: + label: Credits + description: Who've contributed to this idea of this feature? + validations: + required: true + - type: textarea + attributes: + label: Pain + description: Explain the pain you're experiencing. + placeholder: e.g. I don't like that I've to do this... + validations: + required: true + - type: textarea + attributes: + label: Suggested Solution + description: Tell us about your solution + validations: + required: true + - type: textarea + attributes: + label: Useful resources/references + description: Provide us with some useful resources/references which will help us implement your solution.