Forrest logo
back to context overview

gh-run

List of commands for gh-run:

  • gh-run:tldr:30139 gh-run: Display information about a specific run.
    $ gh run view ${workflow_run_number}
    try on your machine
    explain this command
  • gh-run:tldr:423f9 gh-run: Interactively select a run to see information about the jobs.
    $ gh run view
    try on your machine
    explain this command
  • gh-run:tldr:44a5c gh-run: 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"}
    try on your machine
    explain this command
  • gh-run:tldr:57fe0 gh-run: Re-run a specific workflow.
    $ gh run rerun ${workflow_run_number}
    try on your machine
    explain this command
  • gh-run:tldr:9d4a2 gh-run: Display the log of a job.
    $ gh run view --job=${job_number} --log
    try on your machine
    explain this command
  • gh-run:tldr:e3ee5 gh-run: Display the jobs for a run and wait until it's done.
    $ gh run watch ${workflow_run_number}
    try on your machine
    explain this command
  • gh-run:tldr:e7d59 gh-run: Interactively select an active run and wait until it's done.
    $ gh run watch
    try on your machine
    explain this command
  • gh-run:tldr:ffb22 gh-run: Display information about the steps of a job.
    $ gh run view --job=${job_number}
    try on your machine
    explain this command
back to context overview