From 62138ac070cc24100467e80a336d41e08bf3f59b Mon Sep 17 00:00:00 2001 From: NanoNish Date: Mon, 31 Oct 2022 23:39:22 +0530 Subject: [PATCH] docs: Issue Templates Created ISSUE_TEMPLATES Folder inside .github So that issues can be generated in an ordely manner Created 2 templates: 1. Bug Report 2. Feature Request Created config.yml --- .github/ISSUE_TEMPLATE/bug_report.md | 35 +++++++++++++++++++++++ .github/ISSUE_TEMPLATE/config.yml | 5 ++++ .github/ISSUE_TEMPLATE/feature_request.md | 27 +++++++++++++++++ 3 files changed, 67 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/bug_report.md create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/feature_request.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 0000000..0fbb17c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,35 @@ +--- +name: "Bug Report" +about: Create a report to help us find and fix the bug +title: "" +labels: "bug" +assignees: "" +--- + +## Describe the Bug + +Give a brief description of what the bug is. + +## Steps to Reproduce + +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +## Expected Behaviour + +A clear and concise description of what you expected to happen. + +## Screenhots/Video + +Add screenshots or screen recording to explain your problem. + +## Device Information [Optional] + +- OS: [e.g. iOS/Android] +- Device: [e.g. iPhone 12/Samsung S8] + +## Related Issues [Optional] + +Are there any other similar issues or discussions. \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..6753a37 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,5 @@ +blank_issues_enabled: true +contact_links: + - name: Have any issues to discuss regarding MDG Space? + url: https://mdgspace.org/chat/ + about: Come chat with our members and contributors!!! \ No newline at end of file diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 0000000..89be288 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,27 @@ +--- +name: "Feature Request" +about: Suggest a feature or an idea for this project +title: "" +labels: "feature" +assignees: "" +--- + +## Description + +Give a brief description of what the idea is. + +## Is your feature related to a problem? + +A clear and concise description of the problem you have (if you have). Also add links to any discussions. + +## Your Solution + +Please describe what you see as an apt solution. + +## Any Alternatives? + +Give a desciption of all the alternative solutions you might have considered or rejected with reason. + +## Additional Context + +Add any other relevant information about the feature request here. \ No newline at end of file