Forrest logo
back to context overview

gh-workflow

List of commands for gh-workflow:

  • gh-workflow:tldr:0194e gh-workflow: List workflow files (use `--all` to include disabled workflows).
    $ gh workflow list
    try on your machine
    explain this command
  • gh-workflow:tldr:24d24 gh-workflow: Interactively select a workflow to view the latest jobs for.
    $ gh workflow view
    try on your machine
    explain this command
  • gh-workflow:tldr:49e0d gh-workflow: Run a manual workflow using a specific branch or tag with JSON parameters from `stdin`.
    $ echo '${{"param1": "value1", "param2": "value2", ---}}' | gh workflow run ${select} --ref ${select1}
    try on your machine
    explain this command
  • gh-workflow:tldr:71ea7 gh-workflow: Run a manual workflow with parameters.
    $ gh workflow run ${select} ${--raw-field param1=value1 --raw-field param2=value2 ---}
    try on your machine
    explain this command
  • gh-workflow:tldr:97f6c gh-workflow: View a specific workflow in the default browser.
    $ gh workflow view ${select} --web
    try on your machine
    explain this command
  • gh-workflow:tldr:a3eb2 gh-workflow: Display the YAML definition for a specific Git branch or tag.
    $ gh workflow view ${select} --ref ${select1} --yaml
    try on your machine
    explain this command
  • gh-workflow:tldr:ba426 gh-workflow: Enable or disable a specific workflow.
    $ gh workflow ${select} ${select1}
    try on your machine
    explain this command
  • gh-workflow:tldr:cc2b4 gh-workflow: Display the YAML definition of a specific workflow.
    $ gh workflow view ${select} --yaml
    try on your machine
    explain this command
back to context overview