File tree Expand file tree Collapse file tree 2 files changed +74
-0
lines changed
scripts/update-endpoints/generated Expand file tree Collapse file tree 2 files changed +74
-0
lines changed Original file line number Diff line number Diff line change 1203812038 "responses": [],
1203912039 "renamed": null
1204012040 },
12041+ {
12042+ "name": "Delete workflow run logs",
12043+ "scope": "actions",
12044+ "id": "deleteWorkflowRunLogs",
12045+ "method": "DELETE",
12046+ "url": "/repos/{owner}/{repo}/actions/runs/{run_id}/logs",
12047+ "documentationUrl": "https://developer.github.com/v3/actions/workflow_runs/#delete-workflow-run-logs",
12048+ "parameters": [
12049+ {
12050+ "alias": null,
12051+ "allowNull": false,
12052+ "deprecated": null,
12053+ "description": "owner parameter",
12054+ "enum": null,
12055+ "name": "owner",
12056+ "type": "string",
12057+ "required": true
12058+ },
12059+ {
12060+ "alias": null,
12061+ "allowNull": false,
12062+ "deprecated": null,
12063+ "description": "repo parameter",
12064+ "enum": null,
12065+ "name": "repo",
12066+ "type": "string",
12067+ "required": true
12068+ },
12069+ {
12070+ "alias": null,
12071+ "allowNull": false,
12072+ "deprecated": null,
12073+ "description": "run_id parameter",
12074+ "enum": null,
12075+ "name": "run_id",
12076+ "type": "integer",
12077+ "required": true
12078+ }
12079+ ],
12080+ "previews": [],
12081+ "headers": [],
12082+ "responses": [],
12083+ "renamed": null
12084+ },
1204112085 {
1204212086 "name": "Re-run a workflow",
1204312087 "scope": "actions",
Original file line number Diff line number Diff line change @@ -314,6 +314,14 @@ export interface Endpoints {
314314 request: ActionsRemoveSelfHostedRunnerRequestOptions;
315315 response: OctokitResponse<any>;
316316 };
317+ /**
318+ * @see https://developer.github.com/v3/actions/workflow_runs/#delete-workflow-run-logs
319+ */
320+ "DELETE /repos/:owner/:repo/actions/runs/:run_id/logs": {
321+ parameters: ActionsDeleteWorkflowRunLogsEndpoint;
322+ request: ActionsDeleteWorkflowRunLogsRequestOptions;
323+ response: OctokitResponse<any>;
324+ };
317325 /**
318326 * @see https://developer.github.com/v3/actions/secrets/#delete-a-secret-from-a-repository
319327 */
@@ -16507,6 +16515,28 @@ type ActionsListWorkflowRunLogsRequestOptions = {
1650716515 request: RequestRequestOptions;
1650816516};
1650916517
16518+ type ActionsDeleteWorkflowRunLogsEndpoint = {
16519+ /**
16520+ * owner parameter
16521+ */
16522+ owner: string;
16523+ /**
16524+ * repo parameter
16525+ */
16526+ repo: string;
16527+ /**
16528+ * run_id parameter
16529+ */
16530+ run_id: number;
16531+ };
16532+
16533+ type ActionsDeleteWorkflowRunLogsRequestOptions = {
16534+ method: "DELETE";
16535+ url: "/repos/:owner/:repo/actions/runs/:run_id/logs";
16536+ headers: RequestHeaders;
16537+ request: RequestRequestOptions;
16538+ };
16539+
1651016540type ActionsReRunWorkflowEndpoint = {
1651116541 /**
1651216542 * owner parameter
You can’t perform that action at this time.
0 commit comments