
Iterate Pr
- 250 installs
- 30.1k repo stars
- Updated August 4, 2026
- davila7/claude-code-templates
iterate-pr is a GitHub pull request workflow skill that loops on open PRs by fixing CI failures, addressing review feedback, and pushing commits until all checks pass for developers who need merge-ready branches without
About
iterate-pr is a pull request iteration skill from davila7/claude-code-templates that automates the feedback-fix-push-wait cycle until CI is green. It requires an authenticated GitHub CLI and starts by identifying the current branch PR with gh pr view, then checks GitHub Actions status before reading review threads. Developers reach for iterate-pr when failing checks or reviewer comments block merge and they want continuous fixes instead of hand-polling Actions. The skill tightens diffs, updates PR descriptions, and pushes follow-up commits until review feedback and CI gates clear.
- Structured PR feedback loops
- Commit and diff refinement
- Review thread resolution
- Merge-readiness checks
- PR description updates
Iterate Pr by the numbers
- 250 all-time installs (skills.sh)
- Ranked #156 of 733 Git & Pull Requests skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/davila7/claude-code-templates --skill iterate-prAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 250 |
|---|---|
| repo stars | ★ 30.1k |
| Last updated | August 4, 2026 |
| Repository | davila7/claude-code-templates ↗ |
How do you fix a PR until CI and review pass?
Iterate on open pull requests by addressing review comments, tightening diffs, updating descriptions, and pushing follow-up commits until the PR is merge-ready.
Who is it for?
Developers with an open GitHub PR and authenticated gh CLI who need automated fix-push cycles until merge readiness.
Skip if: Repositories without GitHub Actions CI or branches that have no associated pull request yet.
When should I use this skill?
CI fails on the current PR, reviewers leave blocking comments, or the user asks to iterate until checks are green.
What you get
Green CI checks, addressed review comments, updated PR description, and follow-up commits on the open branch.
- follow-up commits
- green CI status
- updated PR description
By the numbers
- Requires GitHub CLI (gh) authenticated for PR and Actions access
Files
Iterate on PR Until CI Passes
Continuously iterate on the current branch until all CI checks pass and review feedback is addressed.
Requires: GitHub CLI (gh) authenticated and available.
Process
Step 1: Identify the PR
gh pr view --json number,url,headRefName,baseRefNameIf no PR exists for the current branch, stop and inform the user.
Step 2: Check CI Status First
Always check CI/GitHub Actions status before looking at review feedback:
gh pr checks --json name,state,bucket,link,workflowThe bucket field categorizes state into: pass, fail, pending, skipping, or cancel.
Important: If any of these checks are still pending, wait before proceeding:
sentry/sentry-iocodecovcursor/bugbot/seer- Any linter or code analysis checks
These bots may post additional feedback comments once their checks complete. Waiting avoids duplicate work.
Step 3: Gather Review Feedback
Once CI checks have completed (or at least the bot-related checks), gather human and bot feedback:
Review Comments and Status:
gh pr view --json reviews,comments,reviewDecisionInline Code Review Comments:
gh api repos/{owner}/{repo}/pulls/{pr_number}/commentsPR Conversation Comments (includes bot comments):
gh api repos/{owner}/{repo}/issues/{pr_number}/commentsLook for bot comments from: Sentry, Codecov, Cursor, Bugbot, Seer, and other automated tools.
Step 4: Investigate Failures
For each CI failure, get the actual logs:
# List recent runs for this branch
gh run list --branch $(git branch --show-current) --limit 5 --json databaseId,name,status,conclusion
# View failed logs for a specific run
gh run view <run-id> --log-failedDo NOT assume what failed based on the check name alone. Always read the actual logs.
Step 5: Validate Feedback
For each piece of feedback (CI failure or review comment):
1. Read the relevant code - Understand the context before making changes 2. Verify the issue is real - Not all feedback is correct; reviewers and bots can be wrong 3. Check if already addressed - The issue may have been fixed in a subsequent commit 4. Skip invalid feedback - If the concern is not legitimate, move on
Step 6: Address Valid Issues
Make minimal, targeted code changes. Only fix what is actually broken.
Step 7: Commit and Push
git add -A
git commit -m "fix: <descriptive message of what was fixed>"
git pushStep 8: Wait for CI
Use the built-in watch functionality:
gh pr checks --watch --interval 30This waits until all checks complete. Exit code 0 means all passed, exit code 1 means failures.
Alternatively, poll manually if you need more control:
gh pr checks --json name,state,bucket | jq '.[] | select(.bucket != "pass")'Step 9: Repeat
Return to Step 2 if:
- Any CI checks failed
- New review feedback appeared
Continue until all checks pass and no unaddressed feedback remains.
Exit Conditions
Success:
- All CI checks are green (
bucket: pass) - No unaddressed human review feedback
Ask for Help:
- Same failure persists after 3 attempts (likely a flaky test or deeper issue)
- Review feedback requires clarification or decision from the user
- CI failure is unrelated to branch changes (infrastructure issue)
Stop Immediately:
- No PR exists for the current branch
- Branch is out of sync and needs rebase (inform user)
Tips
- Use
gh pr checks --requiredto focus only on required checks - Use
gh run view <run-id> --verboseto see all job steps, not just failures - If a check is from an external service, the
linkfield in checks JSON provides the URL to investigate
Related skills
FAQ
What does iterate-pr require before running?
iterate-pr requires GitHub CLI installed and authenticated. It calls gh pr view to locate the branch pull request and inspects GitHub Actions CI status before addressing review feedback.
When does iterate-pr stop iterating?
iterate-pr stops when all CI checks pass and review feedback is addressed, or when no pull request exists for the current branch and the agent informs the developer to open one first.