shepherd-prs
Automate shepherding, updating, and landing both your own open PRs and approved third-party contributor PRs in the flutter/flutter repository. When to use: -…
npx skills add https://github.com/flutter/flutter --skill shepherd-prsShepherding Pull Requests Skill (flutter/flutter)
This skill defines the canonical runbook for shepherding pull requests in the flutter/flutter repository using native GitHub CLI (gh) commands.
1. Checking PR Status
When the user asks for the status of open or approved PRs:
- List Your Own Open PRs:
gh pr list --repo flutter/flutter --author <username> --state open --json number,title,url,mergeable,reviewDecision - List Shepherded / Reviewed Third-Party PRs:
gh pr list --repo flutter/flutter --search "reviewed-by:<username> -author:<username> is:open" --json number,title,url,mergeable,reviewDecision - Inspect Detailed PR Checks:
gh pr checks <number> --repo flutter/flutter - Inspect Reviews, Labels, and Comments:
gh pr view <number> --repo flutter/flutter --json labels,reviewDecision,reviews,comments
2. Pre-Autosubmit Verification Rules
Before applying or re-applying the autosubmit label (gh pr edit <number> --repo flutter/flutter --add-label autosubmit), always perform the following pre-flight verification checks to ensure the autosubmit bot will not reject or strip the label:
-
Check Previous
autosubmitRemoval History in Comments:- Always check if the
autosubmitlabel was previously removed by theauto-submitbot by checking PR comments:gh pr view <number> --repo flutter/flutter --json comments - Look for messages from
auto-submitsuch as"autosubmit label was removed...". - If the label was previously removed, identify the exact reason stated by the bot (e.g., failing CI checks, insufficient approvals, merge conflicts, or stale branch) and confirm that the underlying issue has been resolved before re-applying
autosubmit.
- Always check if the
-
Verify Freshness of Base Commit (>7 Days Old):
- Check whether the PR's base commit is stale (>7 days old).
- If the base commit is more than 7 days old, always instruct running or execute a branch update before attempting to add
autosubmit:gh pr update-branch <number> --repo flutter/flutter - Do not apply
autosubmituntil the branch update is complete and CI checks on the updated branch succeed.
-
Strictly Verify Required Reviewer Approvals:
- Strictly verify that third-party contributor PRs (
CONTRIBUTOR,FIRST_TIME_CONTRIBUTOR,NONE) have at least 2 team member approvals (MEMBERorOWNER) before addingautosubmitso the bot doesn't remove it again. - Check
reviewsingh pr view <number> --repo flutter/flutter --json reviewsto confirm the number of approvals from Flutter team members.
- Strictly verify that third-party contributor PRs (
-
Verify All Status Checks Are 100% Passing:
- The Flutter
autosubmitbot automatically strips theautosubmitlabel whenever any CI check fails. - Verify that all status checks are passing (
SUCCESS/pass). - If any check is flaky, failing, or pending a retry:
- Do NOT apply the
autosubmitlabel immediately. - Inform the user of the failing check and instruct them to retry it first.
- Only apply the
autosubmitlabel after all retried checks complete successfully:gh pr edit <number> --repo flutter/flutter --add-label autosubmit
- Do NOT apply the
- The Flutter
3. Third-Party Contributor PRs (2-Reviewer Requirement)
- Pull requests authored by third-party contributors (
CONTRIBUTOR,FIRST_TIME_CONTRIBUTOR,NONE) require two explicit approvals from Flutter team members (MEMBERorOWNER) before theautosubmitbot will merge them. - If only one team member has approved a third-party PR and the
autosubmitlabel is applied, theautosubmitbot will remove the label. - Action: Strictly verify via
gh pr view <number> --repo flutter/flutter --json reviewsthat at least 2 team member approvals are present before addingautosubmitso the bot doesn't remove it again. If only 1 approval exists, remind the user to request a second reviewer before applying the label.
4. Failed Checks & Manual LUCI Re-runs
- Due to GitHub App permission policies, third-party check runs (such as LUCI checks created by
flutter-dashboard) cannot be re-run via the GitHub API. - Action:
- Print the exact LUCI Buildbucket link (e.g.,
https://cr-buildbucket.appspot.com/build/<build_id>) for the failing check. - Instruct the user to open the URL and click Retry Build on the LUCI page.
- If a check continues to fail after manual retries, inspect the failure logs (
gh pr view <number> --repo flutter/flutterorflutter-pr-checks-finder) and summarize the failure for the user.
- Print the exact LUCI Buildbucket link (e.g.,
5. Stale Branch Updates, CICD Label & Token Scope
- If a PR branch is out of date with
master(including when the base commit is >7 days old):- Always update the branch using
gh pr update-branch <number> --repo flutter/flutterbefore attempting to addautosubmit.
- Always update the branch using
- Re-applying the
CICDLabel:- After updating a branch with
gh pr update-branch(or when shepherding a PR that has not run CI), theCICDlabel is often stripped or required to start the CI checks on the updated commit. - Always check if the
CICDlabel is present after a branch update, and re-apply it if missing:gh pr edit <number> --repo flutter/flutter --add-label CICD
- After updating a branch with
- Stale Token Scope Error: If updating fails due to workflow file permissions (
ERROR: ... lacks the "workflow" scope), instruct the user to refresh their CLI scope:gh auth refresh -h github.com -s workflow
6. Target Branch Correction & Merge Conflicts
- Dismissed Reviews Warning: Changing the target branch of a PR often causes GitHub to automatically dismiss existing approvals. Alert the user if the target branch changed so they can re-approve on GitHub.
- Merge Conflicts: If a PR has conflicts (
MERGEABLEisCONFLICTING), notify the user so the author can resolve them.