スキル一覧に戻る
tkersey

fin

by tkersey

public dot files

37🍴 0📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: fin description: "Finalize GitHub PRs: update the branch/PR, monitor CI until green, squash-merge, and clean up local/remote state. Use for requests like finish/land/close a PR, monitor checks, squash and cleanup."

Fin

Overview

Finish a PR end-to-end: push updates, watch checks, squash-merge, and clean up state.

Workflow

  1. Identify the PR and target branch.

    • Use gh pr view (current branch) or gh pr list to locate it.
  2. Update the PR.

    • Ensure the branch is up to date, run required checks, and push:
      • If using jujutsu: jj status, fix issues, then jj git push.
      • Otherwise: git status, fix issues, then git push.
  3. Monitor checks until green.

    • Use gh pr checks --watch or gh run watch <run-id>.
    • If checks fail, fix, push, and re-watch.
  4. Squash-merge the PR.

    • Prefer gh pr merge --squash --delete-branch unless repo policy dictates otherwise.
    • If approvals are missing, request them before merging.
  5. Clean up local state.

    • Fetch the updated mainline, switch to it, and delete the merged branch/bookmark.
    • With jujutsu: jj git fetch, move off the merged change, then jj bookmark delete <branch>.

Guardrails

  • Do not merge if required checks or approvals are missing.
  • Keep the merge method aligned with repo policy.
  • If any step is blocked, state the blocker and required next action.

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です