gh workflow run
gh workflow run [<workflow-id> | <workflow-name>] [flags]
Create a workflow_dispatch
event for a given workflow.
This command will trigger GitHub Actions to run a given workflow file. The given workflow file must
support an on.workflow_dispatch
trigger in order to be run in this way.
If the workflow file supports inputs, they can be specified in a few ways:
- Interactively
- Via
-f/--raw-field
or-F/--field
flags - As JSON, via standard input
Options
-F
,--field <key=value>
- Add a string parameter in key=value format, respecting @ syntax (see "gh help api").
-
--json
- Read workflow inputs as JSON via STDIN
-f
,--raw-field <key=value>
- Add a string parameter in key=value format
-r
,--ref <string>
- The branch or tag name which contains the version of the workflow file you'd like to run
Options inherited from parent commands
-R
,--repo <[HOST/]OWNER/REPO>
- Select another repository using the [HOST/]OWNER/REPO format