Forrest logo
back to the gh tool

gh-run:tldr:30139

gh-run: Display information about a specific run.
$ gh run view ${workflow_run_number}
try on your machine

The command "gh run view ${workflow_run_number}" is used to view the details and progress of a specific workflow run in GitHub Actions.

Here's a breakdown of the command:

  • "gh run view" is the command-line interface (CLI) command provided by GitHub CLI. It allows you to interact with GitHub Actions and view the details of workflow runs.
  • "${workflow_run_number}" is a placeholder or variable within the command. You need to replace "${workflow_run_number}" with the actual workflow run number you want to view.

When you execute this command with the correct workflow run number, it will fetch and display the detailed information about that specific workflow run. This information typically includes the status of the run, the jobs within the run, the timestamps of various events, and any related logs or artifacts generated during the run.

For example, if you want to view the details of workflow run number 123456789, you would replace "${workflow_run_number}" with "123456789" in the command:

gh run view 123456789

After executing the command, you will see the relevant information about the specified workflow run in your terminal or command prompt.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the gh tool