What problem does it solve? Fork pull requests face stricter GitHub security defaults than same-repo PRs: CI jobs stay in "waiting" status until approved, rebases require careful force-push handling, and bot reviewers generate confusing multi-round feedback. This Skill provides the operational patterns to handle these fork-specific lifecycle issues. ## Core Features & Use Cases - Workflow Approval: Approve pending GitHub Actions runs for fork PRs using gh api, including retry logic for the race condition where the run object is not yet created. - Safe Force-Push & Rebase: Enforce --force-with-lease over bare --force, with a standard rebase workflow against upstream/main and conventional remote naming (origin/upstream). - Stale CI Verification: Confirm that check data matches the current PR head SHA before canceling obsolete runs, plus guidance for handling multi-round bot reviews. - Use Case: After pushing a rebased branch to your fork, CI shows "waiting". Use this Skill to list pending runs, approve the workflow via the GitHub API, and verify the checks reference the new head SHA. ## Quick Start Approve the pending CI workflow run for my fork PR and verify the checks match the current head SHA.