Pull Requests
Creating a PR
- Create a feature branch:
git checkout -b feat/my-feature - Make your changes with clear, atomic commits
- Push and open a pull request against
main
PR title format
Use Conventional Commits format:
Description template
Every PR should include:
- Summary — what changed and why
- Changes — bulleted list of modifications
- Testing — how you verified the changes
- Related issues — links to relevant issues
Review process
- At least one approval required before merging
- CI must pass (lint, typecheck, tests)
- Squash and merge — one commit per PR on
main
After merge
Your branch is automatically deleted after merge. The deployment pipeline picks up the change from main.