rerun_workflow
Re-run a GitHub Actions workflow by specifying the repository owner, name, and workflow run ID, enabling quick retries and error resolution.
Instructions
Re-run a workflow run
Input Schema
Name | Required | Description | Default |
---|---|---|---|
owner | Yes | Repository owner | |
repo | Yes | Repository name | |
runId | Yes | The ID of the workflow run |
Input Schema (JSON Schema)
{
"properties": {
"owner": {
"description": "Repository owner",
"type": "string"
},
"repo": {
"description": "Repository name",
"type": "string"
},
"runId": {
"description": "The ID of the workflow run",
"type": "number"
}
},
"required": [
"owner",
"repo",
"runId"
],
"type": "object"
}