diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index 59896d45..00000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve -title: "" -labels: "Type: bug" -assignees: "" ---- - -**Describe the bug** -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. - -**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] - -**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 deleted file mode 100644 index 515ea97a..00000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,44 +0,0 @@ ---- -name: Feature request -about: Describe the feature you want and propose some steps to achieve it -title: "" -labels: "open for contribution" -assignees: "" ---- - -## Description 📹 - -[Insert clear description here] - -## Proposed Actions 🛠️ - -Here's a checklist of actions to follow for resolving this issue: - -1. **Fork and Create Branch**: - Fork the repository and create a new branch using the issue number: - ```bash - git checkout -b fix-[issue-number] - ``` - -2. **Implement Changes**: - [Propose the changes you would like to see in the code] - -3. **Run Tests and Commit Changes**: - Make sure your changes don't break existing functionality and commit with a clear message: - ```bash - git commit -m "Fix: [Short description of the fix]" - ``` - -## Required 📋 - -To keep our workflow smooth, please make sure you follow these guidelines: - -- **Assignment**: Don't create a pull request if you weren't assigned to this issue. -- **Timeframe**: Complete the task within **3 business days**. -- **Closing the Issue**: In your PR description, close the issue by writing `Close #[issue_id]`. -- **Review Process**: - - Once you've submitted your PR, change the label to **"ready for review"**. - - If changes are requested, address them and then update the label back to **"ready for review"** once done. -- **Testing**: Test your PR locally before pushing, and verify that tests and build are working after pushing. - -Thank you for your contribution! 🙏 Let's keep our code clean and organized! 🚀