pr
Streamline your pull request process with essential steps for GitHub.
Prepare a pull request for the current branch:
- Review changes — read all changed files compared to main
- Clean up — fix any lint errors, formatting issues, or TypeScript warnings
- Remove debug code — remove console.log statements and commented-out code
- Run checks — execute typecheck, lint, and tests — fix any failures
- Stage everything — git add all changes
- Commit — create a descriptive commit following conventional commits: feat(scope):, fix(scope):, perf(scope):, chore(scope):
- Push — push the branch to origin
- Create PR — use GitHub CLI or MCP to create a pull request with:
- Title following conventional commit format
- Summary of all changes
- Testing notes (what was tested, how to verify)
- Any breaking changes or migration steps
If any check fails, fix the issue first before creating the PR.