Skip to content

ghpr review status

ghpr review status - check the current review status of a pull request

Terminal window
ghpr review status <pr> [options]

Display the current review status of a pull request, including pending reviewers, submitted reviews, and whether there are unresolved comment threads. Supports multiple output formats for both human reading and automation.

ArgumentRequiredDescription
<pr>YesPull request number
OptionDescription
-t, --token <token>GitHub personal access token
-r, --repo <owner/repo>Repository in owner/repo format
-f, --format <format>Output format: text (default), json, markdown
CodeMeaning
0Success
3Error (API error, auth error, PR not found)

The command displays:

  • PR title, state, author, and branch info
  • Pending/requested reviewers
  • Submitted reviews with state and timestamp
  • Whether there are unresolved comment threads
  • Summary status: “Ready to merge” / “Changes requested” / “Awaiting review”
Terminal window
ghpr review status 123
Terminal window
ghpr review status 123 --format json
Terminal window
ghpr review status 123 -f markdown
Terminal window
ghpr review status 123 --repo myorg/myrepo
Terminal window
ghpr review status 123 --format json | jq '.reviews[] | select(.state == "APPROVED")'