Skip to content
Open
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
42 changes: 42 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# Pull Request

## πŸ“‹ Summary
<!-- Provide a clear and concise description of the change -->

## πŸ”— Related Issues/Tickets
<!-- List related Jira tickets, GitHub issues, etc. -->
- Closes #123
- Related to #456

## πŸ› οΈ Changes
<!-- Bullet points of major updates -->
- Added feature XYZ
- Refactored ABC module for better performance
- Fixed crash when opening the profile page

## βœ… Checklist
- [ ] I have tested these changes manually.
- [ ] I have added necessary documentation (if applicable).
- [ ] I have updated related tests (unit/integration).
- [ ] I have followed the project coding guidelines.
- [ ] I have rebased/merged the latest `main` branch changes.

## πŸ“· Screenshots / Videos (Optional)
<!-- If UI changes, attach screenshots or short videos -->
| Before | After |
|:------:|:-----:|
| (screenshot) | (screenshot) |

## πŸ§ͺ Test Plan
<!-- Explain how you tested your changes -->
- [ ] New feature tested on Android
- [ ] New feature tested on iOS
- [ ] Regression tested other impacted areas

## πŸ” Review Instructions
<!-- Any special instructions for reviewers? -->
- Focus mainly on the changes in `xyz_controller.dart`.
- Pay extra attention to the new caching logic.

---