Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions specs/github/api.github.com.json
Original file line number Diff line number Diff line change
Expand Up @@ -19505,6 +19505,52 @@
}
}
},
"/repos/{owner}/{repo}/actions/runs/{run_id}/rerun-failed-jobs": {
"post": {
"summary": "Re-run failed jobs from a workflow run",
"description": "Re-run all of the failed jobs and their dependent jobs in a workflow run using the `id` of the workflow run. You must authenticate using an access token with the `repo` scope to use this endpoint.",
"tags": [
"actions"
],
"operationId": "actions/re-run-workflow-failed-jobs",
"externalDocs": {
"description": "API method documentation",
"url": "https://docs.github.com/rest/reference/actions#re-run-workflow-failed-jobs"
},
"parameters": [
{
"$ref": "#/components/parameters/owner"
},
{
"$ref": "#/components/parameters/repo"
},
{
"$ref": "#/components/parameters/run-id"
}
],
"responses": {
"201": {
"description": "Response",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
},
"additionalProperties": false
}
}
}
}
},
"x-github": {
"githubCloudOnly": false,
"enabledForGitHubApps": true,
"category": "actions",
"subcategory": "workflow-runs"
}
}
},
"/repos/{owner}/{repo}/actions/runs/{run_id}/timing": {
"get": {
"summary": "Get workflow run usage",
Expand Down