Skip to content

Instantly share code, notes, and snippets.

View bennyhartnett's full-sized avatar
💭
I may be slow to respond.

Benny Hartnett bennyhartnett

💭
I may be slow to respond.
View GitHub Profile
@bennyhartnett
bennyhartnett / close_all_codex_prs.ps1
Last active September 29, 2025 20:10
Close All (Limit 1000) Codex Tagged Pull Requests in a Repo
gh pr list --label codex --state open --json number --jq '.[].number' --limit 1000 |
ForEach-Object { gh pr close $_ }