GitHub
actions_run_trigger
Trigger GitHub Actions workflow operations, including running, re-running, cancelling workflow runs, and deleting workflow run logs.
Remote github
Other tools also called actions_run_trigger?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"ref": {
"type": "string",
"description": "The git reference for the workflow. The reference can be a branch or tag name. Required for 'run_workflow' method."
},
"repo": {
"type": "string",
"description": "Repository name"
},
"owner": {
"type": "string",
"description": "Repository owner"
},
"inputs": {
"type": "object",
"description": "Inputs the workflow accepts. Only used for 'run_workflow' method."
},
"method": {
"enum": [
"run_workflow",
"rerun_workflow_run",
"rerun_failed_jobs",
"cancel_workflow_run",
"delete_workflow_run_logs"
],
"type": "string",
"description": "The method to execute"
},
"run_id": {
"type": "number",
"description": "The ID of the workflow run. Required for all methods except 'run_workflow'."
},
"workflow_id": {
"type": "string",
"description": "The workflow ID (numeric) or workflow file name (e.g., main.yml, ci.yaml). Required for 'run_workflow' method."
}
}
}