pub async fn actions_slash_create_workflow_dispatch(
configuration: &Configuration,
owner: &str,
repo: &str,
workflow_id: ActionsGetWorkflowWorkflowIdParameter,
actions_create_workflow_dispatch_request: ActionsCreateWorkflowDispatchRequest,
) -> Result<(), Error<ActionsSlashCreateWorkflowDispatchError>>
Expand description
You can use this endpoint to manually trigger a GitHub Actions workflow run. You can replace workflow_id
with the workflow file name. For example, you could use main.yaml
. You must configure your GitHub Actions workflow to run when the workflow_dispatch
webhook event occurs. The inputs
are configured in the workflow file. For more information about how to configure the workflow_dispatch
event in the workflow file, see "Events that trigger workflows." OAuth tokens and personal access tokens (classic) need the repo
scope to use this endpoint.