# gh pr checks

See CI status without the browser.

## Quick answer
```
gh pr checks 123 --watch
```

## Syntax
```
gh pr checks [<number> | <url> | <branch>] [flags]
```

## Examples

# Show checks for the current branch's PR
gh pr checks

# Watch checks update live until they finish
gh pr checks 123 --watch

# Watch and stop on the first failure
gh pr checks 123 --watch --fail-fast

# Only required checks
gh pr checks 123 --required

# Open the checks tab in the browser
gh pr checks 123 --web

## Key flags

  --watch	Watch checks until they all finish.
  --fail-fast	Exit as soon as a check fails (implies --watch).
  -i, --interval	Refresh interval in seconds when watching (default 10).
  --required	Only show required checks.
  --json	Output check data as JSON.
  -w, --web	Open the checks page on github.com.

Full guide: https://ghcli.com/gh-pr-checks.php
