Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
139 changes: 139 additions & 0 deletions .github /pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,139 @@
# 🛠️ Pull Request Template

## 🏷️ PR Type
<!--
Select the type of PR (check one):
- [ ] 🐞 Bug Fix
- [ ] ✨ Feature
- [ ] 🛠️ Improvement / Refactor
- [ ] 📚 Documentation
-->

---

## 🔗 Related Issue
<!--
Link the GitHub issue this PR closes (if applicable).
Example: `Closes #123`
-->
- Closes #.

---

## 📝 Rationale / Motivation
<!--
Explain why this change is necessary.
- What problem does it solve?
- How does it improve the project?
- Any relevant context for reviewers.
-->

---

## ✨ Description of Changes
<!--
Summarize changes with details:
- What files/components were modified
- Any new functionality added
- Refactoring, cleanup, or optimizations
- Nested bullet points for clarity
-->

- **Frontend**
- Component A updated
- Component B refactored
- **Backend / API**
- Endpoint X optimized
- Validation added
- **Documentation**
- Updated README / Added usage example

---

## 🧪 Testing Instructions
<!--
Step-by-step guide to test this PR:
1. Setup or dependencies needed
2. Actions to perform
3. Expected results
4. Mention automated tests coverage
-->

1. Pull branch and run `npm install`
2. Start local server with `npm start`
3. Navigate to `/feature-page` and verify functionality
4. Run tests: `npm test` (all should pass)
5. Verify edge cases

---

## 👀 Impact Assessment
<!--
Analyze the impact of this PR:
- User-facing changes (UI / UX)
- Backend/API changes
- Performance considerations
- Security implications
- Cross-browser / device impact
-->

---

## 🖼️ Screenshots / GIFs (if applicable)
<!--
Add screenshots or GIFs demonstrating user-facing changes
-->

---

## ⚡ Checklist
- [ ] Code follows project’s coding style and guidelines
- [ ] Changes are tested locally
- [ ] Automated tests added/updated
- [ ] Documentation updated (if applicable)
- [ ] User-facing changes are documented
- [ ] Related issue linked
- [ ] No new warnings/errors introduced
- [ ] All reviewers guidance addressed

---

## 🔖 Reviewer Notes
<!--
Tips for reviewers to focus on critical areas:
- Areas with complex logic
- Known limitations or trade-offs
- Optional testing scenarios
-->

---

## ⚠️ Breaking Changes
<!--
Document any backward-incompatible changes:
- Public APIs
- Config / env variables
- Existing workflows
-->

---

## 🏆 Optional Enhancements / Future Work
<!--
Ideas or improvements that can be implemented later:
- UI improvements
- Additional validations
- Performance optimizations
- Feature expansions
-->

---

## 🎯 Priority / Impact Level
<!--
Indicate the priority and expected impact:
- Low / Medium / High
- Helps maintainers understand urgency and importance
-->
- Priority: High
- Impact: Medium