other versions
- bullseye-backports 2.18.1+dfsg1-1~bpo11+1
- testing 2.22.1+dfsg1-1
- unstable 2.23.0+dfsg1-1
GH-RUN-VIEW(1) | GitHub CLI manual | GH-RUN-VIEW(1) |
NAME¶
gh-run-view - View a summary of a workflow run
SYNOPSIS¶
gh run view [<run-id>] [flags]
OPTIONS¶
- --exit-status
- Exit with non-zero status if run failed
- -j, --job <string>
- View a specific job ID from a run
- -q, --jq <expression>
- Filter JSON output using a jq expression
- --json <fields>
- Output JSON with the specified fields
- --log
- View full log for either a run or specific job
- --log-failed
- View the log for any failed steps in a run or specific job
- -t, --template <string>
- Format JSON output using a Go template; see "gh help formatting"
- -v, --verbose
- Show job steps
- -w, --web
- Open run in the browser
OPTIONS INHERITED FROM PARENT COMMANDS¶
- -R, --repo <[HOST/]OWNER/REPO>
- Select another repository using the [HOST/]OWNER/REPO format
EXAMPLE¶
# 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 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"
SEE ALSO¶
Feb 2023 |