From 48a17c47c6d28812415b5667b0860847a264cc31 Mon Sep 17 00:00:00 2001 From: Yury Pikhtarev Date: Tue, 1 Jul 2025 01:59:45 +0400 Subject: [PATCH] feat: add pull request template for improved contribution guidelines (#2022) - Introduced a new PULL_REQUEST_TEMPLATE.md to standardize the information provided in pull requests. - The template includes sections for describing the purpose of the PR, changes made, testing instructions, and documentation updates. This addition aims to enhance clarity and consistency in contributions, making it easier for maintainers to review and understand changes. --- .github/PULL_REQUEST_TEMPLATE.md | 49 ++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 000000000..c9f61d6d4 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,49 @@ +## 🚀 What’s this Pull Request? + +Please describe the purpose and context of this PR. Is it a bugfix, a feature, a refactor, or maintenance? + +- Type: + - [ ] Bugfix + - [ ] Feature + - [ ] Refactor + - [ ] Chore + - [ ] Other +- Related Issue(s): Closes #XXXX, Implements #XXXX + +## ✅ What’s Changed? + +Briefly summarize the changes you’ve made. + +- ... +- ... +- ... + +## 🔬 How to Test + +Describe how a maintainer or reviewer can manually verify your changes. + +1. ... +2. ... +3. ... + +## 🧪 Tests + +- [ ] Unit tests added or updated +- [ ] No tests needed +- [ ] Not applicable + +## 📚 Documentation + +- [ ] Updated relevant docs +- [ ] No docs needed +- [ ] Not applicable + +## 💡 Additional Notes + +- Compatibility concerns? (e.g., PHP version, tracker behavior, database migrations) +- Any known limitations? +- Anything reviewers should pay special attention to? + +## 📸 UI / Frontend Changes (if applicable) + +_Add screenshots, videos, or gif demos if you made UI changes._