-
-
Notifications
You must be signed in to change notification settings - Fork 22
Pull Request Template
This guide explains the standard structure and expectations for submitting a Pull Request (PR) to the CodeNearby repository. Following this ensures high-quality contributions, better collaboration, and easier reviews.
Each PR should follow this template format:
Provide a brief overview of what this PR does and why it is necessary.
## 📄 Description
<!-- Briefly explain what this PR does -->Link the issue(s) this PR addresses using keywords like Closes, Fixes, or Resolves.
## 🔗 Related Issue(s)
<!-- Mention the issue(s) this PR addresses (ex: Closes #123) -->List the notable changes introduced in this PR.
## 🛠️ Changes Made
- Added AI-Connect intelligent search
- Improved developer card layout
- Refactored `/api/friends` logicEnsure the contribution has been properly tested. Use checkboxes:
## 🧪 Testing Details
- [ ] Ran `npm run dev` without errors
- [ ] Manual tests completed (ex: tested feature locally)
- [ ] New/updated unit tests (if applicable)If applicable, include before/after UI changes to help reviewers understand visual impact.
## 📸 Screenshots (if UI changes)
<!-- Add screenshots or gifs -->Call out anything reviewers need to pay attention to or special test cases.
## 📝 Notes for Reviewers
<!-- Any special things reviewers should know? -->Before submitting a PR, ensure the following:
- [ ] My code follows the project’s style guidelines.
- [ ] I have performed a self-review of my code.
- [ ] I have commented my code where necessary.
- [ ] I have updated documentation where necessary.
- [ ] This PR is ready for a detailed review.Pull requests should be clear, tested, and focused. Avoid mixing unrelated changes. If you're unsure about your approach, feel free to open a Draft PR or Discussion first.