name: pr-completion description: Ensure PR checks pass and conflicts are resolved before completing tasks. Use after creating a PR, when marking tasks as done, or when completing work that resulted in a PR.
PR Completion Workflow
Before marking a task as done after creating a PR, verify:
- All PR checks pass
- No merge conflicts exist
Check PR Status
# View PR checks
gh pr checks
# View PR status (includes mergeable state)
gh pr view --json state,mergeable,mergeStateStatus
Wait for Checks
If checks are pending:
# Wait for checks to complete (blocking)
gh pr checks --watch
If checks fail:
- Read check logs:
gh pr checks --json name,state,conclusion - Fix failing checks
- Push fixes
- Re-verify with
gh pr checks --watch
Resolve Conflicts
If PR has conflicts (mergeable: CONFLICTING):
# Update branch from base
gh pr update-branch
# Or rebase locally
git fetch origin
git rebase origin/main
# Resolve conflicts
git add .
git rebase --continue
git push --force-with-lease
Completion Checklist
Before set_task_status --status=done:
-
gh pr checksshows all checks passing -
gh pr view --json mergeableshowsMERGEABLE
chat Comments (0)
Sign in to join the discussion and leave a comment.
Skill Details
GitHub Stars
0
GitHub Forks
0
Created
Jan 2026
Last Updated
5 months ago
tools
tools git workflows
Related Skills
Build your own?
Join 12,000+ developers contributing to the Claude ecosystem.
No comments yet. Be the first to share your thoughts!