Create a pull request with a structured description based on the current branch's changes.
- Run
git log main..HEAD --onelineto see all commits on this branch. - Run
git diff main...HEAD --statto see all changed files. - Run
git diff main...HEADto read the actual changes. - Determine the base branch (main or master).
- Generate a PR title (max 70 chars) summarizing the change.
- Generate a structured PR body.
- Create the PR using
gh pr create.
## Summary
- Bullet point summary of the change and its motivation.
## Changes
- List of significant changes grouped by area.
## Test Plan
- [ ] How to verify this change works correctly.
- [ ] Edge cases considered.
## Notes
- Any migration steps, config changes, or deployment considerations.- Keep the title short and descriptive. Use imperative mood.
- The summary should explain why this change exists, not just what it does.
- Link related issues with
Closes #NorRelates to #N. - If there are visual changes, note where screenshots should be added.
- Always push the branch before creating the PR.