LinuxCommandLibrary

gh-run

View, run and watch recent GitHub Actions workflow runs.

TLDR

Interactively select a run to see information about the jobs

$ gh run view
copy


Display information about a specific run
$ gh run view [workflow_run_number]
copy


Display information about the steps of a job
$ gh run view --job=[job_number]
copy


Display the log of a job
$ gh run view --job=[job_number] --log
copy


Check a specific workflow and exit with a non-zero status if the run failed
$ gh run view [workflow_run_number] --exit-status && [echo "run pending or passed"]
copy


Interactively select an active run and wait until it's done
$ gh run watch
copy


Display the jobs for a run and wait until it's done
$ gh run watch [workflow_run_number]
copy


Re-run a specific workflow
$ gh run rerun [workflow_run_number]
copy

SYNOPSIS

gh run <command> [flags]

DESCRIPTION

List, view, and watch recent workflow runs from GitHub Actions.

COMMANDS

gh-run-cancel(1)

Cancel a workflow run

gh-run-download(1)

Download artifacts generated by a workflow run

gh-run-list(1)

List recent workflow runs

gh-run-rerun(1)

Rerun a failed run

gh-run-view(1)

View a summary of a workflow run

gh-run-watch(1)

Watch a run until it completes, showing its progress

OPTIONS

-R, --repo <[HOST/]OWNER/REPO>

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

SEE ALSO

gh(1)

Copied to clipboard