Review Renovate
Review and merge Renovate PRs following a structured workflow.
Arguments
$ARGUMENTS
Workflow
List open Renovate PRs:
gh pr list --author=app/renovate --state openFor each PR, check details:
gh pr view <number> gh pr checks <number>If CI failing:
- Checkout:
gh pr checkout <number> - Check conflicts and resolve if needed
- Run:
pnpm install && pnpm test && pnpm build && pnpm lint - Fix issues and push
- Checkout:
Assess version change risk:
- patch: Low risk - quick review
- minor: Medium risk - check for new features
- major: High risk - detailed review required
Check CHANGELOG/release notes
Verify peer deps compatibility
Approve and merge:
gh pr review --approve <number> gh pr merge <number>
Review Criteria
- Security updates: Always HIGH priority
- Patch updates: LOW risk - quick review
- Minor updates: MEDIUM risk - check for new features
- Major updates: HIGH risk - detailed review required