From 31935fa7804994899ad2c20bb2a098dad3c70f4f Mon Sep 17 00:00:00 2001 From: Kishor Rathva Date: Sun, 5 May 2024 00:47:31 +0530 Subject: [PATCH] chore(template) updated issue template and added pr template: --- .github/ISSUE_TEMPLATE/bug_report.md | 18 ++++-------------- .github/ISSUE_TEMPLATE/feature_request.md | 4 ++-- .github/PULL_REQUEST_TEMPLATE.md | 14 ++++++++++++++ 3 files changed, 20 insertions(+), 16 deletions(-) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index dd84ea7..68f7bac 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -12,10 +12,6 @@ A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error **Expected behavior** A clear and concise description of what you expected to happen. @@ -23,16 +19,10 @@ A clear and concise description of what you expected to happen. **Screenshots** If applicable, add screenshots to help explain your problem. -**Desktop (please complete the following information):** - - OS: [e.g. iOS] - - Browser [e.g. chrome, safari] - - Version [e.g. 22] - -**Smartphone (please complete the following information):** - - Device: [e.g. iPhone6] - - OS: [e.g. iOS8.1] - - Browser [e.g. stock browser, safari] - - Version [e.g. 22] +**Environment (if Applicable)** +- Library Version: +- Node.js Version: +- Operating System: **Additional context** Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md index bbcbbe7..53d1bfa 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -1,8 +1,8 @@ --- name: Feature request -about: Suggest an idea for this project +about: Suggest an idea or enhancement for the library title: '' -labels: '' +labels: 'feature' assignees: '' --- diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000..42440ba --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,14 @@ +## Description + + + +## Related Issue + + + +## Checklist + +- [ ] I have tested these changes locally. +- [ ] I have updated relevant documentation. +- [ ] I have added appropriate comments and/or commit messages. +- [ ] My code follows the project's coding conventions and style guidelines.