GH-RUN-VIEW(1) GitHub CLI manual GH-RUN-VIEW(1)

gh-run-view - View a summary of a workflow run

gh run view [<run-id>] [flags]

View a summary of a workflow run.

This command does not support authenticating via fine grained PATs as it is not currently possible to create a PAT with the checks:read permission.

The attempt number of the workflow run
Exit with non-zero status if run failed
View a specific job ID from a run
Filter JSON output using a jq expression
Output JSON with the specified fields
View full log for either a run or specific job
View the log for any failed steps in a run or specific job
Format JSON output using a Go template; see "gh help formatting"
Show job steps
Open run in the browser

Select another repository using the [HOST/]OWNER/REPO format

# Interactively select a run to view, optionally selecting a single job
$ gh run view
# View a specific run
$ gh run view 12345
# View a specific run with specific attempt number
$ gh run view 12345 --attempt 3
# View a specific job within a run
$ gh run view --job 456789
# View the full log for a specific job
$ gh run view --log --job 456789
# Exit non-zero if a run failed
$ gh run view 0451 --exit-status && echo "run pending or passed"

gh-run(1)

Apr 2024