List GitHub PRs in a formatted ASCII table. Supports filters like --state, --author, --label. Use for PR review workflows and sheriff duties.
Display GitHub pull requests in a clean ASCII box-drawing table format.
/pr-list [options]
--state open|closed|merged|all - Filter by state (default: open)--author <user> - Filter by author--label <label> - Filter by label (can repeat)--limit <n> - Max items to fetch (default: 30)--assignee <user> - Filter by assignee--draft - Show only drafts--all-reviews - Include PRs with CHANGES_REQUESTED (excluded by default)gh pr list with any provided options plus --json number,author,title,state,isDraft,reviewDecision--all-reviews specified)Use this exact table style with box-drawing characters:
┌─────┬────────────────────┬───────────────────────────────────────────────────┬────────┐
│ PR │ Author │ Title │ State │
├─────┼────────────────────┼───────────────────────────────────────────────────┼────────┤
│ 123 │ username │ feat: add new feature for something │ OPEN │
│ 122 │ another-user │ fix: resolve bug in component │ DRAFT │
└─────┴────────────────────┴───────────────────────────────────────────────────┴────────┘
┌ ┐ └ ┘ ├ ┤ ┬ ┴ ┼ │ ─# Default - open PRs (excludes CHANGES_REQUESTED)
gh pr list --json number,author,title,state,isDraft,reviewDecision
# With filters
gh pr list --state all --author boshu2 --json number,author,title,state,isDraft,reviewDecision