diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index bbdb63ef82..248f3ea9de 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -525,7 +525,7 @@ "/agents/repos/{owner}/{repo}/tasks": { "get": { "summary": "List tasks for repository", - "description": "Returns a list of tasks for a specific repository", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a list of tasks for a specific repository\n", "tags": [ "agent-tasks" ], @@ -618,9 +618,10 @@ "name": "is_archived", "in": "query", "schema": { - "type": "boolean" + "type": "boolean", + "default": false }, - "description": "Filter by archived status. When `true`, returns only archived tasks. When `false`, returns only non-archived tasks." + "description": "Filter by archived status. When `true`, returns only archived tasks. When `false` or omitted, returns only non-archived tasks. Defaults to `false`." }, { "name": "since", @@ -1185,7 +1186,7 @@ }, "post": { "summary": "Create a task", - "description": "Creates a new task for a repository", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates a new task for a repository\n", "tags": [ "agent-tasks" ], @@ -1245,7 +1246,7 @@ }, "model": { "type": "string", - "description": "Model identifier" + "description": "The model to use for this task. The allowed models may change over time and depend on the user's GitHub Copilot plan and organization policies. Currently supported values: `claude-sonnet-4.6`, `claude-opus-4.6`, `gpt-5.2-codex`, `gpt-5.3-codex`, `gpt-5.4`, `claude-sonnet-4.5`, `claude-opus-4.5`" }, "custom_agent": { "type": "string", @@ -1258,21 +1259,6 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" - }, - "event_type": { - "type": "string", - "description": "Type of event" - }, - "event_url": { - "type": "string", - "description": "URL of the triggering event" - }, - "event_identifiers": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Identifiers for tracking" } } }, @@ -1737,7 +1723,7 @@ "/agents/repos/{owner}/{repo}/tasks/{task_id}": { "get": { "summary": "Get a task by repo", - "description": "Returns a task by ID scoped to an owner/repo path", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a task by ID scoped to an owner/repo path\n", "tags": [ "agent-tasks" ], @@ -2496,7 +2482,7 @@ "/agents/tasks": { "get": { "summary": "List tasks", - "description": "Returns a list of tasks for the authenticated user", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a list of tasks for the authenticated user\n", "tags": [ "agent-tasks" ], @@ -2571,9 +2557,10 @@ "name": "is_archived", "in": "query", "schema": { - "type": "boolean" + "type": "boolean", + "default": false }, - "description": "Filter by archived status. When `true`, returns only archived tasks. When `false`, returns only non-archived tasks." + "description": "Filter by archived status. When `true`, returns only archived tasks. When `false` or omitted, returns only non-archived tasks. Defaults to `false`." }, { "name": "since", @@ -3076,7 +3063,7 @@ "/agents/tasks/{task_id}": { "get": { "summary": "Get a task by ID", - "description": "Returns a task by ID with its associated sessions", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a task by ID with its associated sessions\n", "tags": [ "agent-tasks" ], @@ -7086,6 +7073,9 @@ { "$ref": "#/components/parameters/enterprise" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -23230,6 +23220,9 @@ { "$ref": "#/components/parameters/org" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -50084,6 +50077,9 @@ { "$ref": "#/components/parameters/repo" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -69969,7 +69965,7 @@ "/search/code": { "get": { "summary": "Search code", - "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", + "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\n> [!NOTE]\n> `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", "tags": [ "search" ], @@ -111284,6 +111280,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -330052,6 +330057,14 @@ ] } }, + "dependabot-alert-comma-separated-classifications": { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, "dependabot-alert-comma-separated-states": { "name": "state", "in": "query", diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index 42f24b3587..6e3e180cd4 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -341,7 +341,11 @@ paths: "/agents/repos/{owner}/{repo}/tasks": get: summary: List tasks for repository - description: Returns a list of tasks for a specific repository + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a list of tasks for a specific repository tags: - agent-tasks operationId: agent-tasks/list-tasks-for-repo @@ -410,8 +414,10 @@ paths: in: query schema: type: boolean + default: false description: Filter by archived status. When `true`, returns only archived - tasks. When `false`, returns only non-archived tasks. + tasks. When `false` or omitted, returns only non-archived tasks. Defaults + to `false`. - name: since in: query schema: @@ -848,7 +854,11 @@ paths: description: URL to relevant API documentation post: summary: Create a task - description: Creates a new task for a repository + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Creates a new task for a repository tags: - agent-tasks operationId: agent-tasks/create-task @@ -894,7 +904,11 @@ paths: description: User's written prompt model: type: string - description: Model identifier + description: 'The model to use for this task. The allowed models + may change over time and depend on the user''s GitHub Copilot + plan and organization policies. Currently supported values: `claude-sonnet-4.6`, + `claude-opus-4.6`, `gpt-5.2-codex`, `gpt-5.3-codex`, `gpt-5.4`, + `claude-sonnet-4.5`, `claude-opus-4.5`' custom_agent: type: string description: Custom agent identifier @@ -904,17 +918,6 @@ paths: base_ref: type: string description: Base ref for new branch/PR - event_type: - type: string - description: Type of event - event_url: - type: string - description: URL of the triggering event - event_identifiers: - type: array - items: - type: string - description: Identifiers for tracking examples: default: value: @@ -1267,7 +1270,11 @@ paths: "/agents/repos/{owner}/{repo}/tasks/{task_id}": get: summary: Get a task by repo - description: Returns a task by ID scoped to an owner/repo path + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a task by ID scoped to an owner/repo path tags: - agent-tasks operationId: agent-tasks/get-task-by-repo-and-id @@ -1846,7 +1853,11 @@ paths: "/agents/tasks": get: summary: List tasks - description: Returns a list of tasks for the authenticated user + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a list of tasks for the authenticated user tags: - agent-tasks operationId: agent-tasks/list-tasks @@ -1903,8 +1914,10 @@ paths: in: query schema: type: boolean + default: false description: Filter by archived status. When `true`, returns only archived - tasks. When `false`, returns only non-archived tasks. + tasks. When `false` or omitted, returns only non-archived tasks. Defaults + to `false`. - name: since in: query schema: @@ -2289,7 +2302,11 @@ paths: "/agents/tasks/{task_id}": get: summary: Get a task by ID - description: Returns a task by ID with its associated sessions + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a task by ID with its associated sessions tags: - agent-tasks operationId: agent-tasks/get-task-by-id @@ -5261,6 +5278,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -17110,6 +17128,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -36669,6 +36688,7 @@ paths: parameters: - "$ref": "#/components/parameters/owner" - "$ref": "#/components/parameters/repo" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -50880,6 +50900,9 @@ paths: * You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is. + > [!NOTE] + > `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata. + This endpoint requires you to authenticate and limits you to 10 requests per minute. tags: - search @@ -80650,6 +80673,13 @@ components: - medium - high - critical + classification: + type: string + description: The classification of the advisory. + readOnly: true + enum: + - general + - malware cvss: type: object description: Details for the advisory pertaining to the Common Vulnerability @@ -246747,6 +246777,15 @@ components: format: date examples: - '2025-10-13' + dependabot-alert-comma-separated-classifications: + name: classification + in: query + description: |- + A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned. + + Can be: `malware`, `general` + schema: + type: string dependabot-alert-comma-separated-states: name: state in: query diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index 3b6cf00c41..bb01af643b 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.json @@ -525,7 +525,7 @@ "/agents/repos/{owner}/{repo}/tasks": { "get": { "summary": "List tasks for repository", - "description": "Returns a list of tasks for a specific repository", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a list of tasks for a specific repository\n", "tags": [ "agent-tasks" ], @@ -618,9 +618,10 @@ "name": "is_archived", "in": "query", "schema": { - "type": "boolean" + "type": "boolean", + "default": false }, - "description": "Filter by archived status. When `true`, returns only archived tasks. When `false`, returns only non-archived tasks." + "description": "Filter by archived status. When `true`, returns only archived tasks. When `false` or omitted, returns only non-archived tasks. Defaults to `false`." }, { "name": "since", @@ -1185,7 +1186,7 @@ }, "post": { "summary": "Create a task", - "description": "Creates a new task for a repository", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates a new task for a repository\n", "tags": [ "agent-tasks" ], @@ -1245,7 +1246,7 @@ }, "model": { "type": "string", - "description": "Model identifier" + "description": "The model to use for this task. The allowed models may change over time and depend on the user's GitHub Copilot plan and organization policies. Currently supported values: `claude-sonnet-4.6`, `claude-opus-4.6`, `gpt-5.2-codex`, `gpt-5.3-codex`, `gpt-5.4`, `claude-sonnet-4.5`, `claude-opus-4.5`" }, "custom_agent": { "type": "string", @@ -1258,21 +1259,6 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" - }, - "event_type": { - "type": "string", - "description": "Type of event" - }, - "event_url": { - "type": "string", - "description": "URL of the triggering event" - }, - "event_identifiers": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Identifiers for tracking" } } }, @@ -1737,7 +1723,7 @@ "/agents/repos/{owner}/{repo}/tasks/{task_id}": { "get": { "summary": "Get a task by repo", - "description": "Returns a task by ID scoped to an owner/repo path", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a task by ID scoped to an owner/repo path\n", "tags": [ "agent-tasks" ], @@ -2496,7 +2482,7 @@ "/agents/tasks": { "get": { "summary": "List tasks", - "description": "Returns a list of tasks for the authenticated user", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a list of tasks for the authenticated user\n", "tags": [ "agent-tasks" ], @@ -2571,9 +2557,10 @@ "name": "is_archived", "in": "query", "schema": { - "type": "boolean" + "type": "boolean", + "default": false }, - "description": "Filter by archived status. When `true`, returns only archived tasks. When `false`, returns only non-archived tasks." + "description": "Filter by archived status. When `true`, returns only archived tasks. When `false` or omitted, returns only non-archived tasks. Defaults to `false`." }, { "name": "since", @@ -3076,7 +3063,7 @@ "/agents/tasks/{task_id}": { "get": { "summary": "Get a task by ID", - "description": "Returns a task by ID with its associated sessions", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a task by ID with its associated sessions\n", "tags": [ "agent-tasks" ], @@ -7086,6 +7073,9 @@ { "$ref": "#/components/parameters/enterprise" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -23188,6 +23178,9 @@ { "$ref": "#/components/parameters/org" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -50004,6 +49997,9 @@ { "$ref": "#/components/parameters/repo" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -69875,7 +69871,7 @@ "/search/code": { "get": { "summary": "Search code", - "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", + "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\n> [!NOTE]\n> `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", "tags": [ "search" ], @@ -111094,6 +111090,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "$ref": "#/components/schemas/cvss-severities" }, @@ -329206,6 +329211,14 @@ ] } }, + "dependabot-alert-comma-separated-classifications": { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, "dependabot-alert-comma-separated-states": { "name": "state", "in": "query", diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index cf57d4f219..fbd750ff3c 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml @@ -341,7 +341,11 @@ paths: "/agents/repos/{owner}/{repo}/tasks": get: summary: List tasks for repository - description: Returns a list of tasks for a specific repository + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a list of tasks for a specific repository tags: - agent-tasks operationId: agent-tasks/list-tasks-for-repo @@ -410,8 +414,10 @@ paths: in: query schema: type: boolean + default: false description: Filter by archived status. When `true`, returns only archived - tasks. When `false`, returns only non-archived tasks. + tasks. When `false` or omitted, returns only non-archived tasks. Defaults + to `false`. - name: since in: query schema: @@ -848,7 +854,11 @@ paths: description: URL to relevant API documentation post: summary: Create a task - description: Creates a new task for a repository + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Creates a new task for a repository tags: - agent-tasks operationId: agent-tasks/create-task @@ -894,7 +904,11 @@ paths: description: User's written prompt model: type: string - description: Model identifier + description: 'The model to use for this task. The allowed models + may change over time and depend on the user''s GitHub Copilot + plan and organization policies. Currently supported values: `claude-sonnet-4.6`, + `claude-opus-4.6`, `gpt-5.2-codex`, `gpt-5.3-codex`, `gpt-5.4`, + `claude-sonnet-4.5`, `claude-opus-4.5`' custom_agent: type: string description: Custom agent identifier @@ -904,17 +918,6 @@ paths: base_ref: type: string description: Base ref for new branch/PR - event_type: - type: string - description: Type of event - event_url: - type: string - description: URL of the triggering event - event_identifiers: - type: array - items: - type: string - description: Identifiers for tracking examples: default: value: @@ -1267,7 +1270,11 @@ paths: "/agents/repos/{owner}/{repo}/tasks/{task_id}": get: summary: Get a task by repo - description: Returns a task by ID scoped to an owner/repo path + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a task by ID scoped to an owner/repo path tags: - agent-tasks operationId: agent-tasks/get-task-by-repo-and-id @@ -1846,7 +1853,11 @@ paths: "/agents/tasks": get: summary: List tasks - description: Returns a list of tasks for the authenticated user + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a list of tasks for the authenticated user tags: - agent-tasks operationId: agent-tasks/list-tasks @@ -1903,8 +1914,10 @@ paths: in: query schema: type: boolean + default: false description: Filter by archived status. When `true`, returns only archived - tasks. When `false`, returns only non-archived tasks. + tasks. When `false` or omitted, returns only non-archived tasks. Defaults + to `false`. - name: since in: query schema: @@ -2289,7 +2302,11 @@ paths: "/agents/tasks/{task_id}": get: summary: Get a task by ID - description: Returns a task by ID with its associated sessions + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a task by ID with its associated sessions tags: - agent-tasks operationId: agent-tasks/get-task-by-id @@ -5261,6 +5278,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -17076,6 +17094,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -36606,6 +36625,7 @@ paths: parameters: - "$ref": "#/components/parameters/owner" - "$ref": "#/components/parameters/repo" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -50803,6 +50823,9 @@ paths: * You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is. + > [!NOTE] + > `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata. + This endpoint requires you to authenticate and limits you to 10 requests per minute. tags: - search @@ -80497,6 +80520,13 @@ components: - medium - high - critical + classification: + type: string + description: The classification of the advisory. + readOnly: true + enum: + - general + - malware cvss_severities: "$ref": "#/components/schemas/cvss-severities" epss: @@ -246051,6 +246081,15 @@ components: format: date examples: - '2025-10-13' + dependabot-alert-comma-separated-classifications: + name: classification + in: query + description: |- + A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned. + + Can be: `malware`, `general` + schema: + type: string dependabot-alert-comma-separated-states: name: state in: query diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index 6f1efe21c7..fd584fd940 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -525,7 +525,7 @@ "/agents/repos/{owner}/{repo}/tasks": { "get": { "summary": "List tasks for repository", - "description": "Returns a list of tasks for a specific repository", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a list of tasks for a specific repository\n", "tags": [ "agent-tasks" ], @@ -618,9 +618,10 @@ "name": "is_archived", "in": "query", "schema": { - "type": "boolean" + "type": "boolean", + "default": false }, - "description": "Filter by archived status. When `true`, returns only archived tasks. When `false`, returns only non-archived tasks." + "description": "Filter by archived status. When `true`, returns only archived tasks. When `false` or omitted, returns only non-archived tasks. Defaults to `false`." }, { "name": "since", @@ -1185,7 +1186,7 @@ }, "post": { "summary": "Create a task", - "description": "Creates a new task for a repository", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates a new task for a repository\n", "tags": [ "agent-tasks" ], @@ -1245,7 +1246,7 @@ }, "model": { "type": "string", - "description": "Model identifier" + "description": "The model to use for this task. The allowed models may change over time and depend on the user's GitHub Copilot plan and organization policies. Currently supported values: `claude-sonnet-4.6`, `claude-opus-4.6`, `gpt-5.2-codex`, `gpt-5.3-codex`, `gpt-5.4`, `claude-sonnet-4.5`, `claude-opus-4.5`" }, "custom_agent": { "type": "string", @@ -1258,21 +1259,6 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" - }, - "event_type": { - "type": "string", - "description": "Type of event" - }, - "event_url": { - "type": "string", - "description": "URL of the triggering event" - }, - "event_identifiers": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Identifiers for tracking" } } }, @@ -1737,7 +1723,7 @@ "/agents/repos/{owner}/{repo}/tasks/{task_id}": { "get": { "summary": "Get a task by repo", - "description": "Returns a task by ID scoped to an owner/repo path", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a task by ID scoped to an owner/repo path\n", "tags": [ "agent-tasks" ], @@ -2496,7 +2482,7 @@ "/agents/tasks": { "get": { "summary": "List tasks", - "description": "Returns a list of tasks for the authenticated user", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a list of tasks for the authenticated user\n", "tags": [ "agent-tasks" ], @@ -2571,9 +2557,10 @@ "name": "is_archived", "in": "query", "schema": { - "type": "boolean" + "type": "boolean", + "default": false }, - "description": "Filter by archived status. When `true`, returns only archived tasks. When `false`, returns only non-archived tasks." + "description": "Filter by archived status. When `true`, returns only archived tasks. When `false` or omitted, returns only non-archived tasks. Defaults to `false`." }, { "name": "since", @@ -3076,7 +3063,7 @@ "/agents/tasks/{task_id}": { "get": { "summary": "Get a task by ID", - "description": "Returns a task by ID with its associated sessions", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a task by ID with its associated sessions\n", "tags": [ "agent-tasks" ], @@ -7100,6 +7087,9 @@ { "$ref": "#/components/parameters/enterprise" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -23332,6 +23322,9 @@ { "$ref": "#/components/parameters/org" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -50348,6 +50341,9 @@ { "$ref": "#/components/parameters/repo" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -70271,7 +70267,7 @@ "/search/code": { "get": { "summary": "Search code", - "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", + "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\n> [!NOTE]\n> `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", "tags": [ "search" ], @@ -111865,6 +111861,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -331960,6 +331965,14 @@ ] } }, + "dependabot-alert-comma-separated-classifications": { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, "dependabot-alert-comma-separated-states": { "name": "state", "in": "query", diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 642fe567cb..08227f8e0f 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -341,7 +341,11 @@ paths: "/agents/repos/{owner}/{repo}/tasks": get: summary: List tasks for repository - description: Returns a list of tasks for a specific repository + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a list of tasks for a specific repository tags: - agent-tasks operationId: agent-tasks/list-tasks-for-repo @@ -410,8 +414,10 @@ paths: in: query schema: type: boolean + default: false description: Filter by archived status. When `true`, returns only archived - tasks. When `false`, returns only non-archived tasks. + tasks. When `false` or omitted, returns only non-archived tasks. Defaults + to `false`. - name: since in: query schema: @@ -848,7 +854,11 @@ paths: description: URL to relevant API documentation post: summary: Create a task - description: Creates a new task for a repository + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Creates a new task for a repository tags: - agent-tasks operationId: agent-tasks/create-task @@ -894,7 +904,11 @@ paths: description: User's written prompt model: type: string - description: Model identifier + description: 'The model to use for this task. The allowed models + may change over time and depend on the user''s GitHub Copilot + plan and organization policies. Currently supported values: `claude-sonnet-4.6`, + `claude-opus-4.6`, `gpt-5.2-codex`, `gpt-5.3-codex`, `gpt-5.4`, + `claude-sonnet-4.5`, `claude-opus-4.5`' custom_agent: type: string description: Custom agent identifier @@ -904,17 +918,6 @@ paths: base_ref: type: string description: Base ref for new branch/PR - event_type: - type: string - description: Type of event - event_url: - type: string - description: URL of the triggering event - event_identifiers: - type: array - items: - type: string - description: Identifiers for tracking examples: default: value: @@ -1267,7 +1270,11 @@ paths: "/agents/repos/{owner}/{repo}/tasks/{task_id}": get: summary: Get a task by repo - description: Returns a task by ID scoped to an owner/repo path + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a task by ID scoped to an owner/repo path tags: - agent-tasks operationId: agent-tasks/get-task-by-repo-and-id @@ -1846,7 +1853,11 @@ paths: "/agents/tasks": get: summary: List tasks - description: Returns a list of tasks for the authenticated user + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a list of tasks for the authenticated user tags: - agent-tasks operationId: agent-tasks/list-tasks @@ -1903,8 +1914,10 @@ paths: in: query schema: type: boolean + default: false description: Filter by archived status. When `true`, returns only archived - tasks. When `false`, returns only non-archived tasks. + tasks. When `false` or omitted, returns only non-archived tasks. Defaults + to `false`. - name: since in: query schema: @@ -2289,7 +2302,11 @@ paths: "/agents/tasks/{task_id}": get: summary: Get a task by ID - description: Returns a task by ID with its associated sessions + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a task by ID with its associated sessions tags: - agent-tasks operationId: agent-tasks/get-task-by-id @@ -5269,6 +5286,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -17164,6 +17182,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -36834,6 +36853,7 @@ paths: parameters: - "$ref": "#/components/parameters/owner" - "$ref": "#/components/parameters/repo" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -51065,6 +51085,9 @@ paths: * You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is. + > [!NOTE] + > `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata. + This endpoint requires you to authenticate and limits you to 10 requests per minute. tags: - search @@ -81026,6 +81049,13 @@ components: - medium - high - critical + classification: + type: string + description: The classification of the advisory. + readOnly: true + enum: + - general + - malware cvss: type: object description: Details for the advisory pertaining to the Common Vulnerability @@ -247982,6 +248012,15 @@ components: format: date examples: - '2025-10-13' + dependabot-alert-comma-separated-classifications: + name: classification + in: query + description: |- + A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned. + + Can be: `malware`, `general` + schema: + type: string dependabot-alert-comma-separated-states: name: state in: query diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 5b4e0783a5..1b19ee226c 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -2223,7 +2223,7 @@ "/agents/repos/{owner}/{repo}/tasks": { "get": { "summary": "List tasks for repository", - "description": "Returns a list of tasks for a specific repository", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a list of tasks for a specific repository\n", "tags": [ "agent-tasks" ], @@ -2316,9 +2316,10 @@ "name": "is_archived", "in": "query", "schema": { - "type": "boolean" + "type": "boolean", + "default": false }, - "description": "Filter by archived status. When `true`, returns only archived tasks. When `false`, returns only non-archived tasks." + "description": "Filter by archived status. When `true`, returns only archived tasks. When `false` or omitted, returns only non-archived tasks. Defaults to `false`." }, { "name": "since", @@ -2883,7 +2884,7 @@ }, "post": { "summary": "Create a task", - "description": "Creates a new task for a repository", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates a new task for a repository\n", "tags": [ "agent-tasks" ], @@ -2943,7 +2944,7 @@ }, "model": { "type": "string", - "description": "Model identifier" + "description": "The model to use for this task. The allowed models may change over time and depend on the user's GitHub Copilot plan and organization policies. Currently supported values: `claude-sonnet-4.6`, `claude-opus-4.6`, `gpt-5.2-codex`, `gpt-5.3-codex`, `gpt-5.4`, `claude-sonnet-4.5`, `claude-opus-4.5`" }, "custom_agent": { "type": "string", @@ -2956,21 +2957,6 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" - }, - "event_type": { - "type": "string", - "description": "Type of event" - }, - "event_url": { - "type": "string", - "description": "URL of the triggering event" - }, - "event_identifiers": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Identifiers for tracking" } } }, @@ -3435,7 +3421,7 @@ "/agents/repos/{owner}/{repo}/tasks/{task_id}": { "get": { "summary": "Get a task by repo", - "description": "Returns a task by ID scoped to an owner/repo path", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a task by ID scoped to an owner/repo path\n", "tags": [ "agent-tasks" ], @@ -4194,7 +4180,7 @@ "/agents/tasks": { "get": { "summary": "List tasks", - "description": "Returns a list of tasks for the authenticated user", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a list of tasks for the authenticated user\n", "tags": [ "agent-tasks" ], @@ -4269,9 +4255,10 @@ "name": "is_archived", "in": "query", "schema": { - "type": "boolean" + "type": "boolean", + "default": false }, - "description": "Filter by archived status. When `true`, returns only archived tasks. When `false`, returns only non-archived tasks." + "description": "Filter by archived status. When `true`, returns only archived tasks. When `false` or omitted, returns only non-archived tasks. Defaults to `false`." }, { "name": "since", @@ -4774,7 +4761,7 @@ "/agents/tasks/{task_id}": { "get": { "summary": "Get a task by ID", - "description": "Returns a task by ID with its associated sessions", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a task by ID with its associated sessions\n", "tags": [ "agent-tasks" ], @@ -27995,6 +27982,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -28337,6 +28332,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -133448,6 +133452,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -133815,6 +133827,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -381799,6 +381820,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -382149,6 +382178,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -383637,6 +383675,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -384954,6 +385001,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -661058,7 +661114,7 @@ "/search/code": { "get": { "summary": "Search code", - "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", + "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\n> [!NOTE]\n> `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", "tags": [ "search" ], @@ -922352,6 +922408,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -925337,6 +925402,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -928322,6 +928396,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -931307,6 +931390,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -934292,6 +934384,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -937277,6 +937378,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -940262,6 +940372,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -943247,6 +943366,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 55d624dafb..f898702c09 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -907,7 +907,7 @@ paths: - subscriptions_url - type - url - type: &313 + type: &314 type: string description: The type of credit the user is receiving. enum: @@ -1073,7 +1073,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &630 + - &631 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1166,7 +1166,11 @@ paths: "/agents/repos/{owner}/{repo}/tasks": get: summary: List tasks for repository - description: Returns a list of tasks for a specific repository + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a list of tasks for a specific repository tags: - agent-tasks operationId: agent-tasks/list-tasks-for-repo @@ -1235,8 +1239,10 @@ paths: in: query schema: type: boolean + default: false description: Filter by archived status. When `true`, returns only archived - tasks. When `false`, returns only non-archived tasks. + tasks. When `false` or omitted, returns only non-archived tasks. Defaults + to `false`. - name: since in: query schema: @@ -1673,7 +1679,11 @@ paths: description: URL to relevant API documentation post: summary: Create a task - description: Creates a new task for a repository + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Creates a new task for a repository tags: - agent-tasks operationId: agent-tasks/create-task @@ -1719,7 +1729,11 @@ paths: description: User's written prompt model: type: string - description: Model identifier + description: 'The model to use for this task. The allowed models + may change over time and depend on the user''s GitHub Copilot + plan and organization policies. Currently supported values: `claude-sonnet-4.6`, + `claude-opus-4.6`, `gpt-5.2-codex`, `gpt-5.3-codex`, `gpt-5.4`, + `claude-sonnet-4.5`, `claude-opus-4.5`' custom_agent: type: string description: Custom agent identifier @@ -1729,17 +1743,6 @@ paths: base_ref: type: string description: Base ref for new branch/PR - event_type: - type: string - description: Type of event - event_url: - type: string - description: URL of the triggering event - event_identifiers: - type: array - items: - type: string - description: Identifiers for tracking examples: default: value: @@ -2092,7 +2095,11 @@ paths: "/agents/repos/{owner}/{repo}/tasks/{task_id}": get: summary: Get a task by repo - description: Returns a task by ID scoped to an owner/repo path + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a task by ID scoped to an owner/repo path tags: - agent-tasks operationId: agent-tasks/get-task-by-repo-and-id @@ -2671,7 +2678,11 @@ paths: "/agents/tasks": get: summary: List tasks - description: Returns a list of tasks for the authenticated user + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a list of tasks for the authenticated user tags: - agent-tasks operationId: agent-tasks/list-tasks @@ -2728,8 +2739,10 @@ paths: in: query schema: type: boolean + default: false description: Filter by archived status. When `true`, returns only archived - tasks. When `false`, returns only non-archived tasks. + tasks. When `false` or omitted, returns only non-archived tasks. Defaults + to `false`. - name: since in: query schema: @@ -3114,7 +3127,11 @@ paths: "/agents/tasks/{task_id}": get: summary: Get a task by ID - description: Returns a task by ID with its associated sessions + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a task by ID with its associated sessions tags: - agent-tasks operationId: agent-tasks/get-task-by-id @@ -4173,7 +4190,7 @@ paths: schema: type: integer default: 30 - - &203 + - &204 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -4182,7 +4199,7 @@ paths: required: false schema: type: string - - &204 + - &205 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4202,7 +4219,7 @@ paths: application/json: schema: type: array - items: &205 + items: &206 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4298,7 +4315,7 @@ paths: - installation_id - repository_id examples: - default: &206 + default: &207 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4433,7 +4450,7 @@ paths: description: Response content: application/json: - schema: &207 + schema: &208 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4568,7 +4585,7 @@ paths: - request - response examples: - default: &208 + default: &209 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -12055,6 +12072,15 @@ paths: parameters: - *38 - &189 + name: classification + in: query + description: |- + A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned. + + Can be: `malware`, `general` + schema: + type: string + - &190 name: state in: query description: |- @@ -12063,7 +12089,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &190 + - &191 name: severity in: query description: |- @@ -12072,7 +12098,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &191 + - &192 name: ecosystem in: query description: |- @@ -12081,14 +12107,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &192 + - &193 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &193 + - &194 name: epss_percentage in: query description: |- @@ -12100,7 +12126,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &470 + - &471 name: has in: query description: |- @@ -12114,7 +12140,7 @@ paths: type: string enum: - patch - - &194 + - &195 name: assignee in: query description: |- @@ -12123,7 +12149,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &195 + - &196 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -12133,7 +12159,7 @@ paths: enum: - development - runtime - - &196 + - &197 name: sort in: query description: |- @@ -12159,7 +12185,7 @@ paths: application/json: schema: type: array - items: &197 + items: &198 type: object description: A Dependabot alert. properties: @@ -12230,7 +12256,7 @@ paths: - transitive - inconclusive - - security_advisory: &471 + security_advisory: &472 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12313,6 +12339,13 @@ paths: - medium - high - critical + classification: + type: string + description: The classification of the advisory. + readOnly: true + enum: + - general + - malware cvss: type: object description: Details for the advisory pertaining to the @@ -12498,7 +12531,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &472 + auto_dismissed_at: &473 type: - string - 'null' @@ -12506,7 +12539,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &473 + dismissal_request: &474 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12569,7 +12602,7 @@ paths: - repository additionalProperties: false examples: - default: &198 + default: &199 value: - number: 2 state: dismissed @@ -13933,7 +13966,7 @@ paths: properties: action: type: string - discussion: &721 + discussion: &722 title: Discussion description: A Discussion in a repository. type: object @@ -14434,7 +14467,7 @@ paths: milestone: anyOf: - type: 'null' - - &265 + - &266 title: Milestone description: A collection of related issues and pull requests. @@ -14606,7 +14639,7 @@ paths: timeline_url: type: string format: uri - type: &229 + type: &230 title: Issue Type description: The type of issue. type: @@ -14717,7 +14750,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &642 + sub_issues_summary: &643 title: Sub-issues Summary type: object properties: @@ -14801,7 +14834,7 @@ paths: pin: anyOf: - type: 'null' - - &543 + - &544 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -14828,7 +14861,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &643 + issue_dependencies_summary: &644 title: Issue Dependencies Summary type: object properties: @@ -14847,7 +14880,7 @@ paths: - total_blocking issue_field_values: type: array - items: &528 + items: &529 title: Issue Field Value description: A value assigned to an issue field type: object @@ -15628,7 +15661,7 @@ paths: type: string release: allOf: - - &575 + - &576 title: Release description: A release. type: object @@ -15710,7 +15743,7 @@ paths: author: *4 assets: type: array - items: &576 + items: &577 title: Release Asset description: Data related to a release. type: object @@ -16313,7 +16346,7 @@ paths: url: type: string format: uri - user: &649 + user: &650 title: Public User description: Public User type: object @@ -18210,7 +18243,7 @@ paths: - closed - all default: open - - &232 + - &233 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -18261,7 +18294,7 @@ paths: type: array items: *81 examples: - default: &233 + default: &234 value: - id: 1 node_id: MDU6SXNzdWUx @@ -19673,14 +19706,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &324 + - &325 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &325 + - &326 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -19742,7 +19775,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &328 + '301': &329 description: Moved permanently content: application/json: @@ -19764,7 +19797,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &551 + - &552 name: all description: If `true`, show notifications marked as read. in: query @@ -19772,7 +19805,7 @@ paths: schema: type: boolean default: false - - &552 + - &553 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -19782,7 +19815,7 @@ paths: type: boolean default: false - *86 - - &553 + - &554 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -20164,7 +20197,7 @@ paths: type: boolean examples: - false - security_and_analysis: &280 + security_and_analysis: &281 type: - object - 'null' @@ -20368,7 +20401,7 @@ paths: - url - subscription_url examples: - default: &554 + default: &555 value: - id: '1' repository: @@ -21938,7 +21971,7 @@ paths: required: false schema: type: string - - &698 + - &699 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -22084,7 +22117,7 @@ paths: parameters: - *73 - *115 - - &699 + - &700 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -22196,7 +22229,7 @@ paths: - *115 - *117 - *116 - - &700 + - &701 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22204,7 +22237,7 @@ paths: schema: type: string - *118 - - &701 + - &702 name: sku description: The SKU to query for usage. in: query @@ -23183,7 +23216,7 @@ paths: type: integer repository_cache_usages: type: array - items: &335 + items: &336 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -24545,7 +24578,7 @@ paths: - all - local_only - selected - selected_actions_url: &341 + selected_actions_url: &342 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -24628,7 +24661,7 @@ paths: description: Response content: application/json: - schema: &345 + schema: &346 type: object properties: days: @@ -24670,7 +24703,7 @@ paths: required: true content: application/json: - schema: &346 + schema: &347 type: object properties: days: @@ -24727,7 +24760,7 @@ paths: required: - approval_policy examples: - default: &347 + default: &348 value: approval_policy: first_time_contributors '404': *6 @@ -24786,7 +24819,7 @@ paths: description: Response content: application/json: - schema: &348 + schema: &349 type: object required: - run_workflows_from_fork_pull_requests @@ -24840,7 +24873,7 @@ paths: required: true content: application/json: - schema: &349 + schema: &350 type: object required: - run_workflows_from_fork_pull_requests @@ -25475,7 +25508,7 @@ paths: description: Response content: application/json: - schema: &350 + schema: &351 type: object properties: default_workflow_permissions: &145 @@ -25526,7 +25559,7 @@ paths: required: false content: application/json: - schema: &351 + schema: &352 type: object properties: default_workflow_permissions: *145 @@ -26666,7 +26699,7 @@ paths: application/json: schema: type: array - items: &352 + items: &353 title: Runner Application description: Runner Application type: object @@ -26691,7 +26724,7 @@ paths: - download_url - filename examples: - default: &353 + default: &354 value: - os: osx architecture: x64 @@ -26777,7 +26810,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &354 + '201': &355 description: Response content: application/json: @@ -26892,7 +26925,7 @@ paths: - token - expires_at examples: - default: &355 + default: &356 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -26931,7 +26964,7 @@ paths: application/json: schema: *156 examples: - default: &356 + default: &357 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -26965,7 +26998,7 @@ paths: application/json: schema: *154 examples: - default: &357 + default: &358 value: id: 23 name: MBP @@ -27191,7 +27224,7 @@ paths: - *73 - *153 responses: - '200': &358 + '200': &359 description: Response content: application/json: @@ -27248,7 +27281,7 @@ paths: parameters: - *73 - *153 - - &359 + - &360 name: name description: The name of a self-hosted runner's custom label. in: path @@ -27380,7 +27413,7 @@ paths: description: Response content: application/json: - schema: &371 + schema: &372 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -27415,7 +27448,7 @@ paths: - key_id - key examples: - default: &372 + default: &373 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27828,7 +27861,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *73 - - &340 + - &341 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -29049,12 +29082,12 @@ paths: required: - subject_digests examples: - default: &680 + default: &681 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &681 + withPredicateType: &682 value: subject_digests: - sha256:abc123 @@ -29113,7 +29146,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &682 + default: &683 value: attestations_subject_digests: - sha256:abc: @@ -29464,7 +29497,7 @@ paths: initiator: type: string examples: - default: &385 + default: &386 value: attestations: - bundle: @@ -29817,7 +29850,7 @@ paths: parent: anyOf: - type: 'null' - - &244 + - &245 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -30420,7 +30453,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *73 - - &409 + - &410 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -30430,7 +30463,7 @@ paths: schema: &177 type: string description: The name of the tool used to generate the code scanning analysis. - - &410 + - &411 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -30454,7 +30487,7 @@ paths: be returned. in: query required: false - schema: &412 + schema: &413 type: string description: State of a code scanning alert. enum: @@ -30477,7 +30510,7 @@ paths: be returned. in: query required: false - schema: &413 + schema: &414 type: string description: Severity of a code scanning alert. enum: @@ -30511,7 +30544,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: &414 + instances_url: &415 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -30533,7 +30566,7 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: &415 + dismissed_reason: &416 type: - string - 'null' @@ -30544,14 +30577,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &416 + dismissed_comment: &417 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &417 + rule: &418 type: object properties: id: @@ -30612,7 +30645,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &418 + tool: &419 type: object properties: name: *177 @@ -30623,26 +30656,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *178 - most_recent_instance: &419 + most_recent_instance: &420 type: object properties: - ref: &411 + ref: &412 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &429 + analysis_key: &430 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &430 + environment: &431 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &431 + category: &432 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -30662,7 +30695,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &432 + location: &433 type: object description: Describe a region within a file for the alert. properties: @@ -30683,7 +30716,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &433 + items: &434 type: - string - 'null' @@ -31973,7 +32006,7 @@ paths: type: integer codespaces: type: array - items: &234 + items: &235 type: object title: Codespace description: A codespace. @@ -32008,7 +32041,7 @@ paths: machine: anyOf: - type: 'null' - - &445 + - &446 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -32295,7 +32328,7 @@ paths: - pulls_url - recent_folders examples: - default: &235 + default: &236 value: total_count: 3 codespaces: @@ -32960,7 +32993,7 @@ paths: - updated_at - visibility examples: - default: &446 + default: &447 value: total_count: 2 secrets: @@ -32998,7 +33031,7 @@ paths: description: Response content: application/json: - schema: &447 + schema: &448 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -33033,7 +33066,7 @@ paths: - key_id - key examples: - default: &448 + default: &449 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -33065,7 +33098,7 @@ paths: application/json: schema: *186 examples: - default: &450 + default: &451 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -33532,7 +33565,7 @@ paths: currently being billed. seats: type: array - items: &237 + items: &238 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -34503,7 +34536,7 @@ paths: application/json: schema: type: array - items: &317 + items: &318 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -34818,7 +34851,7 @@ paths: - date additionalProperties: true examples: - default: &318 + default: &319 value: - date: '2024-06-24' total_active_users: 24 @@ -34920,7 +34953,7 @@ paths: '500': *53 '403': *27 '404': *6 - '422': &319 + '422': &320 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -35105,6 +35138,7 @@ paths: - *191 - *192 - *193 + - *194 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -35134,7 +35168,7 @@ paths: enum: - patch - deployment - - *194 + - *195 - name: runtime_risk in: query description: |- @@ -35143,8 +35177,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *195 - *196 + - *197 - *59 - *45 - *46 @@ -35156,9 +35190,9 @@ paths: application/json: schema: type: array - items: *197 + items: *198 examples: - default: *198 + default: *199 '304': *35 '400': *14 '403': *27 @@ -35202,7 +35236,7 @@ paths: type: integer secrets: type: array - items: &199 + items: &200 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -35281,7 +35315,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &477 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -35300,7 +35334,7 @@ paths: - key_id - key examples: - default: &477 + default: &478 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -35330,7 +35364,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *200 examples: default: value: @@ -35629,7 +35663,7 @@ paths: application/json: schema: type: array - items: &246 + items: &247 title: Package description: A software package type: object @@ -35700,7 +35734,7 @@ paths: - created_at - updated_at examples: - default: &247 + default: &248 value: - id: 197 name: hello_docker @@ -35870,7 +35904,7 @@ paths: application/json: schema: type: array - items: &223 + items: &224 title: Organization Invitation description: Organization Invitation type: object @@ -35924,7 +35958,7 @@ paths: - invitation_teams_url - node_id examples: - default: &224 + default: &225 value: - id: 1 login: monalisa @@ -35991,7 +36025,7 @@ paths: application/json: schema: type: array - items: &200 + items: &201 title: Org Hook description: Org Hook type: object @@ -36176,9 +36210,9 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: - default: &201 + default: &202 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -36226,7 +36260,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *73 - - &202 + - &203 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -36239,9 +36273,9 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: - default: *201 + default: *202 '404': *6 x-github: githubCloudOnly: false @@ -36269,7 +36303,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *73 - - *202 + - *203 requestBody: required: false content: @@ -36315,7 +36349,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: default: value: @@ -36357,7 +36391,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *73 - - *202 + - *203 responses: '204': description: Response @@ -36385,7 +36419,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *73 - - *202 + - *203 responses: '200': description: Response @@ -36416,7 +36450,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *73 - - *202 + - *203 requestBody: required: false content: @@ -36467,10 +36501,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *73 - - *202 - - *17 - *203 + - *17 - *204 + - *205 responses: '200': description: Response @@ -36478,9 +36512,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *206 + default: *207 '400': *14 '422': *15 x-github: @@ -36506,16 +36540,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *73 - - *202 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *207 + schema: *208 examples: - default: *208 + default: *209 '400': *14 '422': *15 x-github: @@ -36541,7 +36575,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *73 - - *202 + - *203 - *16 responses: '202': *37 @@ -36571,7 +36605,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *73 - - *202 + - *203 responses: '204': description: Response @@ -36594,7 +36628,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *73 - - &213 + - &214 name: actor_type in: path description: The type of the actor @@ -36607,14 +36641,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &214 + - &215 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &209 + - &210 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -36622,7 +36656,7 @@ paths: required: true schema: type: string - - &210 + - &211 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -36717,12 +36751,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *73 - - *209 - *210 + - *211 - *19 - *17 - *59 - - &219 + - &220 name: sort description: The property to sort the results by. in: query @@ -36801,14 +36835,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *73 - - *209 - *210 + - *211 responses: '200': description: Response content: application/json: - schema: &211 + schema: &212 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -36824,7 +36858,7 @@ paths: type: integer format: int64 examples: - default: &212 + default: &213 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -36845,23 +36879,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *73 - - &215 + - &216 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *209 - *210 + - *211 responses: '200': description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: *212 + default: *213 x-github: enabledForGitHubApps: true category: orgs @@ -36880,18 +36914,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *73 - - *209 - *210 - - *213 + - *211 - *214 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: *212 + default: *213 x-github: enabledForGitHubApps: true category: orgs @@ -36909,9 +36943,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *73 - - *209 - *210 - - &216 + - *211 + - &217 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -36924,7 +36958,7 @@ paths: description: Response content: application/json: - schema: &217 + schema: &218 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -36940,7 +36974,7 @@ paths: type: integer format: int64 examples: - default: &218 + default: &219 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -36977,18 +37011,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *73 - - *215 - - *209 - - *210 - *216 + - *210 + - *211 + - *217 responses: '200': description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 x-github: enabledForGitHubApps: true category: orgs @@ -37006,19 +37040,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *73 - - *213 - *214 - - *209 + - *215 - *210 - - *216 + - *211 + - *217 responses: '200': description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 x-github: enabledForGitHubApps: true category: orgs @@ -37036,13 +37070,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *73 - - *215 - - *209 + - *216 - *210 + - *211 - *19 - *17 - *59 - - *219 + - *220 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -37126,7 +37160,7 @@ paths: application/json: schema: *20 examples: - default: &515 + default: &516 value: id: 1 account: @@ -37292,12 +37326,12 @@ paths: application/json: schema: anyOf: - - &221 + - &222 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &220 + limit: &221 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -37325,7 +37359,7 @@ paths: properties: {} additionalProperties: false examples: - default: &222 + default: &223 value: limit: collaborators_only origin: organization @@ -37354,13 +37388,13 @@ paths: required: true content: application/json: - schema: &516 + schema: &517 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *220 + limit: *221 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -37385,9 +37419,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *222 + default: *223 '422': *15 x-github: githubCloudOnly: false @@ -37463,9 +37497,9 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 '404': *6 @@ -37542,7 +37576,7 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: default: value: @@ -37597,7 +37631,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *73 - - &225 + - &226 name: invitation_id description: The unique identifier of the invitation. in: path @@ -37628,7 +37662,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *73 - - *225 + - *226 - *17 - *19 responses: @@ -37640,7 +37674,7 @@ paths: type: array items: *187 examples: - default: &245 + default: &246 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -37683,7 +37717,7 @@ paths: application/json: schema: type: array - items: &226 + items: &227 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -37926,9 +37960,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: - default: &227 + default: &228 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -37984,7 +38018,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *73 - - &228 + - &229 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -38085,9 +38119,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: - default: *227 + default: *228 '404': *6 '422': *7 x-github: @@ -38112,7 +38146,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *73 - - *228 + - *229 responses: '204': *183 '404': *6 @@ -38142,7 +38176,7 @@ paths: application/json: schema: type: array - items: *229 + items: *230 examples: default: value: @@ -38230,9 +38264,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: &230 + default: &231 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -38265,7 +38299,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *73 - - &231 + - &232 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -38321,9 +38355,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 '404': *6 '422': *7 x-github: @@ -38348,7 +38382,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *73 - - *231 + - *232 responses: '204': description: Response @@ -38411,7 +38445,7 @@ paths: - closed - all default: open - - *232 + - *233 - name: type description: Can be the name of an issue type. in: query @@ -38442,7 +38476,7 @@ paths: type: array items: *81 examples: - default: *233 + default: *234 headers: Link: *65 '404': *6 @@ -38601,9 +38635,9 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '304': *35 '500': *53 '401': *23 @@ -38630,7 +38664,7 @@ paths: parameters: - *73 - *69 - - &236 + - &237 name: codespace_name in: path required: true @@ -38665,15 +38699,15 @@ paths: parameters: - *73 - *69 - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: &444 + default: &445 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -38853,7 +38887,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *237 + schema: *238 examples: default: value: @@ -38929,7 +38963,7 @@ paths: description: Response content: application/json: - schema: &238 + schema: &239 title: Org Membership description: Org Membership type: object @@ -38998,7 +39032,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &239 + response-if-user-has-an-active-admin-membership-with-organization: &240 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -39099,9 +39133,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - response-if-user-already-had-membership-with-organization: *239 + response-if-user-already-had-membership-with-organization: *240 '422': *15 '403': *27 x-github: @@ -39173,7 +39207,7 @@ paths: application/json: schema: type: array - items: &240 + items: &241 title: Migration description: A migration. type: object @@ -39511,7 +39545,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -39690,7 +39724,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *73 - - &241 + - &242 name: migration_id description: The unique identifier of the migration. in: path @@ -39718,7 +39752,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -39888,7 +39922,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *73 - - *241 + - *242 responses: '302': description: Response @@ -39910,7 +39944,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *73 - - *241 + - *242 responses: '204': description: Response @@ -39934,8 +39968,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *73 - - *241 - - &663 + - *242 + - &664 name: repo_name description: repo_name parameter in: path @@ -39963,7 +39997,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *73 - - *241 + - *242 - *17 - *19 responses: @@ -39975,7 +40009,7 @@ paths: type: array items: *152 examples: - default: &252 + default: &253 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -40130,7 +40164,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &243 + items: &244 title: Organization Role description: Organization roles type: object @@ -40307,7 +40341,7 @@ paths: parameters: - *73 - *75 - - &242 + - &243 name: role_id description: The unique identifier of the role. in: path @@ -40344,7 +40378,7 @@ paths: parameters: - *73 - *75 - - *242 + - *243 responses: '204': description: Response @@ -40397,7 +40431,7 @@ paths: parameters: - *73 - *69 - - *242 + - *243 responses: '204': description: Response @@ -40429,7 +40463,7 @@ paths: parameters: - *73 - *69 - - *242 + - *243 responses: '204': description: Response @@ -40458,13 +40492,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *73 - - *242 + - *243 responses: '200': description: Response content: application/json: - schema: *243 + schema: *244 examples: default: value: @@ -40515,7 +40549,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *73 - - *242 + - *243 - *17 - *19 responses: @@ -40594,7 +40628,7 @@ paths: parent: anyOf: - type: 'null' - - *244 + - *245 type: description: The ownership type of the team type: string @@ -40627,7 +40661,7 @@ paths: - type - parent examples: - default: *245 + default: *246 headers: Link: *65 '404': @@ -40657,7 +40691,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *73 - - *242 + - *243 - *17 - *19 responses: @@ -40686,7 +40720,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *244 + items: *245 name: type: - string @@ -40996,7 +41030,7 @@ paths: - nuget - container - *73 - - &664 + - &665 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -41032,12 +41066,12 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *247 + default: *248 '403': *27 '401': *23 - '400': &666 + '400': &667 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -41059,7 +41093,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &248 + - &249 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -41077,7 +41111,7 @@ paths: - docker - nuget - container - - &249 + - &250 name: package_name description: The name of the package. in: path @@ -41090,7 +41124,7 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: default: value: @@ -41142,8 +41176,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *248 - *249 + - *250 - *73 responses: '204': @@ -41176,8 +41210,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - name: token description: package token @@ -41210,8 +41244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *248 - *249 + - *250 - *73 - *19 - *17 @@ -41232,7 +41266,7 @@ paths: application/json: schema: type: array - items: &250 + items: &251 title: Package Version description: A version of a software package type: object @@ -41367,10 +41401,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - &251 + - &252 name: package_version_id description: Unique identifier of the package version. in: path @@ -41382,7 +41416,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -41418,10 +41452,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - *251 + - *252 responses: '204': description: Response @@ -41453,10 +41487,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - *251 + - *252 responses: '204': description: Response @@ -41486,7 +41520,7 @@ paths: - *73 - *17 - *19 - - &253 + - &254 name: sort description: The property by which to sort the results. in: query @@ -41497,7 +41531,7 @@ paths: - created_at default: created_at - *59 - - &254 + - &255 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -41509,7 +41543,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &255 + - &256 name: repository description: The name of the repository to use to filter the results. in: query @@ -41518,7 +41552,7 @@ paths: type: string examples: - Hello-World - - &256 + - &257 name: permission description: The permission to use to filter the results. in: query @@ -41527,7 +41561,7 @@ paths: type: string examples: - issues_read - - &257 + - &258 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -41537,7 +41571,7 @@ paths: schema: type: string format: date-time - - &258 + - &259 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -41547,7 +41581,7 @@ paths: schema: type: string format: date-time - - &259 + - &260 name: token_id description: The ID of the token in: query @@ -41866,7 +41900,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -41892,14 +41926,14 @@ paths: - *73 - *17 - *19 - - *253 - - *59 - *254 + - *59 - *255 - *256 - *257 - *258 - *259 + - *260 responses: '500': *53 '422': *15 @@ -42183,7 +42217,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -42225,7 +42259,7 @@ paths: type: integer configurations: type: array - items: &260 + items: &261 title: Organization private registry description: Private registry configuration for an organization type: object @@ -42659,7 +42693,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &261 + org-private-registry-with-selected-visibility: &262 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -42757,9 +42791,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *260 + schema: *261 examples: - default: *261 + default: *262 '404': *6 x-github: githubCloudOnly: false @@ -42987,7 +43021,7 @@ paths: application/json: schema: type: array - items: &262 + items: &263 title: Projects v2 Project description: A projects v2 project type: object @@ -43061,7 +43095,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &749 + - &750 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -43146,7 +43180,7 @@ paths: - deleted_at - deleted_by examples: - default: &263 + default: &264 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -43249,7 +43283,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &264 + - &265 name: project_number description: The project's number. in: path @@ -43262,9 +43296,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -43287,7 +43321,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true description: Details of the draft item to create in the project. @@ -43321,7 +43355,7 @@ paths: description: Response content: application/json: - schema: &269 + schema: &270 title: Projects v2 Item description: An item belonging to a project type: object @@ -43335,7 +43369,7 @@ paths: content: oneOf: - *81 - - &459 + - &460 title: Pull Request Simple description: Pull Request Simple type: object @@ -43455,7 +43489,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 active_lock_reason: type: - string @@ -43548,7 +43582,7 @@ paths: _links: type: object properties: - comments: &266 + comments: &267 title: Link description: Hypermedia Link type: object @@ -43557,13 +43591,13 @@ paths: type: string required: - href - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + commits: *267 + statuses: *267 + html: *267 + issue: *267 + review_comments: *267 + review_comment: *267 + self: *267 required: - comments - commits @@ -43574,7 +43608,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: &561 + auto_merge: &562 title: Auto merge description: The status of auto merging a pull request. type: @@ -43676,7 +43710,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &268 + content_type: &269 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -43720,7 +43754,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &270 + draft_issue: &271 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -43794,7 +43828,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *264 + - *265 - *73 - *17 - *45 @@ -43806,7 +43840,7 @@ paths: application/json: schema: type: array - items: &267 + items: &268 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -43959,7 +43993,7 @@ paths: - updated_at - project_url examples: - default: &685 + default: &686 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -44089,7 +44123,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *264 + - *265 - *73 requestBody: required: true @@ -44136,7 +44170,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &686 + items: &687 type: object properties: name: @@ -44173,7 +44207,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &687 + iteration_configuration: &688 type: object description: The configuration for iteration fields. properties: @@ -44223,7 +44257,7 @@ paths: value: name: Due date data_type: date - single_select_field: &688 + single_select_field: &689 summary: Create a single select field value: name: Priority @@ -44250,7 +44284,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &689 + iteration_field: &690 summary: Create an iteration field value: name: Sprint @@ -44274,9 +44308,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *267 + schema: *268 examples: - text_field: &690 + text_field: &691 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -44285,7 +44319,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &691 + number_field: &692 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -44294,7 +44328,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &692 + date_field: &693 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -44303,7 +44337,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &693 + single_select_field: &694 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -44337,7 +44371,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &694 + iteration_field: &695 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -44382,8 +44416,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *264 - - &695 + - *265 + - &696 name: field_id description: The unique identifier of the field. in: path @@ -44396,9 +44430,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: - default: &696 + default: &697 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -44454,7 +44488,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *264 + - *265 - *73 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -44487,7 +44521,7 @@ paths: application/json: schema: type: array - items: &271 + items: &272 title: Projects v2 Item description: An item belonging to a project type: object @@ -44504,7 +44538,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *268 + content_type: *269 content: type: - object @@ -44554,7 +44588,7 @@ paths: - updated_at - archived_at examples: - default: &272 + default: &273 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -45252,7 +45286,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -45322,22 +45356,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *271 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *271 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *271 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *271 '304': *35 '403': *27 '401': *23 @@ -45357,9 +45391,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *264 + - *265 - *73 - - &273 + - &274 name: item_id description: The unique identifier of the project item. in: path @@ -45385,9 +45419,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -45408,9 +45442,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *264 + - *265 - *73 - - *273 + - *274 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -45483,13 +45517,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *273 + number_field: *273 + date_field: *273 + single_select_field: *273 + iteration_field: *273 '401': *23 '403': *27 '404': *6 @@ -45509,9 +45543,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *264 + - *265 - *73 - - *273 + - *274 responses: '204': description: Response @@ -45535,7 +45569,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true content: @@ -45609,7 +45643,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &677 + schema: &678 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -45713,7 +45747,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &274 + value: &275 value: id: 1 number: 1 @@ -45759,10 +45793,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *274 + value: *275 roadmap_view: summary: Response for creating a roadmap view - value: *274 + value: *275 '304': *35 '403': *27 '401': *23 @@ -45790,9 +45824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *264 + - *265 - *73 - - &697 + - &698 name: view_number description: The number that identifies the project view. in: path @@ -45824,9 +45858,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -45859,7 +45893,7 @@ paths: application/json: schema: type: array - items: &275 + items: &276 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -45937,7 +45971,7 @@ paths: - property_name - value_type examples: - default: &276 + default: &277 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -45997,7 +46031,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *275 + items: *276 minItems: 1 maxItems: 100 required: @@ -46027,9 +46061,9 @@ paths: application/json: schema: type: array - items: *275 + items: *276 examples: - default: *276 + default: *277 '403': *27 '404': *6 x-github: @@ -46051,7 +46085,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *73 - - &277 + - &278 name: custom_property_name description: The custom property name in: path @@ -46063,9 +46097,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: &278 + default: &279 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -46100,7 +46134,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *73 - - *277 + - *278 requestBody: required: true content: @@ -46180,9 +46214,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: *278 + default: *279 '403': *27 '404': *6 x-github: @@ -46206,7 +46240,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *73 - - *277 + - *278 responses: '204': *183 '403': *27 @@ -46270,7 +46304,7 @@ paths: - octocat/Hello-World properties: type: array - items: &279 + items: &280 title: Custom Property Value description: Custom property name and associated value type: object @@ -46360,7 +46394,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *279 + items: *280 required: - repository_names - properties @@ -46552,7 +46586,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -46755,7 +46789,7 @@ paths: description: Response content: application/json: - schema: &327 + schema: &328 title: Full Repository description: Full Repository type: object @@ -47233,7 +47267,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &464 + code_of_conduct: &465 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -47263,7 +47297,7 @@ paths: - key - name - html_url - security_and_analysis: *280 + security_and_analysis: *281 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -47347,7 +47381,7 @@ paths: - network_count - subscribers_count examples: - default: &329 + default: &330 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -47868,7 +47902,7 @@ paths: - *73 - *17 - *19 - - &583 + - &584 name: targets description: | A comma-separated list of rule targets to filter by. @@ -47887,7 +47921,7 @@ paths: application/json: schema: type: array - items: &307 + items: &308 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -47922,7 +47956,7 @@ paths: source: type: string description: The name of the source - enforcement: &283 + enforcement: &284 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -47935,7 +47969,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &284 + items: &285 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -48006,7 +48040,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &281 + - &282 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -48030,7 +48064,7 @@ paths: match. items: type: string - - &285 + - &286 title: Organization ruleset conditions type: object description: |- @@ -48044,7 +48078,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -48078,7 +48112,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -48100,7 +48134,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -48113,7 +48147,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &282 + items: &283 title: Repository ruleset property targeting definition type: object @@ -48146,7 +48180,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *282 + items: *283 required: - repository_property type: @@ -48154,12 +48188,12 @@ paths: - object rules: type: array - items: &584 + items: &585 title: Repository Rule type: object description: A repository rule. oneOf: - - &286 + - &287 title: creation description: Only allow users with bypass permission to create matching refs. @@ -48171,7 +48205,7 @@ paths: type: string enum: - creation - - &287 + - &288 title: update description: Only allow users with bypass permission to update matching refs. @@ -48192,7 +48226,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &288 + - &289 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -48204,7 +48238,7 @@ paths: type: string enum: - deletion - - &289 + - &290 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -48216,7 +48250,7 @@ paths: type: string enum: - required_linear_history - - &582 + - &583 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -48294,7 +48328,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &290 + - &291 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -48318,7 +48352,7 @@ paths: type: string required: - required_deployment_environments - - &291 + - &292 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -48330,7 +48364,7 @@ paths: type: string enum: - required_signatures - - &292 + - &293 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -48436,7 +48470,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &293 + - &294 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -48484,7 +48518,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &294 + - &295 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -48496,7 +48530,7 @@ paths: type: string enum: - non_fast_forward - - &295 + - &296 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -48533,7 +48567,7 @@ paths: required: - operator - pattern - - &296 + - &297 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -48570,7 +48604,7 @@ paths: required: - operator - pattern - - &297 + - &298 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -48607,7 +48641,7 @@ paths: required: - operator - pattern - - &298 + - &299 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -48644,7 +48678,7 @@ paths: required: - operator - pattern - - &299 + - &300 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -48681,7 +48715,7 @@ paths: required: - operator - pattern - - &300 + - &301 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -48706,7 +48740,7 @@ paths: type: string required: - restricted_file_paths - - &301 + - &302 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -48730,7 +48764,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &302 + - &303 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -48753,7 +48787,7 @@ paths: type: string required: - restricted_file_extensions - - &303 + - &304 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -48778,7 +48812,7 @@ paths: maximum: 100 required: - max_file_size - - &304 + - &305 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -48828,7 +48862,7 @@ paths: - repository_id required: - workflows - - &305 + - &306 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -48889,7 +48923,7 @@ paths: - tool required: - code_scanning_tools - - &306 + - &307 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -48988,21 +49022,20 @@ paths: - push - repository default: branch - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *285 + items: *285 + conditions: *286 rules: type: array description: An array of rules within the ruleset. - items: &309 + items: &310 title: Repository Rule type: object description: A repository rule. oneOf: - - *286 - *287 - *288 - *289 @@ -49023,6 +49056,7 @@ paths: - *304 - *305 - *306 + - *307 required: - name - enforcement @@ -49060,9 +49094,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &308 + default: &309 value: id: 21 name: super cool ruleset @@ -49118,7 +49152,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *73 - - &585 + - &586 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -49133,7 +49167,7 @@ paths: in: query schema: type: string - - &586 + - &587 name: time_period description: |- The time period to filter by. @@ -49149,14 +49183,14 @@ paths: - week - month default: day - - &587 + - &588 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &588 + - &589 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -49176,7 +49210,7 @@ paths: description: Response content: application/json: - schema: &589 + schema: &590 title: Rule Suites description: Response type: array @@ -49232,7 +49266,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &590 + default: &591 value: - id: 21 actor_id: 12 @@ -49276,7 +49310,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *73 - - &591 + - &592 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -49292,7 +49326,7 @@ paths: description: Response content: application/json: - schema: &592 + schema: &593 title: Rule Suite description: Response type: object @@ -49399,7 +49433,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &593 + default: &594 value: id: 21 actor_id: 12 @@ -49472,9 +49506,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *308 + default: *309 '404': *6 '500': *53 put: @@ -49518,16 +49552,16 @@ paths: - tag - push - repository - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *285 + items: *285 + conditions: *286 rules: description: An array of rules within the ruleset. type: array - items: *309 + items: *310 examples: default: value: @@ -49562,9 +49596,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *308 + default: *309 '404': *6 '422': *15 '500': *53 @@ -49622,7 +49656,7 @@ paths: application/json: schema: type: array - items: &310 + items: &311 title: Ruleset version type: object description: The historical version of a ruleset @@ -49646,7 +49680,7 @@ paths: type: string format: date-time examples: - default: &595 + default: &596 value: - version_id: 3 actor: @@ -49699,9 +49733,9 @@ paths: description: Response content: application/json: - schema: &596 + schema: &597 allOf: - - *310 + - *311 - type: object required: - state @@ -49771,7 +49805,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *73 - - &597 + - &598 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -49782,7 +49816,7 @@ paths: enum: - open - resolved - - &598 + - &599 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -49792,7 +49826,7 @@ paths: required: false schema: type: string - - &599 + - &600 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -49801,7 +49835,7 @@ paths: required: false schema: type: string - - &600 + - &601 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -49820,7 +49854,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &601 + - &602 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -49835,7 +49869,7 @@ paths: - *59 - *19 - *17 - - &602 + - &603 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -49845,7 +49879,7 @@ paths: required: false schema: type: string - - &603 + - &604 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -49855,7 +49889,7 @@ paths: required: false schema: type: string - - &604 + - &605 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -49864,7 +49898,7 @@ paths: required: false schema: type: string - - &605 + - &606 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -49873,7 +49907,7 @@ paths: schema: type: boolean default: false - - &606 + - &607 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -49882,7 +49916,7 @@ paths: schema: type: boolean default: false - - &607 + - &608 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -49914,14 +49948,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &608 + state: &609 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &609 + resolution: &610 type: - string - 'null' @@ -50028,14 +50062,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &610 + - &611 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &612 + - &613 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -50099,7 +50133,7 @@ paths: - blob_url - commit_sha - commit_url - - &613 + - &614 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -50160,7 +50194,7 @@ paths: - page_url - commit_sha - commit_url - - &614 + - &615 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -50182,7 +50216,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &615 + - &616 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -50204,7 +50238,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &616 + - &617 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -50226,7 +50260,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &617 + - &618 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -50241,7 +50275,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &618 + - &619 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -50256,7 +50290,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &619 + - &620 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -50271,7 +50305,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &620 + - &621 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -50293,7 +50327,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &621 + - &622 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -50315,7 +50349,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &622 + - &623 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -50337,7 +50371,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &623 + - &624 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -50359,7 +50393,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &624 + - &625 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull @@ -50620,7 +50654,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &312 + pattern_config_version: &313 type: - string - 'null' @@ -50630,7 +50664,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &311 + items: &312 type: object properties: token_type: @@ -50699,7 +50733,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *311 + items: *312 examples: default: value: @@ -50756,7 +50790,7 @@ paths: schema: type: object properties: - pattern_config_version: *312 + pattern_config_version: *313 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -50782,7 +50816,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *312 + custom_pattern_version: *313 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -50880,7 +50914,7 @@ paths: application/json: schema: type: array - items: &628 + items: &629 description: A repository security advisory. type: object properties: @@ -51124,7 +51158,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 credits_detailed: type: - array @@ -51135,7 +51169,7 @@ paths: type: object properties: user: *4 - type: *313 + type: *314 state: type: string description: The state of the user's acceptance of the @@ -51199,7 +51233,7 @@ paths: - private_fork additionalProperties: false examples: - default: &629 + default: &630 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -51586,7 +51620,7 @@ paths: application/json: schema: type: array - items: *244 + items: *245 examples: default: value: @@ -51941,7 +51975,7 @@ paths: type: integer network_configurations: type: array - items: &314 + items: &315 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -52094,9 +52128,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: &315 + default: &316 value: id: 123456789ABCDEF name: My network configuration @@ -52125,7 +52159,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *73 - - &316 + - &317 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -52137,9 +52171,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: *315 + default: *316 headers: Link: *65 x-github: @@ -52161,7 +52195,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *73 - - *316 + - *317 requestBody: required: true content: @@ -52214,9 +52248,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: *315 + default: *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52236,7 +52270,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *73 - - *316 + - *317 responses: '204': description: Response @@ -52381,13 +52415,13 @@ paths: application/json: schema: type: array - items: *317 + items: *318 examples: - default: *318 + default: *319 '500': *53 '403': *27 '404': *6 - '422': *319 + '422': *320 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52429,7 +52463,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 headers: Link: *65 '403': *27 @@ -52523,7 +52557,7 @@ paths: description: Response content: application/json: - schema: &320 + schema: &321 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -52597,7 +52631,7 @@ paths: parent: anyOf: - type: 'null' - - *244 + - *245 members_count: type: integer examples: @@ -52922,7 +52956,7 @@ paths: - repos_count - organization examples: - default: &321 + default: &322 value: id: 1 node_id: MDQ6VGVhbTE= @@ -52999,9 +53033,9 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 x-github: githubCloudOnly: false @@ -53086,16 +53120,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '201': description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 '422': *15 '403': *27 @@ -53125,7 +53159,7 @@ paths: responses: '204': description: Response - '422': &322 + '422': &323 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -53159,12 +53193,12 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 - '422': *322 + '422': *323 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53246,7 +53280,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &324 title: Team Membership description: Team Membership type: object @@ -53274,7 +53308,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &645 + response-if-user-is-a-team-maintainer: &646 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -53337,9 +53371,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: &646 + response-if-users-membership-with-team-is-now-pending: &647 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -53415,7 +53449,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -53446,14 +53480,14 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &647 + schema: &648 title: Team Repository description: A team's access to a repository. type: object @@ -54096,8 +54130,8 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 requestBody: required: false content: @@ -54144,8 +54178,8 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 responses: '204': description: Response @@ -54182,7 +54216,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: &648 + response-if-child-teams-exist: &649 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -54336,7 +54370,7 @@ paths: resources: type: object properties: - core: &326 + core: &327 title: Rate Limit type: object properties: @@ -54353,21 +54387,21 @@ paths: - remaining - reset - used - graphql: *326 - search: *326 - code_search: *326 - source_import: *326 - integration_manifest: *326 - code_scanning_upload: *326 - actions_runner_registration: *326 - scim: *326 - dependency_snapshots: *326 - dependency_sbom: *326 - code_scanning_autofix: *326 + graphql: *327 + search: *327 + code_search: *327 + source_import: *327 + integration_manifest: *327 + code_scanning_upload: *327 + actions_runner_registration: *327 + scim: *327 + dependency_snapshots: *327 + dependency_sbom: *327 + code_scanning_autofix: *327 required: - core - search - rate: *326 + rate: *327 required: - rate - resources @@ -54472,14 +54506,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *327 + schema: *328 examples: default-response: summary: Default response @@ -54984,7 +55018,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *328 + '301': *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55002,8 +55036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -55295,10 +55329,10 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 - '307': &330 + default: *330 + '307': &331 description: Temporary Redirect content: application/json: @@ -55327,8 +55361,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -55350,7 +55384,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *330 + '307': *331 '404': *6 '409': *52 x-github: @@ -55374,11 +55408,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 - - &363 + - &364 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -55401,7 +55435,7 @@ paths: type: integer artifacts: type: array - items: &331 + items: &332 title: Artifact description: An artifact type: object @@ -55496,7 +55530,7 @@ paths: - expires_at - updated_at examples: - default: &364 + default: &365 value: total_count: 2 artifacts: @@ -55557,9 +55591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *324 - *325 - - &332 + - *326 + - &333 name: artifact_id description: The unique identifier of the artifact. in: path @@ -55571,7 +55605,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -55609,9 +55643,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *324 - *325 - - *332 + - *326 + - *333 responses: '204': description: Response @@ -55635,9 +55669,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *324 - *325 - - *332 + - *326 + - *333 - name: archive_format in: path required: true @@ -55651,7 +55685,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &519 + '410': &520 description: Gone content: application/json: @@ -55676,14 +55710,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &333 + schema: &334 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -55717,13 +55751,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *333 + schema: *334 examples: selected_actions: *40 responses: @@ -55752,14 +55786,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &334 + schema: &335 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -55793,13 +55827,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *334 + schema: *335 examples: selected_actions: *42 responses: @@ -55830,14 +55864,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *335 + schema: *336 examples: default: value: @@ -55863,11 +55897,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 - - &336 + - &337 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -55901,7 +55935,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &338 title: Repository actions caches description: Repository actions caches type: object @@ -55951,7 +55985,7 @@ paths: - total_count - actions_caches examples: - default: &338 + default: &339 value: total_count: 1 actions_caches: @@ -55983,23 +56017,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *324 - *325 + - *326 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *336 + - *337 responses: '200': description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56019,8 +56053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *324 - *325 + - *326 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -56051,9 +56085,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *324 - *325 - - &339 + - *326 + - &340 name: job_id description: The unique identifier of the job. in: path @@ -56065,7 +56099,7 @@ paths: description: Response content: application/json: - schema: &367 + schema: &368 title: Job description: Information of a job execution in a workflow run type: object @@ -56412,9 +56446,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *324 - *325 - - *339 + - *326 + - *340 responses: '302': description: Response @@ -56442,9 +56476,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *324 - *325 - - *339 + - *326 + - *340 requestBody: required: false content: @@ -56490,8 +56524,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Status response @@ -56541,8 +56575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -56605,8 +56639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -56624,7 +56658,7 @@ paths: type: integer secrets: type: array - items: &369 + items: &370 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -56645,7 +56679,7 @@ paths: - created_at - updated_at examples: - default: &370 + default: &371 value: total_count: 2 secrets: @@ -56678,9 +56712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *324 - *325 - - *340 + - *326 + - *341 - *19 responses: '200': @@ -56697,7 +56731,7 @@ paths: type: integer variables: type: array - items: &373 + items: &374 title: Actions Variable type: object properties: @@ -56731,7 +56765,7 @@ paths: - created_at - updated_at examples: - default: &374 + default: &375 value: total_count: 2 variables: @@ -56764,8 +56798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -56774,11 +56808,11 @@ paths: schema: type: object properties: - enabled: &342 + enabled: &343 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *137 - selected_actions_url: *341 + selected_actions_url: *342 sha_pinning_required: *138 required: - enabled @@ -56807,8 +56841,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -56819,7 +56853,7 @@ paths: schema: type: object properties: - enabled: *342 + enabled: *343 allowed_actions: *137 sha_pinning_required: *138 required: @@ -56851,14 +56885,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &343 + schema: &344 type: object properties: access_level: @@ -56875,7 +56909,7 @@ paths: required: - access_level examples: - default: &344 + default: &345 value: access_level: organization x-github: @@ -56899,15 +56933,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *343 + schema: *344 examples: - default: *344 + default: *345 responses: '204': description: Response @@ -56931,14 +56965,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *345 + schema: *346 examples: default: value: @@ -56962,8 +56996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Empty response for successful settings update @@ -56973,7 +57007,7 @@ paths: required: true content: application/json: - schema: *346 + schema: *347 examples: default: summary: Set retention days @@ -56997,8 +57031,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -57006,7 +57040,7 @@ paths: application/json: schema: *139 examples: - default: *347 + default: *348 '404': *6 x-github: enabledForGitHubApps: true @@ -57025,8 +57059,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -57060,14 +57094,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *348 + schema: *349 examples: default: *140 '403': *27 @@ -57089,13 +57123,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *349 + schema: *350 examples: default: *140 responses: @@ -57121,8 +57155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -57149,8 +57183,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -57182,14 +57216,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *350 + schema: *351 examples: default: *147 x-github: @@ -57212,8 +57246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Success response @@ -57224,7 +57258,7 @@ paths: required: true content: application/json: - schema: *351 + schema: *352 examples: default: *147 x-github: @@ -57253,8 +57287,8 @@ paths: in: query schema: type: string - - *324 - *325 + - *326 - *17 - *19 responses: @@ -57298,8 +57332,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -57307,9 +57341,9 @@ paths: application/json: schema: type: array - items: *352 + items: *353 examples: - default: *353 + default: *354 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57331,8 +57365,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -57375,7 +57409,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *354 + '201': *355 '404': *6 '422': *7 '409': *52 @@ -57406,8 +57440,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -57415,7 +57449,7 @@ paths: application/json: schema: *156 examples: - default: *355 + default: *356 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57443,8 +57477,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -57452,7 +57486,7 @@ paths: application/json: schema: *156 examples: - default: *356 + default: *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57474,8 +57508,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '200': @@ -57484,7 +57518,7 @@ paths: application/json: schema: *154 examples: - default: *357 + default: *358 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57505,8 +57539,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '204': @@ -57533,8 +57567,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '200': *158 @@ -57559,8 +57593,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 requestBody: required: true @@ -57609,8 +57643,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 requestBody: required: true @@ -57660,11 +57694,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: - '200': *358 + '200': *359 '404': *6 x-github: githubCloudOnly: false @@ -57691,10 +57725,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 - - *359 + - *360 responses: '200': *158 '404': *6 @@ -57722,9 +57756,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *324 - *325 - - &377 + - *326 + - &378 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -57732,7 +57766,7 @@ paths: required: false schema: type: string - - &378 + - &379 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -57740,7 +57774,7 @@ paths: required: false schema: type: string - - &379 + - &380 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -57749,7 +57783,7 @@ paths: required: false schema: type: string - - &380 + - &381 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -57776,7 +57810,7 @@ paths: - pending - *17 - *19 - - &381 + - &382 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -57785,7 +57819,7 @@ paths: schema: type: string format: date-time - - &360 + - &361 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -57794,13 +57828,13 @@ paths: schema: type: boolean default: false - - &382 + - &383 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &383 + - &384 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -57823,7 +57857,7 @@ paths: type: integer workflow_runs: type: array - items: &361 + items: &362 title: Workflow Run description: An invocation of a workflow type: object @@ -58001,7 +58035,7 @@ paths: head_commit: anyOf: - type: 'null' - - &405 + - &406 title: Simple Commit description: A commit. type: object @@ -58116,7 +58150,7 @@ paths: - workflow_url - pull_requests examples: - default: &384 + default: &385 value: total_count: 1 workflow_runs: @@ -58352,24 +58386,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *324 - *325 - - &362 + - *326 + - &363 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: &365 + default: &366 value: id: 30433642 name: Build @@ -58610,9 +58644,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '204': description: Response @@ -58635,9 +58669,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -58765,9 +58799,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '201': description: Response @@ -58800,12 +58834,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *324 - *325 - - *362 + - *326 + - *363 - *17 - *19 - - *363 + - *364 - *59 responses: '200': @@ -58822,9 +58856,9 @@ paths: type: integer artifacts: type: array - items: *331 + items: *332 examples: - default: *364 + default: *365 headers: Link: *65 x-github: @@ -58848,25 +58882,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *324 - *325 - - *362 - - &366 + - *326 + - *363 + - &367 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: *365 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58889,10 +58923,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *324 - *325 - - *362 - - *366 + - *326 + - *363 + - *367 - *17 - *19 responses: @@ -58910,9 +58944,9 @@ paths: type: integer jobs: type: array - items: *367 + items: *368 examples: - default: &368 + default: &369 value: total_count: 1 jobs: @@ -59025,10 +59059,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *324 - *325 - - *362 - - *366 + - *326 + - *363 + - *367 responses: '302': description: Response @@ -59056,9 +59090,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '202': description: Response @@ -59091,9 +59125,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: true content: @@ -59160,9 +59194,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '202': description: Response @@ -59195,9 +59229,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -59227,9 +59261,9 @@ paths: type: integer jobs: type: array - items: *367 + items: *368 examples: - default: *368 + default: *369 headers: Link: *65 x-github: @@ -59254,9 +59288,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '302': description: Response @@ -59283,9 +59317,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '204': description: Response @@ -59312,9 +59346,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -59383,7 +59417,7 @@ paths: items: type: object properties: - type: &485 + type: &486 type: string description: The type of reviewer. enum: @@ -59469,9 +59503,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: true content: @@ -59521,7 +59555,7 @@ paths: application/json: schema: type: array - items: &480 + items: &481 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -59633,7 +59667,7 @@ paths: - created_at - updated_at examples: - default: &481 + default: &482 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -59689,9 +59723,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: false content: @@ -59736,9 +59770,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: false content: @@ -59792,9 +59826,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -59931,8 +59965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -59950,9 +59984,9 @@ paths: type: integer secrets: type: array - items: *369 + items: *370 examples: - default: *370 + default: *371 headers: Link: *65 x-github: @@ -59977,16 +60011,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60008,17 +60042,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *369 + schema: *370 examples: - default: &498 + default: &499 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -60044,8 +60078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -60103,8 +60137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -60130,9 +60164,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *324 - *325 - - *340 + - *326 + - *341 - *19 responses: '200': @@ -60149,9 +60183,9 @@ paths: type: integer variables: type: array - items: *373 + items: *374 examples: - default: *374 + default: *375 headers: Link: *65 x-github: @@ -60174,8 +60208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -60227,17 +60261,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: &499 + default: &500 value: name: USERNAME value: octocat @@ -60263,8 +60297,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 requestBody: required: true @@ -60307,8 +60341,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 responses: '204': @@ -60334,8 +60368,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -60353,7 +60387,7 @@ paths: type: integer workflows: type: array - items: &375 + items: &376 title: Workflow description: A GitHub Actions workflow type: object @@ -60471,9 +60505,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *324 - *325 - - &376 + - *326 + - &377 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -60488,7 +60522,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *376 examples: default: value: @@ -60521,9 +60555,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Response @@ -60548,9 +60582,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -60637,9 +60671,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Response @@ -60666,19 +60700,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *324 - *325 - - *376 + - *326 - *377 - *378 - *379 - *380 + - *381 - *17 - *19 - - *381 - - *360 - *382 + - *361 - *383 + - *384 responses: '200': description: Response @@ -60694,9 +60728,9 @@ paths: type: integer workflow_runs: type: array - items: *361 + items: *362 examples: - default: *384 + default: *385 headers: Link: *65 x-github: @@ -60728,9 +60762,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '200': description: Response @@ -60791,8 +60825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *324 - *325 + - *326 - *59 - *17 - *45 @@ -60960,8 +60994,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -60998,8 +61032,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *324 - *325 + - *326 - name: assignee in: path required: true @@ -61035,8 +61069,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -61146,8 +61180,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *324 - *325 + - *326 - *17 - *45 - *46 @@ -61204,7 +61238,7 @@ paths: initiator: type: string examples: - default: *385 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61224,8 +61258,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -61233,7 +61267,7 @@ paths: application/json: schema: type: array - items: &386 + items: &387 title: Autolink reference description: An autolink reference. type: object @@ -61292,8 +61326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -61332,9 +61366,9 @@ paths: description: response content: application/json: - schema: *386 + schema: *387 examples: - default: &387 + default: &388 value: id: 1 key_prefix: TICKET- @@ -61365,9 +61399,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *324 - *325 - - &388 + - *326 + - &389 name: autolink_id description: The unique identifier of the autolink. in: path @@ -61379,9 +61413,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *387 + default: *388 '404': *6 x-github: githubCloudOnly: false @@ -61401,9 +61435,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *324 - *325 - - *388 + - *326 + - *389 responses: '204': description: Response @@ -61427,8 +61461,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response if Dependabot is enabled @@ -61478,8 +61512,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -61500,8 +61534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -61521,8 +61555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *324 - *325 + - *326 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -61560,7 +61594,7 @@ paths: - url protected: type: boolean - protection: &390 + protection: &391 title: Branch Protection description: Branch Protection type: object @@ -61603,7 +61637,7 @@ paths: required: - contexts - checks - enforce_admins: &393 + enforce_admins: &394 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -61620,7 +61654,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &395 + required_pull_request_reviews: &396 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -61704,7 +61738,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &392 + restrictions: &393 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -61997,9 +62031,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *324 - *325 - - &391 + - *326 + - &392 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -62013,14 +62047,14 @@ paths: description: Response content: application/json: - schema: &401 + schema: &402 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &455 + commit: &456 title: Commit description: Commit type: object @@ -62059,7 +62093,7 @@ paths: author: anyOf: - type: 'null' - - &389 + - &390 title: Git User description: Metaproperties for Git author/committer information. @@ -62081,7 +62115,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 message: type: string examples: @@ -62105,7 +62139,7 @@ paths: required: - sha - url - verification: &505 + verification: &506 title: Verification type: object properties: @@ -62185,7 +62219,7 @@ paths: type: integer files: type: array - items: &466 + items: &467 title: Diff Entry description: Diff Entry type: object @@ -62281,7 +62315,7 @@ paths: - self protected: type: boolean - protection: *390 + protection: *391 protection_url: type: string format: uri @@ -62390,7 +62424,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *328 + '301': *329 '404': *6 x-github: githubCloudOnly: false @@ -62412,15 +62446,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *390 + schema: *391 examples: default: value: @@ -62614,9 +62648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -62876,7 +62910,7 @@ paths: url: type: string format: uri - required_status_checks: &398 + required_status_checks: &399 title: Status Check Policy description: Status Check Policy type: object @@ -63035,7 +63069,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *392 + restrictions: *393 required_conversation_resolution: type: object properties: @@ -63147,9 +63181,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63174,17 +63208,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &394 + default: &395 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -63206,17 +63240,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *394 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63235,9 +63269,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63262,17 +63296,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: &396 + default: &397 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -63368,9 +63402,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63468,9 +63502,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: *396 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -63491,9 +63525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63520,17 +63554,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &397 + default: &398 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -63553,17 +63587,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *397 + default: *398 '404': *6 x-github: githubCloudOnly: false @@ -63583,9 +63617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63610,17 +63644,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *398 + schema: *399 examples: - default: &399 + default: &400 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -63646,9 +63680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63700,9 +63734,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: - default: *399 + default: *400 '404': *6 '422': *15 x-github: @@ -63724,9 +63758,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63750,9 +63784,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -63786,9 +63820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63855,9 +63889,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63921,9 +63955,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: content: application/json: @@ -63989,15 +64023,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *392 + schema: *393 examples: default: value: @@ -64088,9 +64122,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -64113,9 +64147,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -64125,7 +64159,7 @@ paths: type: array items: *5 examples: - default: &400 + default: &401 value: - id: 1 slug: octoapp @@ -64182,9 +64216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64218,7 +64252,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -64239,9 +64273,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64275,7 +64309,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -64296,9 +64330,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64332,7 +64366,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -64354,9 +64388,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -64366,7 +64400,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '404': *6 x-github: githubCloudOnly: false @@ -64386,9 +64420,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -64426,7 +64460,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -64447,9 +64481,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -64487,7 +64521,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -64508,9 +64542,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: content: application/json: @@ -64547,7 +64581,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -64569,9 +64603,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -64605,9 +64639,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64665,9 +64699,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64725,9 +64759,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64787,9 +64821,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64811,7 +64845,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: default: value: @@ -64927,8 +64961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -65207,7 +65241,7 @@ paths: description: Response content: application/json: - schema: &402 + schema: &403 title: CheckRun description: A check performed on the code of a given code change type: object @@ -65343,7 +65377,7 @@ paths: check. type: array items: *84 - deployment: &710 + deployment: &711 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -65630,9 +65664,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *324 - *325 - - &403 + - *326 + - &404 name: check_run_id description: The unique identifier of the check run. in: path @@ -65644,9 +65678,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *403 examples: - default: &404 + default: &405 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -65746,9 +65780,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *324 - *325 - - *403 + - *326 + - *404 requestBody: required: true content: @@ -65988,9 +66022,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *403 examples: - default: *404 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66010,9 +66044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *324 - *325 - - *403 + - *326 + - *404 - *17 - *19 responses: @@ -66122,9 +66156,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *324 - *325 - - *403 + - *326 + - *404 responses: '201': description: Response @@ -66168,8 +66202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -66191,7 +66225,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &406 + schema: &407 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -66289,7 +66323,7 @@ paths: - string - 'null' format: date-time - head_commit: *405 + head_commit: *406 latest_check_runs_count: type: integer check_runs_url: @@ -66317,7 +66351,7 @@ paths: - check_runs_url - pull_requests examples: - default: &407 + default: &408 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -66608,9 +66642,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *406 + schema: *407 examples: - default: *407 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66629,8 +66663,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -66939,9 +66973,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *324 - *325 - - &408 + - *326 + - &409 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -66953,9 +66987,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *407 examples: - default: *407 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66978,17 +67012,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *324 - *325 - - *408 - - &461 + - *326 + - *409 + - &462 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &462 + - &463 name: status description: Returns check runs with the specified `status`. in: query @@ -67027,9 +67061,9 @@ paths: type: integer check_runs: type: array - items: *402 + items: *403 examples: - default: &463 + default: &464 value: total_count: 1 check_runs: @@ -67131,9 +67165,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *324 - *325 - - *408 + - *326 + - *409 responses: '201': description: Response @@ -67166,21 +67200,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *324 - *325 - - *409 + - *326 - *410 + - *411 - *19 - *17 - - &427 + - &428 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *411 - - &428 + schema: *412 + - &429 name: pr description: The number of the pull request for the results you want to list. in: query @@ -67205,13 +67239,13 @@ paths: be returned. in: query required: false - schema: *412 + schema: *413 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *413 + schema: *414 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -67235,7 +67269,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: *414 + instances_url: *415 state: *179 fixed_at: *175 dismissed_by: @@ -67243,11 +67277,11 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: *415 - dismissed_comment: *416 - rule: *417 - tool: *418 - most_recent_instance: *419 + dismissed_reason: *416 + dismissed_comment: *417 + rule: *418 + tool: *419 + most_recent_instance: *420 dismissal_approved_by: anyOf: - type: 'null' @@ -67370,7 +67404,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &420 + '403': &421 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -67397,9 +67431,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *324 - *325 - - &421 + - *326 + - &422 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -67413,7 +67447,7 @@ paths: description: Response content: application/json: - schema: &422 + schema: &423 type: object properties: number: *170 @@ -67421,7 +67455,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: *414 + instances_url: *415 state: *179 fixed_at: *175 dismissed_by: @@ -67429,8 +67463,8 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: *415 - dismissed_comment: *416 + dismissed_reason: *416 + dismissed_comment: *417 rule: type: object properties: @@ -67492,8 +67526,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *418 - most_recent_instance: *419 + tool: *419 + most_recent_instance: *420 dismissal_approved_by: anyOf: - type: 'null' @@ -67589,7 +67623,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -67609,9 +67643,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: true content: @@ -67626,8 +67660,8 @@ paths: enum: - open - dismissed - dismissed_reason: *415 - dismissed_comment: *416 + dismissed_reason: *416 + dismissed_comment: *417 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -67655,7 +67689,7 @@ paths: description: Response content: application/json: - schema: *422 + schema: *423 examples: default: value: @@ -67731,7 +67765,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &426 + '403': &427 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -67758,15 +67792,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 responses: '200': description: Response content: application/json: - schema: &423 + schema: &424 type: object properties: status: @@ -67793,13 +67827,13 @@ paths: - description - started_at examples: - default: &424 + default: &425 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &425 + '400': &426 description: Bad Request content: application/json: @@ -67810,7 +67844,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -67835,29 +67869,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 responses: '200': description: OK content: application/json: - schema: *423 + schema: *424 examples: - default: *424 + default: *425 '202': description: Accepted content: application/json: - schema: *423 + schema: *424 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *425 + '400': *426 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -67889,9 +67923,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: false content: @@ -67937,8 +67971,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *425 - '403': *426 + '400': *426 + '403': *427 '404': *6 '422': description: Unprocessable Entity @@ -67962,13 +67996,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 - *19 - *17 - - *427 - *428 + - *429 responses: '200': description: Response @@ -67979,10 +68013,10 @@ paths: items: type: object properties: - ref: *411 - analysis_key: *429 - environment: *430 - category: *431 + ref: *412 + analysis_key: *430 + environment: *431 + category: *432 state: type: - string @@ -67999,7 +68033,7 @@ paths: properties: text: type: string - location: *432 + location: *433 html_url: type: string classifications: @@ -68007,7 +68041,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *433 + items: *434 examples: default: value: @@ -68044,7 +68078,7 @@ paths: end_column: 50 classifications: - source - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68078,25 +68112,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *324 - *325 - - *409 + - *326 - *410 + - *411 - *19 - *17 - - *428 + - *429 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *411 + schema: *412 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &434 + schema: &435 type: string description: An identifier for the upload. examples: @@ -68118,23 +68152,23 @@ paths: application/json: schema: type: array - items: &435 + items: &436 type: object properties: - ref: *411 - commit_sha: &443 + ref: *412 + commit_sha: &444 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *429 + analysis_key: *430 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *431 + category: *432 error: type: string examples: @@ -68159,8 +68193,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *434 - tool: *418 + sarif_id: *435 + tool: *419 deletable: type: boolean warning: @@ -68222,7 +68256,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68258,8 +68292,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *324 - *325 + - *326 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -68272,7 +68306,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *436 examples: response: summary: application/json response @@ -68326,7 +68360,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *420 + '403': *421 '404': *6 '422': description: Response if analysis could not be processed @@ -68413,8 +68447,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *324 - *325 + - *326 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -68470,7 +68504,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *426 + '403': *427 '404': *6 '503': *113 x-github: @@ -68492,8 +68526,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -68501,7 +68535,7 @@ paths: application/json: schema: type: array - items: &436 + items: &437 title: CodeQL Database description: A CodeQL database. type: object @@ -68613,7 +68647,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68642,8 +68676,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *324 - *325 + - *326 - name: language in: path description: The language of the CodeQL database. @@ -68655,7 +68689,7 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: default: value: @@ -68687,9 +68721,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &468 + '302': &469 description: Found - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68711,8 +68745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *324 - *325 + - *326 - name: language in: path description: The language of the CodeQL database. @@ -68722,7 +68756,7 @@ paths: responses: '204': description: Response - '403': *426 + '403': *427 '404': *6 '503': *113 x-github: @@ -68750,8 +68784,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -68760,7 +68794,7 @@ paths: type: object additionalProperties: false properties: - language: &437 + language: &438 type: string description: The language targeted by the CodeQL query enum: @@ -68840,7 +68874,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &441 + schema: &442 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -68850,7 +68884,7 @@ paths: description: The ID of the variant analysis. controller_repo: *64 actor: *4 - query_language: *437 + query_language: *438 query_pack_url: type: string description: The download url for the query pack. @@ -68898,7 +68932,7 @@ paths: items: type: object properties: - repository: &438 + repository: &439 title: Repository Identifier description: Repository Identifier type: object @@ -68940,7 +68974,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &442 + analysis_status: &443 type: string description: The new status of the CodeQL variant analysis repository task. @@ -68972,7 +69006,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &439 + access_mismatch_repos: &440 type: object properties: repository_count: @@ -68987,7 +69021,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *438 + items: *439 required: - repository_count - repositories @@ -69010,8 +69044,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *439 - over_limit_repos: *439 + no_codeql_db_repos: *440 + over_limit_repos: *440 required: - access_mismatch_repos - not_found_repos @@ -69027,7 +69061,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &440 + value: &441 summary: Default response value: id: 1 @@ -69173,10 +69207,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *440 + value: *441 repository_lists: summary: Response for a successful variant analysis submission - value: *440 + value: *441 '404': *6 '422': description: Unable to process variant analysis submission @@ -69204,8 +69238,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *324 - *325 + - *326 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -69217,9 +69251,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *442 examples: - default: *440 + default: *441 '404': *6 '503': *113 x-github: @@ -69242,7 +69276,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *324 + - *325 - name: repo in: path description: The name of the controller repository. @@ -69277,7 +69311,7 @@ paths: type: object properties: repository: *64 - analysis_status: *442 + analysis_status: *443 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -69402,8 +69436,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -69496,7 +69530,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -69517,8 +69551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -69612,7 +69646,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *426 + '403': *427 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -69683,8 +69717,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -69692,7 +69726,7 @@ paths: schema: type: object properties: - commit_sha: *443 + commit_sha: *444 ref: type: string description: |- @@ -69752,7 +69786,7 @@ paths: schema: type: object properties: - id: *434 + id: *435 url: type: string description: The REST API URL for checking the status of the upload. @@ -69766,7 +69800,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *426 + '403': *427 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -69789,8 +69823,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *324 - *325 + - *326 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -69838,7 +69872,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *420 + '403': *421 '404': description: Not Found if the sarif id does not match any upload '503': *113 @@ -69863,8 +69897,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -69945,8 +69979,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *324 - *325 + - *326 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -70074,8 +70108,8 @@ paths: parameters: - *17 - *19 - - *324 - *325 + - *326 responses: '200': description: Response @@ -70091,7 +70125,7 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: default: value: @@ -70389,8 +70423,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -70454,17 +70488,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '400': *14 '401': *23 '403': *27 @@ -70493,8 +70527,8 @@ paths: parameters: - *17 - *19 - - *324 - *325 + - *326 responses: '200': description: Response @@ -70558,8 +70592,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *324 - *325 + - *326 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -70596,9 +70630,9 @@ paths: type: integer machines: type: array - items: *445 + items: *446 examples: - default: &654 + default: &655 value: total_count: 2 machines: @@ -70638,8 +70672,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *324 - *325 + - *326 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -70726,8 +70760,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *324 - *325 + - *326 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -70796,8 +70830,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -70815,7 +70849,7 @@ paths: type: integer secrets: type: array - items: &449 + items: &450 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -70836,7 +70870,7 @@ paths: - created_at - updated_at examples: - default: *446 + default: *447 headers: Link: *65 x-github: @@ -70859,16 +70893,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *447 + schema: *448 examples: - default: *448 + default: *449 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -70888,17 +70922,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *449 + schema: *450 examples: - default: *450 + default: *451 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70918,8 +70952,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -70972,8 +71006,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -71002,8 +71036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *324 - *325 + - *326 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -71041,7 +71075,7 @@ paths: application/json: schema: type: array - items: &451 + items: &452 title: Collaborator description: Collaborator type: object @@ -71234,8 +71268,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 responses: '204': @@ -71282,8 +71316,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 requestBody: required: false @@ -71310,7 +71344,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &518 + schema: &519 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -71538,8 +71572,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 responses: '204': @@ -71571,8 +71605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *324 - *325 + - *326 - *69 responses: '200': @@ -71593,7 +71627,7 @@ paths: user: anyOf: - type: 'null' - - *451 + - *452 required: - permission - role_name @@ -71647,8 +71681,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -71658,7 +71692,7 @@ paths: application/json: schema: type: array - items: &452 + items: &453 title: Commit Comment description: Commit Comment type: object @@ -71716,7 +71750,7 @@ paths: - created_at - updated_at examples: - default: &457 + default: &458 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -71775,17 +71809,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: &458 + default: &459 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -71842,8 +71876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -71866,7 +71900,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: default: value: @@ -71917,8 +71951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -71940,8 +71974,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -71968,7 +72002,7 @@ paths: application/json: schema: type: array - items: &453 + items: &454 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -72012,7 +72046,7 @@ paths: - content - created_at examples: - default: &521 + default: &522 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -72057,8 +72091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -72091,9 +72125,9 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: &454 + default: &455 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -72122,9 +72156,9 @@ paths: description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -72146,10 +72180,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - &522 + - &523 name: reaction_id description: The unique identifier of the reaction. in: path @@ -72204,8 +72238,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *324 - *325 + - *326 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -72261,9 +72295,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: &568 + default: &569 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -72357,9 +72391,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *324 - *325 - - &456 + - *326 + - &457 name: commit_sha description: The SHA of the commit. in: path @@ -72431,9 +72465,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *324 - *325 - - *456 + - *326 + - *457 - *17 - *19 responses: @@ -72443,9 +72477,9 @@ paths: application/json: schema: type: array - items: *452 + items: *453 examples: - default: *457 + default: *458 headers: Link: *65 x-github: @@ -72473,9 +72507,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *324 - *325 - - *456 + - *326 + - *457 requestBody: required: true content: @@ -72510,9 +72544,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: *458 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -72540,9 +72574,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *324 - *325 - - *456 + - *326 + - *457 - *17 - *19 responses: @@ -72552,9 +72586,9 @@ paths: application/json: schema: type: array - items: *459 + items: *460 examples: - default: &560 + default: &561 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -73091,11 +73125,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *324 - *325 + - *326 - *19 - *17 - - &460 + - &461 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -73110,9 +73144,9 @@ paths: description: Response content: application/json: - schema: *455 + schema: *456 examples: - default: &548 + default: &549 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -73225,11 +73259,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *324 - *325 - - *460 + - *326 - *461 - *462 + - *463 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -73263,9 +73297,9 @@ paths: type: integer check_runs: type: array - items: *402 + items: *403 examples: - default: *463 + default: *464 headers: Link: *65 x-github: @@ -73290,9 +73324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -73300,7 +73334,7 @@ paths: schema: type: integer example: 1 - - *461 + - *462 - *17 - *19 responses: @@ -73318,7 +73352,7 @@ paths: type: integer check_suites: type: array - items: *406 + items: *407 examples: default: value: @@ -73518,9 +73552,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - *17 - *19 responses: @@ -73722,9 +73756,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - *17 - *19 responses: @@ -73734,7 +73768,7 @@ paths: application/json: schema: type: array - items: &633 + items: &634 title: Status description: The status of a commit. type: object @@ -73815,7 +73849,7 @@ paths: site_admin: false headers: Link: *65 - '301': *328 + '301': *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73843,8 +73877,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -73877,11 +73911,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *464 + - *465 code_of_conduct_file: anyOf: - type: 'null' - - &465 + - &466 title: Community Health File type: object properties: @@ -73901,19 +73935,19 @@ paths: contributing: anyOf: - type: 'null' - - *465 + - *466 readme: anyOf: - type: 'null' - - *465 + - *466 issue_template: anyOf: - type: 'null' - - *465 + - *466 pull_request_template: anyOf: - type: 'null' - - *465 + - *466 required: - code_of_conduct - code_of_conduct_file @@ -74042,8 +74076,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *324 - *325 + - *326 - *19 - *17 - name: basehead @@ -74091,8 +74125,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *455 - merge_base_commit: *455 + base_commit: *456 + merge_base_commit: *456 status: type: string enum: @@ -74116,10 +74150,10 @@ paths: - 6 commits: type: array - items: *455 + items: *456 files: type: array - items: *466 + items: *467 required: - url - html_url @@ -74405,8 +74439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -74576,7 +74610,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &467 + response-if-content-is-a-file-github-object: &468 summary: Response if content is a file value: type: file @@ -74713,7 +74747,7 @@ paths: - size - type - url - - &573 + - &574 title: Content File description: Content File type: object @@ -74931,7 +74965,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *467 + response-if-content-is-a-file: *468 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -75000,7 +75034,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *468 + '302': *469 '304': *35 x-github: githubCloudOnly: false @@ -75023,8 +75057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -75119,7 +75153,7 @@ paths: description: Response content: application/json: - schema: &469 + schema: &470 title: File Commit description: File Commit type: object @@ -75275,7 +75309,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *470 examples: example-for-creating-a-file: value: @@ -75329,7 +75363,7 @@ paths: schema: oneOf: - *3 - - &500 + - &501 description: Repository rule violation was detected type: object properties: @@ -75350,7 +75384,7 @@ paths: items: type: object properties: - placeholder_id: &625 + placeholder_id: &626 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -75382,8 +75416,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -75444,7 +75478,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *470 examples: default: value: @@ -75499,8 +75533,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *324 - *325 + - *326 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -75624,23 +75658,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *324 - *325 + - *326 - *189 - *190 - *191 - *192 + - *193 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *193 - - *470 - *194 + - *471 - *195 - *196 + - *197 - *59 - *45 - *46 @@ -75652,7 +75687,7 @@ paths: application/json: schema: type: array - items: &474 + items: &475 type: object description: A Dependabot alert. properties: @@ -75703,7 +75738,7 @@ paths: - transitive - inconclusive - - security_advisory: *471 + security_advisory: *472 security_vulnerability: *63 url: *173 html_url: *174 @@ -75734,8 +75769,8 @@ paths: dismissal. maxLength: 280 fixed_at: *175 - auto_dismissed_at: *472 - dismissal_request: *473 + auto_dismissed_at: *473 + dismissal_request: *474 assignees: type: array description: The users assigned to this alert. @@ -75990,9 +76025,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *324 - *325 - - &475 + - *326 + - &476 name: alert_number in: path description: |- @@ -76007,7 +76042,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: default: value: @@ -76139,9 +76174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *324 - *325 - - *475 + - *326 + - *476 requestBody: required: true content: @@ -76197,7 +76232,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: default: value: @@ -76327,8 +76362,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -76346,7 +76381,7 @@ paths: type: integer secrets: type: array - items: &478 + items: &479 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -76400,16 +76435,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *477 + default: *478 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76429,15 +76464,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *478 + schema: *479 examples: default: value: @@ -76463,8 +76498,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -76517,8 +76552,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -76541,8 +76576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *324 - *325 + - *326 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -76716,8 +76751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -76977,8 +77012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -77061,7 +77096,7 @@ paths: - version - url additionalProperties: false - metadata: &479 + metadata: &480 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -77100,7 +77135,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *479 + metadata: *480 resolved: type: object description: A collection of resolved package dependencies. @@ -77114,7 +77149,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *479 + metadata: *480 relationship: type: string description: A notation of whether a dependency is requested @@ -77247,8 +77282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *324 - *325 + - *326 - name: sha description: The SHA recorded at creation time. in: query @@ -77289,9 +77324,9 @@ paths: application/json: schema: type: array - items: *480 + items: *481 examples: - default: *481 + default: *482 headers: Link: *65 x-github: @@ -77357,8 +77392,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -77440,7 +77475,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: simple-example: summary: Simple example @@ -77513,9 +77548,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *324 - *325 - - &482 + - *326 + - &483 name: deployment_id description: deployment_id parameter in: path @@ -77527,7 +77562,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: default: value: @@ -77592,9 +77627,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *324 - *325 - - *482 + - *326 + - *483 responses: '204': description: Response @@ -77616,9 +77651,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *324 - *325 - - *482 + - *326 + - *483 - *17 - *19 responses: @@ -77628,7 +77663,7 @@ paths: application/json: schema: type: array - items: &483 + items: &484 title: Deployment Status description: The status of a deployment. type: object @@ -77792,9 +77827,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *324 - *325 - - *482 + - *326 + - *483 requestBody: required: true content: @@ -77869,9 +77904,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: - default: &484 + default: &485 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -77927,9 +77962,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *324 - *325 - - *482 + - *326 + - *483 - name: status_id in: path required: true @@ -77940,9 +77975,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: - default: *484 + default: *485 '404': *6 x-github: githubCloudOnly: false @@ -77967,8 +78002,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -78025,8 +78060,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -78044,7 +78079,7 @@ paths: - 5 environments: type: array - items: &486 + items: &487 title: Environment description: Details of a deployment environment type: object @@ -78106,7 +78141,7 @@ paths: type: string examples: - wait_timer - wait_timer: &488 + wait_timer: &489 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -78148,7 +78183,7 @@ paths: items: type: object properties: - type: *485 + type: *486 reviewer: anyOf: - *4 @@ -78175,7 +78210,7 @@ paths: - id - node_id - type - deployment_branch_policy: &489 + deployment_branch_policy: &490 type: - object - 'null' @@ -78292,9 +78327,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *324 - *325 - - &487 + - *326 + - &488 name: environment_name in: path required: true @@ -78307,9 +78342,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: &490 + default: &491 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -78393,9 +78428,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: false content: @@ -78405,7 +78440,7 @@ paths: - object - 'null' properties: - wait_timer: *488 + wait_timer: *489 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -78424,14 +78459,14 @@ paths: items: type: object properties: - type: *485 + type: *486 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *489 + deployment_branch_policy: *490 additionalProperties: false examples: default: @@ -78451,9 +78486,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: *490 + default: *491 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -78477,9 +78512,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *324 - *325 - - *487 + - *326 + - *488 responses: '204': description: Default response @@ -78504,9 +78539,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *17 - *19 responses: @@ -78525,7 +78560,7 @@ paths: - 2 branch_policies: type: array - items: &491 + items: &492 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -78586,9 +78621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: true content: @@ -78636,9 +78671,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - example-wildcard: &492 + example-wildcard: &493 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -78680,10 +78715,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - &493 + - *326 + - *488 + - &494 name: branch_policy_id in: path required: true @@ -78695,9 +78730,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78716,10 +78751,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - *493 + - *326 + - *488 + - *494 requestBody: required: true content: @@ -78748,9 +78783,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78769,10 +78804,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - *493 + - *326 + - *488 + - *494 responses: '204': description: Response @@ -78797,9 +78832,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 responses: '200': description: List of deployment protection rules @@ -78816,7 +78851,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &494 + items: &495 title: Deployment protection rule description: Deployment protection rule type: object @@ -78838,7 +78873,7 @@ paths: for the environment. examples: - true - app: &495 + app: &496 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -78941,9 +78976,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 requestBody: content: application/json: @@ -78964,9 +78999,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *494 + schema: *495 examples: - default: &496 + default: &497 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -79001,9 +79036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 - *19 - *17 responses: @@ -79023,7 +79058,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *495 + items: *496 examples: default: value: @@ -79058,10 +79093,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *324 - *325 - - *487 - - &497 + - *326 + - *488 + - &498 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -79073,9 +79108,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - default: *496 + default: *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79096,10 +79131,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 - - *497 + - *498 responses: '204': description: Response @@ -79125,9 +79160,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *17 - *19 responses: @@ -79145,9 +79180,9 @@ paths: type: integer secrets: type: array - items: *369 + items: *370 examples: - default: *370 + default: *371 headers: Link: *65 x-github: @@ -79172,17 +79207,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *324 - *325 - - *487 + - *326 + - *488 responses: '200': description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79204,18 +79239,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 responses: '200': description: Response content: application/json: - schema: *369 + schema: *370 examples: - default: *498 + default: *499 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79237,9 +79272,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 requestBody: required: true @@ -79297,9 +79332,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 responses: '204': @@ -79325,10 +79360,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *324 - *325 - - *487 - - *340 + - *326 + - *488 + - *341 - *19 responses: '200': @@ -79345,9 +79380,9 @@ paths: type: integer variables: type: array - items: *373 + items: *374 examples: - default: *374 + default: *375 headers: Link: *65 x-github: @@ -79370,9 +79405,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: true content: @@ -79424,18 +79459,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *163 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: *499 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79456,10 +79491,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *324 - *325 + - *326 - *163 - - *487 + - *488 requestBody: required: true content: @@ -79501,10 +79536,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *324 - *325 + - *326 - *163 - - *487 + - *488 responses: '204': description: Response @@ -79526,8 +79561,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -79595,8 +79630,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *324 - *325 + - *326 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -79755,8 +79790,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -79789,9 +79824,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 '400': *14 '422': *15 '403': *27 @@ -79812,8 +79847,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -79873,7 +79908,7 @@ paths: schema: oneOf: - *121 - - *500 + - *501 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79898,8 +79933,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *324 - *325 + - *326 - name: file_sha in: path required: true @@ -79999,8 +80034,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80109,7 +80144,7 @@ paths: description: Response content: application/json: - schema: &501 + schema: &502 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -80336,15 +80371,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *324 - *325 - - *456 + - *326 + - *457 responses: '200': description: Response content: application/json: - schema: *501 + schema: *502 examples: default: value: @@ -80400,9 +80435,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *324 - *325 - - &502 + - *326 + - &503 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -80419,7 +80454,7 @@ paths: application/json: schema: type: array - items: &503 + items: &504 title: Git Reference description: Git references within a repository type: object @@ -80495,17 +80530,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 responses: '200': description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: &504 + default: &505 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -80534,8 +80569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80564,9 +80599,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -80592,9 +80627,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 requestBody: required: true content: @@ -80623,9 +80658,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 '422': *15 '409': *52 x-github: @@ -80643,9 +80678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 responses: '204': description: Response @@ -80700,8 +80735,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80768,7 +80803,7 @@ paths: description: Response content: application/json: - schema: &506 + schema: &507 title: Git Tag description: Metadata for a Git tag type: object @@ -80824,7 +80859,7 @@ paths: - sha - type - url - verification: *505 + verification: *506 required: - sha - url @@ -80834,7 +80869,7 @@ paths: - tag - message examples: - default: &507 + default: &508 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -80907,8 +80942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *324 - *325 + - *326 - name: tag_sha in: path required: true @@ -80919,9 +80954,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *507 + default: *508 '404': *6 '409': *52 x-github: @@ -80945,8 +80980,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -81020,7 +81055,7 @@ paths: description: Response content: application/json: - schema: &508 + schema: &509 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -81122,8 +81157,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *324 - *325 + - *326 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -81146,7 +81181,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: default-response: summary: Default response @@ -81205,8 +81240,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -81216,7 +81251,7 @@ paths: application/json: schema: type: array - items: &509 + items: &510 title: Webhook description: Webhooks for repositories. type: object @@ -81279,7 +81314,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &741 + last_response: &742 title: Hook Response type: object properties: @@ -81356,8 +81391,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -81410,9 +81445,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: &510 + default: &511 value: type: Repository id: 12345678 @@ -81460,17 +81495,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '200': description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '404': *6 x-github: githubCloudOnly: false @@ -81490,9 +81525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 requestBody: required: true content: @@ -81537,9 +81572,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '422': *15 '404': *6 x-github: @@ -81560,9 +81595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -81586,9 +81621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '200': description: Response @@ -81615,9 +81650,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *324 - *325 - - *202 + - *326 + - *203 requestBody: required: false content: @@ -81661,12 +81696,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *324 - *325 - - *202 - - *17 + - *326 - *203 + - *17 - *204 + - *205 responses: '200': description: Response @@ -81674,9 +81709,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *206 + default: *207 '400': *14 '422': *15 x-github: @@ -81695,18 +81730,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *207 + schema: *208 examples: - default: *208 + default: *209 '400': *14 '422': *15 x-github: @@ -81725,9 +81760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 - *16 responses: '202': *37 @@ -81750,9 +81785,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -81777,9 +81812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -81802,8 +81837,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response if immutable releases are enabled @@ -81851,8 +81886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *324 - *325 + - *326 responses: '204': *183 '409': *52 @@ -81872,8 +81907,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *324 - *325 + - *326 responses: '204': *183 '409': *52 @@ -81930,14 +81965,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &511 + schema: &512 title: Import description: A repository import from an external source. type: object @@ -82044,7 +82079,7 @@ paths: - html_url - authors_url examples: - default: &514 + default: &515 value: vcs: subversion use_lfs: true @@ -82060,7 +82095,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &512 + '503': &513 description: Unavailable due to service under maintenance. content: application/json: @@ -82089,8 +82124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -82138,7 +82173,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: default: value: @@ -82163,7 +82198,7 @@ paths: type: string '422': *15 '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82191,8 +82226,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -82244,7 +82279,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: example-1: summary: Example 1 @@ -82292,7 +82327,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82315,12 +82350,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *324 - *325 + - *326 responses: '204': description: Response - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82346,9 +82381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *324 - *325 - - &675 + - *326 + - &676 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -82362,7 +82397,7 @@ paths: application/json: schema: type: array - items: &513 + items: &514 title: Porter Author description: Porter Author type: object @@ -82416,7 +82451,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82441,8 +82476,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *324 - *325 + - *326 - name: author_id in: path required: true @@ -82472,7 +82507,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: default: value: @@ -82485,7 +82520,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82509,8 +82544,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -82551,7 +82586,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82579,8 +82614,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -82607,11 +82642,11 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *514 + default: *515 '422': *15 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82634,8 +82669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -82643,8 +82678,8 @@ paths: application/json: schema: *20 examples: - default: *515 - '301': *328 + default: *516 + '301': *329 '404': *6 x-github: githubCloudOnly: false @@ -82664,8 +82699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -82673,12 +82708,12 @@ paths: application/json: schema: anyOf: - - *221 + - *222 - type: object properties: {} additionalProperties: false examples: - default: &517 + default: &518 value: limit: collaborators_only origin: repository @@ -82703,13 +82738,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *516 + schema: *517 examples: default: summary: Example request body @@ -82721,9 +82756,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *517 + default: *518 '409': description: Response x-github: @@ -82745,8 +82780,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -82769,8 +82804,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -82780,9 +82815,9 @@ paths: application/json: schema: type: array - items: *518 + items: *519 examples: - default: &668 + default: &669 value: - id: 1 repository: @@ -82913,9 +82948,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *324 - *325 - - *225 + - *326 + - *226 requestBody: required: false content: @@ -82944,7 +82979,7 @@ paths: description: Response content: application/json: - schema: *518 + schema: *519 examples: default: value: @@ -83075,9 +83110,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *324 - *325 - - *225 + - *326 + - *226 responses: '204': description: Response @@ -83108,8 +83143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *324 - *325 + - *326 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -83157,7 +83192,7 @@ paths: required: false schema: type: string - - *232 + - *233 - name: sort description: What to sort results by. in: query @@ -83182,7 +83217,7 @@ paths: type: array items: *81 examples: - default: &527 + default: &528 value: - id: 1 node_id: MDU6SXNzdWUx @@ -83331,7 +83366,7 @@ paths: state_reason: completed headers: Link: *65 - '301': *328 + '301': *329 '422': *15 '404': *6 x-github: @@ -83360,8 +83395,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -83453,7 +83488,7 @@ paths: application/json: schema: *81 examples: - default: &524 + default: &525 value: id: 1 node_id: MDU6SXNzdWUx @@ -83610,7 +83645,7 @@ paths: '422': *15 '503': *113 '404': *6 - '410': *519 + '410': *520 x-github: triggersNotification: true githubCloudOnly: false @@ -83638,8 +83673,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *324 - *325 + - *326 - *103 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -83662,7 +83697,7 @@ paths: type: array items: *82 examples: - default: &526 + default: &527 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -83720,8 +83755,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': @@ -83730,7 +83765,7 @@ paths: application/json: schema: *82 examples: - default: &520 + default: &521 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -83785,8 +83820,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -83811,7 +83846,7 @@ paths: application/json: schema: *82 examples: - default: *520 + default: *521 '422': *15 x-github: githubCloudOnly: false @@ -83829,8 +83864,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -83859,8 +83894,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': @@ -83923,7 +83958,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -83940,8 +83975,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -83949,7 +83984,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 '503': *113 x-github: githubCloudOnly: false @@ -83967,8 +84002,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -83995,9 +84030,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -84018,8 +84053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -84052,16 +84087,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -84083,10 +84118,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - *522 + - *523 responses: '204': description: Response @@ -84106,8 +84141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -84117,7 +84152,7 @@ paths: application/json: schema: type: array - items: &523 + items: &524 title: Issue Event description: Issue Event type: object @@ -84457,8 +84492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *324 - *325 + - *326 - name: event_id in: path required: true @@ -84469,7 +84504,7 @@ paths: description: Response content: application/json: - schema: *523 + schema: *524 examples: default: value: @@ -84662,7 +84697,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *519 + '410': *520 '403': *27 x-github: githubCloudOnly: false @@ -84696,9 +84731,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *324 - *325 - - &525 + - *326 + - &526 name: issue_number description: The number that identifies the issue. in: path @@ -84714,7 +84749,7 @@ paths: examples: default: summary: Issue - value: *524 + value: *525 pinned_comment: summary: Issue with pinned comment value: @@ -84913,9 +84948,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 '304': *35 x-github: githubCloudOnly: false @@ -84940,9 +84975,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -85083,13 +85118,13 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 '422': *15 '503': *113 '403': *27 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85107,9 +85142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -85137,7 +85172,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85153,9 +85188,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: content: application/json: @@ -85182,7 +85217,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85204,9 +85239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: assignee in: path required: true @@ -85246,9 +85281,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *86 - *17 - *19 @@ -85261,11 +85296,11 @@ paths: type: array items: *82 examples: - default: *526 + default: *527 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85294,9 +85329,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -85320,14 +85355,14 @@ paths: application/json: schema: *82 examples: - default: *520 + default: *521 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -85355,9 +85390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85369,12 +85404,12 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85402,9 +85437,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -85428,15 +85463,15 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *328 + '301': *329 '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -85467,9 +85502,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -85483,13 +85518,13 @@ paths: application/json: schema: *81 examples: - default: *524 - '301': *328 + default: *525 + '301': *329 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 x-github: triggersNotification: true githubCloudOnly: false @@ -85515,9 +85550,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85529,12 +85564,12 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85551,9 +85586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85567,7 +85602,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &530 + - &531 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -85616,7 +85651,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &531 + - &532 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -85744,7 +85779,7 @@ paths: - performed_via_github_app - assignee - assigner - - &532 + - &533 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -85790,7 +85825,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &533 + - &534 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -85836,7 +85871,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &534 + - &535 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -85885,7 +85920,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &535 + - &536 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -85927,7 +85962,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &536 + - &537 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -85969,7 +86004,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &537 + - &538 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -86025,7 +86060,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &538 + - &539 title: Locked Issue Event description: Locked Issue Event type: object @@ -86070,7 +86105,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &539 + - &540 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -86131,7 +86166,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &540 + - &541 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -86192,7 +86227,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &541 + - &542 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -86253,7 +86288,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &542 + - &543 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -86346,7 +86381,7 @@ paths: color: red headers: Link: *65 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86363,9 +86398,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -86375,9 +86410,9 @@ paths: application/json: schema: type: array - items: *528 + items: *529 examples: - default: &639 + default: &640 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -86401,9 +86436,9 @@ paths: value: '2025-12-25' headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86420,9 +86455,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -86434,7 +86469,7 @@ paths: type: array items: *80 examples: - default: &529 + default: &530 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -86452,9 +86487,9 @@ paths: default: false headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86470,9 +86505,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -86517,10 +86552,10 @@ paths: type: array items: *80 examples: - default: *529 - '301': *328 + default: *530 + '301': *329 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -86537,9 +86572,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -86601,10 +86636,10 @@ paths: type: array items: *80 examples: - default: *529 - '301': *328 + default: *530 + '301': *329 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -86621,15 +86656,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '204': description: Response - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86648,9 +86683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: name in: path required: true @@ -86674,9 +86709,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86696,9 +86731,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -86727,7 +86762,7 @@ paths: '204': description: Response '403': *27 - '410': *519 + '410': *520 '404': *6 '422': *15 x-github: @@ -86745,9 +86780,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '204': description: Response @@ -86777,9 +86812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '200': description: Response @@ -86787,10 +86822,10 @@ paths: application/json: schema: *81 examples: - default: *524 - '301': *328 + default: *525 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86807,9 +86842,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -86835,13 +86870,13 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86859,9 +86894,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86893,16 +86928,16 @@ paths: description: Response content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Response content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -86924,10 +86959,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *324 - *325 - - *525 - - *522 + - *326 + - *526 + - *523 responses: '204': description: Response @@ -86956,9 +86991,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86982,7 +87017,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -87015,9 +87050,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -87029,11 +87064,11 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87061,9 +87096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -87092,14 +87127,14 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -87119,9 +87154,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -87154,7 +87189,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 '403': *27 '404': *6 '422': *7 @@ -87176,9 +87211,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -87193,7 +87228,6 @@ paths: description: Timeline Event type: object anyOf: - - *530 - *531 - *532 - *533 @@ -87206,6 +87240,7 @@ paths: - *540 - *541 - *542 + - *543 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -87262,7 +87297,7 @@ paths: pin: anyOf: - type: 'null' - - *543 + - *544 required: - event - actor @@ -87538,7 +87573,7 @@ paths: type: string comments: type: array - items: &562 + items: &563 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -87779,7 +87814,7 @@ paths: type: string comments: type: array - items: *452 + items: *453 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -88054,7 +88089,7 @@ paths: headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88071,8 +88106,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -88082,7 +88117,7 @@ paths: application/json: schema: type: array - items: &544 + items: &545 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -88150,8 +88185,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88187,9 +88222,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: &545 + default: &546 value: id: 1 key: ssh-rsa AAA... @@ -88223,9 +88258,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *324 - *325 - - &546 + - *326 + - &547 name: key_id description: The unique identifier of the key. in: path @@ -88237,9 +88272,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: *545 + default: *546 '404': *6 x-github: githubCloudOnly: false @@ -88257,9 +88292,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *324 - *325 - - *546 + - *326 + - *547 responses: '204': description: Response @@ -88279,8 +88314,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -88292,7 +88327,7 @@ paths: type: array items: *80 examples: - default: *529 + default: *530 headers: Link: *65 '404': *6 @@ -88313,8 +88348,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88352,7 +88387,7 @@ paths: application/json: schema: *80 examples: - default: &547 + default: &548 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -88384,8 +88419,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -88398,7 +88433,7 @@ paths: application/json: schema: *80 examples: - default: *547 + default: *548 '404': *6 x-github: githubCloudOnly: false @@ -88415,8 +88450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -88481,8 +88516,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -88508,8 +88543,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -88548,9 +88583,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *324 - *325 - - *427 + - *326 + - *428 responses: '200': description: Response @@ -88697,8 +88732,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88763,8 +88798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88798,9 +88833,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *455 + schema: *456 examples: - default: *548 + default: *549 '204': description: Response when already merged '404': @@ -88825,8 +88860,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *324 - *325 + - *326 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -88867,7 +88902,7 @@ paths: application/json: schema: type: array - items: *265 + items: *266 examples: default: value: @@ -88923,8 +88958,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88964,9 +88999,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: &549 + default: &550 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -89025,9 +89060,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *324 - *325 - - &550 + - *326 + - &551 name: milestone_number description: The number that identifies the milestone. in: path @@ -89039,9 +89074,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *549 + default: *550 '404': *6 x-github: githubCloudOnly: false @@ -89058,9 +89093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 requestBody: required: false content: @@ -89098,9 +89133,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *549 + default: *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89116,9 +89151,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 responses: '204': description: Response @@ -89139,9 +89174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 - *17 - *19 responses: @@ -89153,7 +89188,7 @@ paths: type: array items: *80 examples: - default: *529 + default: *530 headers: Link: *65 x-github: @@ -89172,12 +89207,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *324 - *325 - - *551 + - *326 - *552 - - *86 - *553 + - *86 + - *554 - *17 - *19 responses: @@ -89189,7 +89224,7 @@ paths: type: array items: *106 examples: - default: *554 + default: *555 headers: Link: *65 x-github: @@ -89213,8 +89248,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -89272,14 +89307,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &555 + schema: &556 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -89423,7 +89458,7 @@ paths: - custom_404 - public examples: - default: &556 + default: &557 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -89464,8 +89499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89520,9 +89555,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *556 examples: - default: *556 + default: *557 '422': *15 '409': *52 x-github: @@ -89545,8 +89580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89646,8 +89681,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -89673,8 +89708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -89684,7 +89719,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: Page Build description: Page Build type: object @@ -89776,8 +89811,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -89824,16 +89859,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: &558 + default: &559 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -89881,8 +89916,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *324 - *325 + - *326 - name: build_id in: path required: true @@ -89893,9 +89928,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89915,8 +89950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90024,9 +90059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *324 - *325 - - &559 + - *326 + - &560 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -90084,9 +90119,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *324 - *325 - - *559 + - *326 + - *560 responses: '204': *183 '404': *6 @@ -90113,8 +90148,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -90409,8 +90444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Private vulnerability reporting status @@ -90447,8 +90482,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': *183 '422': *14 @@ -90469,8 +90504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': *183 '422': *14 @@ -90492,8 +90527,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -90501,7 +90536,7 @@ paths: application/json: schema: type: array - items: *279 + items: *280 examples: default: value: @@ -90532,8 +90567,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90545,7 +90580,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *279 + items: *280 required: - properties examples: @@ -90595,8 +90630,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *324 - *325 + - *326 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -90656,9 +90691,9 @@ paths: application/json: schema: type: array - items: *459 + items: *460 examples: - default: *560 + default: *561 headers: Link: *65 '304': *35 @@ -90690,8 +90725,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90758,7 +90793,7 @@ paths: description: Response content: application/json: - schema: &564 + schema: &565 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -90887,7 +90922,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 active_lock_reason: type: - string @@ -90936,7 +90971,7 @@ paths: items: *4 requested_teams: type: array - items: *244 + items: *245 head: type: object properties: @@ -90974,14 +91009,14 @@ paths: _links: type: object properties: - comments: *266 - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + comments: *267 + commits: *267 + statuses: *267 + html: *267 + issue: *267 + review_comments: *267 + review_comment: *267 + self: *267 required: - comments - commits @@ -90992,7 +91027,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: *561 + auto_merge: *562 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -91094,7 +91129,7 @@ paths: - merged_by - review_comments examples: - default: &565 + default: &566 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -91621,8 +91656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *324 - *325 + - *326 - name: sort in: query required: false @@ -91651,9 +91686,9 @@ paths: application/json: schema: type: array - items: *562 + items: *563 examples: - default: &567 + default: &568 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -91730,17 +91765,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 responses: '200': description: Response content: application/json: - schema: *562 + schema: *563 examples: - default: &563 + default: &564 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -91815,8 +91850,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -91839,9 +91874,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: - default: *563 + default: *564 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91857,8 +91892,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -91880,8 +91915,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -91908,9 +91943,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -91931,8 +91966,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -91965,16 +92000,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -91996,10 +92031,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - *522 + - *523 responses: '204': description: Response @@ -92042,9 +92077,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *324 - *325 - - &566 + - *326 + - &567 name: pull_number description: The number that identifies the pull request. in: path @@ -92057,9 +92092,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *564 + schema: *565 examples: - default: *565 + default: *566 '304': *35 '404': *6 '406': @@ -92094,9 +92129,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -92138,9 +92173,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: *565 + default: *566 '422': *15 '403': *27 x-github: @@ -92162,9 +92197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -92225,17 +92260,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -92265,9 +92300,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -92288,9 +92323,9 @@ paths: application/json: schema: type: array - items: *562 + items: *563 examples: - default: *567 + default: *568 headers: Link: *65 x-github: @@ -92323,9 +92358,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -92431,7 +92466,7 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: example-for-a-multi-line-comment: value: @@ -92519,9 +92554,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *95 requestBody: required: true @@ -92544,7 +92579,7 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: default: value: @@ -92630,9 +92665,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -92642,9 +92677,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: *568 + default: *569 headers: Link: *65 x-github: @@ -92674,9 +92709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -92686,7 +92721,7 @@ paths: application/json: schema: type: array - items: *466 + items: *467 examples: default: value: @@ -92724,9 +92759,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *324 - *325 - - *566 + - *326 + - *567 responses: '204': description: Response if pull request has been merged @@ -92749,9 +92784,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -92863,9 +92898,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 responses: '200': description: Response @@ -92940,9 +92975,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -92979,7 +93014,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: default: value: @@ -93515,9 +93550,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -93551,7 +93586,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: default: value: @@ -94056,9 +94091,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -94068,7 +94103,7 @@ paths: application/json: schema: type: array - items: &569 + items: &570 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -94224,9 +94259,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -94316,9 +94351,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: &571 + default: &572 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -94381,10 +94416,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - &570 + - *326 + - *567 + - &571 name: review_id description: The unique identifier of the review. in: path @@ -94396,9 +94431,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: &572 + default: &573 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -94457,10 +94492,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -94483,7 +94518,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: default: value: @@ -94545,18 +94580,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 responses: '200': description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *571 + default: *572 '422': *7 '404': *6 x-github: @@ -94583,10 +94618,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 - *17 - *19 responses: @@ -94684,9 +94719,9 @@ paths: _links: type: object properties: - self: *266 - html: *266 - pull_request: *266 + self: *267 + html: *267 + pull_request: *267 required: - self - html @@ -94844,10 +94879,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -94876,7 +94911,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: default: value: @@ -94939,10 +94974,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -94977,9 +95012,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *572 + default: *573 '404': *6 '422': *7 '403': *27 @@ -95001,9 +95036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -95067,8 +95102,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *324 - *325 + - *326 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -95081,9 +95116,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: &574 + default: &575 value: type: file encoding: base64 @@ -95125,8 +95160,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *324 - *325 + - *326 - name: dir description: The alternate path to look for a README file in: path @@ -95146,9 +95181,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *574 + default: *575 '404': *6 '422': *15 x-github: @@ -95170,8 +95205,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -95181,7 +95216,7 @@ paths: application/json: schema: type: array - items: *575 + items: *576 examples: default: value: @@ -95275,8 +95310,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -95352,9 +95387,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: &579 + default: &580 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -95459,9 +95494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *324 - *325 - - &577 + - *326 + - &578 name: asset_id description: The unique identifier of the asset. in: path @@ -95473,9 +95508,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: &578 + default: &579 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -95510,7 +95545,7 @@ paths: type: User site_admin: false '404': *6 - '302': *468 + '302': *469 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95526,9 +95561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *324 - *325 - - *577 + - *326 + - *578 requestBody: required: false content: @@ -95557,9 +95592,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: *578 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95575,9 +95610,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *324 - *325 - - *577 + - *326 + - *578 responses: '204': description: Response @@ -95602,8 +95637,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -95689,16 +95724,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -95716,8 +95751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *324 - *325 + - *326 - name: tag description: tag parameter in: path @@ -95730,9 +95765,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -95754,9 +95789,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *324 - *325 - - &580 + - *326 + - &581 name: release_id description: The unique identifier of the release. in: path @@ -95770,9 +95805,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '401': description: Unauthorized x-github: @@ -95790,9 +95825,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 requestBody: required: false content: @@ -95856,9 +95891,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': description: Not Found if the discussion category name is invalid content: @@ -95879,9 +95914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 responses: '204': description: Response @@ -95902,9 +95937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *324 - *325 - - *580 + - *326 + - *581 - *17 - *19 responses: @@ -95914,7 +95949,7 @@ paths: application/json: schema: type: array - items: *576 + items: *577 examples: default: value: @@ -95995,9 +96030,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *324 - *325 - - *580 + - *326 + - *581 - name: name in: query required: true @@ -96023,7 +96058,7 @@ paths: description: Response for successful upload content: application/json: - schema: *576 + schema: *577 examples: response-for-successful-upload: value: @@ -96078,9 +96113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -96104,9 +96139,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -96127,9 +96162,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 requestBody: required: true content: @@ -96159,16 +96194,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -96190,10 +96225,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *324 - *325 - - *580 - - *522 + - *326 + - *581 + - *523 responses: '204': description: Response @@ -96217,9 +96252,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 - *17 - *19 responses: @@ -96235,8 +96270,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *286 - - &581 + - *287 + - &582 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -96255,69 +96290,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *287 - - *581 - allOf: - *288 - - *581 + - *582 - allOf: - *289 - - *581 - - allOf: - *582 - - *581 - allOf: - *290 - - *581 + - *582 + - allOf: + - *583 + - *582 - allOf: - *291 - - *581 + - *582 - allOf: - *292 - - *581 + - *582 - allOf: - *293 - - *581 + - *582 - allOf: - *294 - - *581 + - *582 - allOf: - *295 - - *581 + - *582 - allOf: - *296 - - *581 + - *582 - allOf: - *297 - - *581 + - *582 - allOf: - *298 - - *581 + - *582 - allOf: - *299 - - *581 + - *582 - allOf: - *300 - - *581 + - *582 - allOf: - *301 - - *581 + - *582 - allOf: - *302 - - *581 + - *582 - allOf: - *303 - - *581 + - *582 - allOf: - *304 - - *581 + - *582 - allOf: - *305 - - *581 + - *582 - allOf: - *306 - - *581 + - *582 + - allOf: + - *307 + - *582 examples: default: value: @@ -96356,8 +96391,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - *17 - *19 - name: includes_parents @@ -96368,7 +96403,7 @@ paths: schema: type: boolean default: true - - *583 + - *584 responses: '200': description: Response @@ -96376,7 +96411,7 @@ paths: application/json: schema: type: array - items: *307 + items: *308 examples: default: value: @@ -96423,8 +96458,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 requestBody: description: Request body required: true @@ -96444,16 +96479,16 @@ paths: - tag - push default: branch - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *281 + items: *285 + conditions: *282 rules: type: array description: An array of rules within the ruleset. - items: *584 + items: *585 required: - name - enforcement @@ -96484,9 +96519,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &594 + default: &595 value: id: 42 name: super cool ruleset @@ -96534,12 +96569,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *324 - *325 - - *585 + - *326 - *586 - *587 - *588 + - *589 - *17 - *19 responses: @@ -96547,9 +96582,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 '404': *6 '500': *53 x-github: @@ -96570,17 +96605,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *324 - *325 - - *591 + - *326 + - *592 responses: '200': description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '404': *6 '500': *53 x-github: @@ -96608,8 +96643,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96629,9 +96664,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *594 + default: *595 '404': *6 '500': *53 put: @@ -96649,8 +96684,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96675,16 +96710,16 @@ paths: - branch - tag - push - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *281 + items: *285 + conditions: *282 rules: description: An array of rules within the ruleset. type: array - items: *584 + items: *585 examples: default: value: @@ -96712,9 +96747,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *594 + default: *595 '404': *6 '422': *15 '500': *53 @@ -96733,8 +96768,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96757,8 +96792,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *324 - *325 + - *326 - *17 - *19 - name: ruleset_id @@ -96774,9 +96809,9 @@ paths: application/json: schema: type: array - items: *310 + items: *311 examples: - default: *595 + default: *596 '404': *6 '500': *53 x-github: @@ -96795,8 +96830,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96814,7 +96849,7 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: default: value: @@ -96869,22 +96904,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *324 - *325 - - *597 + - *326 - *598 - *599 - *600 - *601 + - *602 - *59 - *19 - *17 - - *602 - *603 - *604 - *605 - *606 - *607 + - *608 responses: '200': description: Response @@ -96892,7 +96927,7 @@ paths: application/json: schema: type: array - items: &611 + items: &612 type: object properties: number: *170 @@ -96908,8 +96943,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *608 - resolution: *609 + state: *609 + resolution: *610 resolved_at: type: - string @@ -97003,7 +97038,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *610 + - *611 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -97162,16 +97197,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 - - *607 + - *326 + - *422 + - *608 responses: '200': description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -97225,9 +97260,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: true content: @@ -97235,8 +97270,8 @@ paths: schema: type: object properties: - state: *608 - resolution: *609 + state: *609 + resolution: *610 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -97274,7 +97309,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -97369,9 +97404,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 - *19 - *17 responses: @@ -97382,7 +97417,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &761 + items: &762 type: object properties: type: @@ -97409,7 +97444,6 @@ paths: - commit details: oneOf: - - *612 - *613 - *614 - *615 @@ -97422,6 +97456,7 @@ paths: - *622 - *623 - *624 + - *625 examples: default: value: @@ -97507,8 +97542,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -97516,14 +97551,14 @@ paths: schema: type: object properties: - reason: &626 + reason: &627 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *625 + placeholder_id: *626 required: - reason - placeholder_id @@ -97540,7 +97575,7 @@ paths: schema: type: object properties: - reason: *626 + reason: *627 expire_at: type: - string @@ -97587,8 +97622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *324 - *325 + - *326 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -97603,7 +97638,7 @@ paths: properties: incremental_scans: type: array - items: &627 + items: &628 description: Information on a single scan performed by secret scanning on the repository type: object @@ -97631,15 +97666,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *627 + items: *628 backfill_scans: type: array - items: *627 + items: *628 custom_pattern_backfill_scans: type: array items: allOf: - - *627 + - *628 - type: object properties: pattern_name: @@ -97709,8 +97744,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *324 - *325 + - *326 - *59 - name: sort description: The property to sort the results by. @@ -97754,9 +97789,9 @@ paths: application/json: schema: type: array - items: *628 + items: *629 examples: - default: *629 + default: *630 '400': *14 '404': *6 x-github: @@ -97779,8 +97814,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -97860,7 +97895,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 required: - login - type @@ -97950,9 +97985,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: &631 + default: &632 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -98185,8 +98220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -98299,7 +98334,7 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: default: value: @@ -98446,17 +98481,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '200': description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: *631 + default: *632 '403': *27 '404': *6 x-github: @@ -98480,9 +98515,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 requestBody: required: true content: @@ -98562,7 +98597,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 required: - login - type @@ -98653,10 +98688,10 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: *631 - add_credit: *631 + default: *632 + add_credit: *632 '403': *27 '404': *6 '422': @@ -98694,9 +98729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '202': *37 '400': *14 @@ -98723,17 +98758,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '202': description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 '400': *14 '422': *15 '403': *27 @@ -98759,8 +98794,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -98856,8 +98891,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -98866,7 +98901,7 @@ paths: application/json: schema: type: array - items: &632 + items: &633 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -98899,8 +98934,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -98978,8 +99013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -99073,8 +99108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *324 - *325 + - *326 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -99228,8 +99263,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *324 - *325 + - *326 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -99239,7 +99274,7 @@ paths: application/json: schema: type: array - items: *632 + items: *633 examples: default: value: @@ -99272,8 +99307,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *324 - *325 + - *326 - name: sha in: path required: true @@ -99329,7 +99364,7 @@ paths: description: Response content: application/json: - schema: *633 + schema: *634 examples: default: value: @@ -99383,8 +99418,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -99416,14 +99451,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *324 - *325 + - *326 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &634 + schema: &635 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -99496,8 +99531,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -99523,7 +99558,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -99550,8 +99585,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -99571,8 +99606,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -99654,8 +99689,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *324 - *325 + - *326 - name: ref in: path required: true @@ -99691,8 +99726,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -99704,7 +99739,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 headers: Link: *65 '404': *6 @@ -99724,8 +99759,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *324 - *325 + - *326 - *19 - *17 responses: @@ -99733,7 +99768,7 @@ paths: description: Response content: application/json: - schema: &635 + schema: &636 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -99745,7 +99780,7 @@ paths: required: - names examples: - default: &636 + default: &637 value: names: - octocat @@ -99768,8 +99803,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -99800,9 +99835,9 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: - default: *636 + default: *637 '404': *6 '422': *7 x-github: @@ -99823,9 +99858,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *324 - *325 - - &637 + - *326 + - &638 name: per description: The time frame to display results for. in: query @@ -99856,7 +99891,7 @@ paths: - 128 clones: type: array - items: &638 + items: &639 title: Traffic type: object properties: @@ -99943,8 +99978,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -100038,8 +100073,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -100102,9 +100137,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *324 - *325 - - *637 + - *326 + - *638 responses: '200': description: Response @@ -100125,7 +100160,7 @@ paths: - 3782 views: type: array - items: *638 + items: *639 required: - uniques - count @@ -100202,8 +100237,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -100477,8 +100512,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -100501,8 +100536,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -100524,8 +100559,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -100551,8 +100586,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *324 - *325 + - *326 - name: ref in: path required: true @@ -100644,9 +100679,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -100794,7 +100829,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *141 - - *525 + - *526 requestBody: required: true content: @@ -100860,9 +100895,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *528 + items: *529 examples: - default: *639 + default: *640 '400': *14 '403': *27 '404': *6 @@ -100899,7 +100934,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *141 - - *525 + - *526 requestBody: required: true content: @@ -100966,9 +101001,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *528 + items: *529 examples: - default: *639 + default: *640 '400': *14 '403': *27 '404': *6 @@ -101000,8 +101035,8 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *141 - - *525 - - *228 + - *526 + - *229 responses: '204': description: Issue field value deleted successfully @@ -101038,6 +101073,9 @@ paths: * You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is. + > [!NOTE] + > `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata. + This endpoint requires you to authenticate and limits you to 10 requests per minute. tags: - search @@ -101141,7 +101179,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &640 + text_matches: &641 title: Search Result Text Matches type: array items: @@ -101304,7 +101342,7 @@ paths: enum: - author-date - committer-date - - &641 + - &642 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -101373,7 +101411,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 comment_count: type: integer message: @@ -101392,7 +101430,7 @@ paths: url: type: string format: uri - verification: *505 + verification: *506 required: - author - committer @@ -101407,7 +101445,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 parents: type: array items: @@ -101424,7 +101462,7 @@ paths: type: number node_id: type: string - text_matches: *640 + text_matches: *641 required: - sha - node_id @@ -101616,7 +101654,7 @@ paths: - interactions - created - updated - - *641 + - *642 - *17 - *19 - name: advanced_search @@ -101730,11 +101768,11 @@ paths: type: - string - 'null' - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: type: string state_reason: @@ -101748,7 +101786,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 comments: type: integer created_at: @@ -101762,7 +101800,7 @@ paths: - string - 'null' format: date-time - text_matches: *640 + text_matches: *641 pull_request: type: object properties: @@ -101811,7 +101849,7 @@ paths: timeline_url: type: string format: uri - type: *229 + type: *230 performed_via_github_app: anyOf: - type: 'null' @@ -102028,7 +102066,7 @@ paths: enum: - created - updated - - *641 + - *642 - *17 - *19 responses: @@ -102073,7 +102111,7 @@ paths: - 'null' score: type: number - text_matches: *640 + text_matches: *641 required: - id - node_id @@ -102158,7 +102196,7 @@ paths: - forks - help-wanted-issues - updated - - *641 + - *642 - *17 - *19 responses: @@ -102404,7 +102442,7 @@ paths: - admin - pull - push - text_matches: *640 + text_matches: *641 temp_clone_token: type: string allow_merge_commit: @@ -102712,7 +102750,7 @@ paths: - string - 'null' format: uri - text_matches: *640 + text_matches: *641 related: type: - array @@ -102905,7 +102943,7 @@ paths: - followers - repositories - joined - - *641 + - *642 - *17 - *19 responses: @@ -103015,7 +103053,7 @@ paths: type: - boolean - 'null' - text_matches: *640 + text_matches: *641 blog: type: - string @@ -103097,7 +103135,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &644 + - &645 name: team_id description: The unique identifier of the team. in: path @@ -103109,9 +103147,9 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 x-github: githubCloudOnly: false @@ -103138,7 +103176,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *644 + - *645 requestBody: required: true content: @@ -103202,16 +103240,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '201': description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 '422': *15 '403': *27 @@ -103239,7 +103277,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *644 + - *645 responses: '204': description: Response @@ -103268,7 +103306,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -103278,9 +103316,9 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 x-github: @@ -103306,7 +103344,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *644 + - *645 - name: role description: Filters members returned by their role in the team. in: query @@ -103357,7 +103395,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -103394,7 +103432,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -103434,7 +103472,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -103471,16 +103509,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 responses: '200': description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-user-is-a-team-maintainer: *645 + response-if-user-is-a-team-maintainer: *646 '404': *6 x-github: githubCloudOnly: false @@ -103513,7 +103551,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 requestBody: required: false @@ -103539,9 +103577,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: *646 + response-if-users-membership-with-team-is-now-pending: *647 '403': description: Forbidden if team synchronization is set up '422': @@ -103575,7 +103613,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -103603,7 +103641,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -103615,7 +103653,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 '404': *6 @@ -103645,15 +103683,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *647 + schema: *648 examples: alternative-response-with-extra-repository-information: value: @@ -103804,9 +103842,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 requestBody: required: false content: @@ -103856,9 +103894,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 responses: '204': description: Response @@ -103883,7 +103921,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -103895,7 +103933,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: *648 + response-if-child-teams-exist: *649 headers: Link: *65 '404': *6 @@ -103928,7 +103966,7 @@ paths: application/json: schema: oneOf: - - &650 + - &651 title: Private User description: Private User type: object @@ -104178,7 +104216,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *649 + - *650 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -104338,7 +104376,7 @@ paths: description: Response content: application/json: - schema: *650 + schema: *651 examples: default: value: @@ -104541,9 +104579,9 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '304': *35 '500': *53 '401': *23 @@ -104682,17 +104720,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -104736,7 +104774,7 @@ paths: type: integer secrets: type: array - items: &651 + items: &652 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -104778,7 +104816,7 @@ paths: - visibility - selected_repositories_url examples: - default: *446 + default: *447 headers: Link: *65 x-github: @@ -104856,7 +104894,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: default: value: @@ -105146,15 +105184,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '304': *35 '500': *53 '401': *23 @@ -105180,7 +105218,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 requestBody: required: false content: @@ -105210,9 +105248,9 @@ paths: description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -105234,7 +105272,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '202': *37 '304': *35 @@ -105263,13 +105301,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '202': description: Response content: application/json: - schema: &652 + schema: &653 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -105322,7 +105360,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &653 + default: &654 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -105354,7 +105392,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *236 + - *237 - name: export_id in: path required: true @@ -105367,9 +105405,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: *653 + default: *654 '404': *6 x-github: githubCloudOnly: false @@ -105390,7 +105428,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *236 + - *237 responses: '200': description: Response @@ -105406,9 +105444,9 @@ paths: type: integer machines: type: array - items: *445 + items: *446 examples: - default: *654 + default: *655 '304': *35 '500': *53 '401': *23 @@ -105437,7 +105475,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *236 + - *237 requestBody: required: true content: @@ -105493,11 +105531,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *327 + repository: *328 machine: anyOf: - type: 'null' - - *445 + - *446 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -106294,15 +106332,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '304': *35 '500': *53 '400': *14 @@ -106334,15 +106372,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '500': *53 '401': *23 '403': *27 @@ -106372,9 +106410,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: &665 + default: &666 value: - id: 197 name: hello_docker @@ -106475,7 +106513,7 @@ paths: application/json: schema: type: array - items: &655 + items: &656 title: Email description: Email type: object @@ -106545,9 +106583,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: &667 + default: &668 value: - email: octocat@github.com verified: true @@ -106624,7 +106662,7 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: default: value: @@ -106882,7 +106920,7 @@ paths: application/json: schema: type: array - items: &656 + items: &657 title: GPG Key description: A unique encryption key type: object @@ -107027,7 +107065,7 @@ paths: - subkeys - revoked examples: - default: &683 + default: &684 value: - id: 3 name: Octocat's GPG Key @@ -107112,9 +107150,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: &657 + default: &658 value: id: 3 name: Octocat's GPG Key @@ -107171,7 +107209,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &658 + - &659 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -107183,9 +107221,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: *657 + default: *658 '404': *6 '304': *35 '403': *27 @@ -107208,7 +107246,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *658 + - *659 responses: '204': description: Response @@ -107487,12 +107525,12 @@ paths: application/json: schema: anyOf: - - *221 + - *222 - type: object properties: {} additionalProperties: false examples: - default: *222 + default: *223 '204': description: Response when there are no restrictions x-github: @@ -107516,7 +107554,7 @@ paths: required: true content: application/json: - schema: *516 + schema: *517 examples: default: value: @@ -107527,7 +107565,7 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: default: value: @@ -107608,7 +107646,7 @@ paths: - closed - all default: open - - *232 + - *233 - name: sort description: What to sort results by. in: query @@ -107633,7 +107671,7 @@ paths: type: array items: *81 examples: - default: *233 + default: *234 headers: Link: *65 '404': *6 @@ -107666,7 +107704,7 @@ paths: application/json: schema: type: array - items: &659 + items: &660 title: Key description: Key type: object @@ -107769,9 +107807,9 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: &660 + default: &661 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107804,15 +107842,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *546 + - *547 responses: '200': description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: *660 + default: *661 '404': *6 '304': *35 '403': *27 @@ -107835,7 +107873,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *546 + - *547 responses: '204': description: Response @@ -107868,7 +107906,7 @@ paths: application/json: schema: type: array - items: &661 + items: &662 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -107947,7 +107985,7 @@ paths: - account - plan examples: - default: &662 + default: &663 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -108009,9 +108047,9 @@ paths: application/json: schema: type: array - items: *661 + items: *662 examples: - default: *662 + default: *663 headers: Link: *65 '304': *35 @@ -108051,7 +108089,7 @@ paths: application/json: schema: type: array - items: *238 + items: *239 examples: default: value: @@ -108165,7 +108203,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -108252,7 +108290,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -108324,7 +108362,7 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: default: value: @@ -108586,7 +108624,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -108766,7 +108804,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *241 + - *242 - name: exclude in: query required: false @@ -108779,7 +108817,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -108973,7 +109011,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *241 + - *242 responses: '302': description: Response @@ -108999,7 +109037,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *241 + - *242 responses: '204': description: Response @@ -109028,8 +109066,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *241 - - *663 + - *242 + - *664 responses: '204': description: Response @@ -109053,7 +109091,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *241 + - *242 - *17 - *19 responses: @@ -109065,7 +109103,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 '404': *6 @@ -109144,7 +109182,7 @@ paths: - docker - nuget - container - - *664 + - *665 - *19 - *17 responses: @@ -109154,10 +109192,10 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *665 - '400': *666 + default: *666 + '400': *667 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109177,16 +109215,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: &684 + default: &685 value: id: 40201 name: octo-name @@ -109299,8 +109337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 responses: '204': description: Response @@ -109330,8 +109368,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 - name: token description: package token schema: @@ -109363,8 +109401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *248 - *249 + - *250 - *19 - *17 - name: state @@ -109384,7 +109422,7 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: default: value: @@ -109433,15 +109471,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -109477,9 +109515,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '204': description: Response @@ -109509,9 +109547,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '204': description: Response @@ -109548,9 +109586,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: *667 + default: *668 headers: Link: *65 '304': *35 @@ -109663,7 +109701,7 @@ paths: type: array items: *77 examples: - default: &674 + default: &675 summary: Default response value: - id: 1296269 @@ -109981,9 +110019,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -110021,9 +110059,9 @@ paths: application/json: schema: type: array - items: *518 + items: *519 examples: - default: *668 + default: *669 headers: Link: *65 '304': *35 @@ -110046,7 +110084,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *225 + - *226 responses: '204': description: Response @@ -110069,7 +110107,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *225 + - *226 responses: '204': description: Response @@ -110102,7 +110140,7 @@ paths: application/json: schema: type: array - items: &669 + items: &670 title: Social account description: Social media account type: object @@ -110119,7 +110157,7 @@ paths: - provider - url examples: - default: &670 + default: &671 value: - provider: twitter url: https://twitter.com/github @@ -110182,9 +110220,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: *670 + default: *671 '422': *15 '304': *35 '404': *6 @@ -110272,7 +110310,7 @@ paths: application/json: schema: type: array - items: &671 + items: &672 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -110292,7 +110330,7 @@ paths: - title - created_at examples: - default: &702 + default: &703 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -110357,9 +110395,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: &672 + default: &673 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -110389,7 +110427,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &673 + - &674 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -110401,9 +110439,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 '404': *6 '304': *35 '403': *27 @@ -110426,7 +110464,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *673 + - *674 responses: '204': description: Response @@ -110455,7 +110493,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &703 + - &704 name: sort description: The property to sort the results by. `created` means when the repository was starred. `updated` means when the repository was last pushed @@ -110480,11 +110518,11 @@ paths: type: array items: *77 examples: - default-response: *674 + default-response: *675 application/vnd.github.v3.star+json: schema: type: array - items: &704 + items: &705 title: Starred Repository description: Starred Repository type: object @@ -110640,8 +110678,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response if this repository is starred by you @@ -110669,8 +110707,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -110694,8 +110732,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -110730,7 +110768,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 '304': *35 @@ -110767,7 +110805,7 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: default: value: @@ -110853,10 +110891,10 @@ paths: application/json: schema: oneOf: + - *651 - *650 - - *649 examples: - default-response: &678 + default-response: &679 summary: Default response value: login: octocat @@ -110891,7 +110929,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &679 + response-with-git-hub-plan-information: &680 summary: Response with GitHub plan information value: login: octocat @@ -110948,14 +110986,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &676 + - &677 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *264 + - *265 requestBody: required: true description: Details of the draft item to create in the project. @@ -110989,9 +111027,9 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: - draft_issue: *270 + draft_issue: *271 '304': *35 '403': *27 '401': *23 @@ -111014,7 +111052,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *675 + - *676 - *17 responses: '200': @@ -111049,8 +111087,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *676 - - *264 + - *677 + - *265 requestBody: required: true content: @@ -111124,17 +111162,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *677 + schema: *678 examples: table_view: summary: Response for creating a table view - value: *274 + value: *275 board_view: summary: Response for creating a board view with filter - value: *274 + value: *275 roadmap_view: summary: Response for creating a roadmap view - value: *274 + value: *275 '304': *35 '403': *27 '401': *23 @@ -111176,11 +111214,11 @@ paths: application/json: schema: oneOf: + - *651 - *650 - - *649 examples: - default-response: *678 - response-with-git-hub-plan-information: *679 + default-response: *679 + response-with-git-hub-plan-information: *680 '404': *6 x-github: githubCloudOnly: false @@ -111230,8 +111268,8 @@ paths: required: - subject_digests examples: - default: *680 - withPredicateType: *681 + default: *681 + withPredicateType: *682 responses: '200': description: Response @@ -111285,7 +111323,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *682 + default: *683 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111490,7 +111528,7 @@ paths: initiator: type: string examples: - default: *385 + default: *386 '201': description: Response content: @@ -111529,9 +111567,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *665 + default: *666 '403': *27 '401': *23 x-github: @@ -111915,9 +111953,9 @@ paths: application/json: schema: type: array - items: *656 + items: *657 examples: - default: *683 + default: *684 headers: Link: *65 x-github: @@ -112021,7 +112059,7 @@ paths: application/json: schema: *20 examples: - default: *515 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112146,7 +112184,7 @@ paths: - docker - nuget - container - - *664 + - *665 - *69 - *19 - *17 @@ -112157,12 +112195,12 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *665 + default: *666 '403': *27 '401': *23 - '400': *666 + '400': *667 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112182,17 +112220,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *684 + default: *685 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112213,8 +112251,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '204': @@ -112247,8 +112285,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 - name: token description: package token @@ -112281,8 +112319,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '200': @@ -112291,7 +112329,7 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: default: value: @@ -112349,16 +112387,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 - *69 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -112393,10 +112431,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *248 - *249 + - *250 - *69 - - *251 + - *252 responses: '204': description: Response @@ -112428,10 +112466,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *248 - *249 + - *250 - *69 - - *251 + - *252 responses: '204': description: Response @@ -112472,9 +112510,9 @@ paths: application/json: schema: type: array - items: *262 + items: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -112496,16 +112534,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *264 + - *265 - *69 responses: '200': description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -112527,7 +112565,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *264 + - *265 - *69 - *17 - *45 @@ -112539,9 +112577,9 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: - default: *685 + default: *686 headers: Link: *65 '304': *35 @@ -112563,7 +112601,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *69 - - *264 + - *265 requestBody: required: true content: @@ -112601,7 +112639,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *686 + items: *687 required: - name - data_type @@ -112617,7 +112655,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *687 + iteration_configuration: *688 required: - name - data_type @@ -112639,20 +112677,20 @@ paths: value: name: Due date data_type: date - single_select_field: *688 - iteration_field: *689 + single_select_field: *689 + iteration_field: *690 responses: '201': description: Response content: application/json: - schema: *267 + schema: *268 examples: - text_field: *690 - number_field: *691 - date_field: *692 - single_select_field: *693 - iteration_field: *694 + text_field: *691 + number_field: *692 + date_field: *693 + single_select_field: *694 + iteration_field: *695 '304': *35 '403': *27 '401': *23 @@ -112673,17 +112711,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *264 - - *695 + - *265 + - *696 - *69 responses: '200': description: Response content: application/json: - schema: *267 + schema: *268 examples: - default: *696 + default: *697 headers: Link: *65 '304': *35 @@ -112706,7 +112744,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *264 + - *265 - *69 - *45 - *46 @@ -112739,9 +112777,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -112763,7 +112801,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *69 - - *264 + - *265 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -112833,22 +112871,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *271 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *271 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *271 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *271 '304': *35 '403': *27 '401': *23 @@ -112868,9 +112906,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *264 + - *265 - *69 - - *273 + - *274 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -112890,9 +112928,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -112913,9 +112951,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *264 + - *265 - *69 - - *273 + - *274 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -112988,13 +113026,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *273 + number_field: *273 + date_field: *273 + single_select_field: *273 + iteration_field: *273 '401': *23 '403': *27 '404': *6 @@ -113014,9 +113052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *264 + - *265 - *69 - - *273 + - *274 responses: '204': description: Response @@ -113038,9 +113076,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *264 + - *265 - *69 - - *697 + - *698 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -113066,9 +113104,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -113289,7 +113327,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -113315,7 +113353,7 @@ paths: - *115 - *117 - *116 - - *698 + - *699 - *118 responses: '200': @@ -113446,7 +113484,7 @@ paths: parameters: - *69 - *115 - - *699 + - *700 - *116 responses: '200': @@ -113545,9 +113583,9 @@ paths: - *115 - *117 - *116 - - *700 - - *118 - *701 + - *118 + - *702 responses: '200': description: Response when getting a billing usage summary @@ -113681,9 +113719,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: *670 + default: *671 headers: Link: *65 x-github: @@ -113713,9 +113751,9 @@ paths: application/json: schema: type: array - items: *671 + items: *672 examples: - default: *702 + default: *703 headers: Link: *65 x-github: @@ -113740,7 +113778,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *69 - - *703 + - *704 - *59 - *17 - *19 @@ -113752,11 +113790,11 @@ paths: schema: anyOf: - type: array - items: *704 + items: *705 - type: array items: *77 examples: - default-response: *674 + default-response: *675 headers: Link: *65 x-github: @@ -113787,7 +113825,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -113916,7 +113954,7 @@ webhooks: type: string enum: - disabled - enterprise: &705 + enterprise: &706 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -113985,7 +114023,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &706 + installation: &707 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -114006,7 +114044,7 @@ webhooks: required: - id - node_id - organization: &707 + organization: &708 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -114079,7 +114117,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &708 + repository: &709 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -115005,10 +115043,10 @@ webhooks: type: string enum: - enabled - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -115084,11 +115122,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: &709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: &710 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -115311,11 +115349,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: *709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: *710 sender: *4 required: - action @@ -115503,11 +115541,11 @@ webhooks: - everyone required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: *709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: *710 sender: *4 required: - action @@ -115591,7 +115629,7 @@ webhooks: type: string enum: - completed - check_run: &711 + check_run: &712 title: CheckRun description: A check performed on the code of a given code change type: object @@ -115701,7 +115739,7 @@ webhooks: - examples: - neutral - deployment: *710 + deployment: *711 details_url: type: string examples: @@ -115799,10 +115837,10 @@ webhooks: - output - app - pull_requests - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -116193,11 +116231,11 @@ webhooks: type: string enum: - created - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -116591,11 +116629,11 @@ webhooks: type: string enum: - requested_action - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 requested_action: description: The action requested by the user. type: object @@ -116998,11 +117036,11 @@ webhooks: type: string enum: - rerequested - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -117987,10 +118025,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -118694,10 +118732,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -119395,10 +119433,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -119567,7 +119605,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119719,20 +119757,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &712 + commit_oid: &713 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *705 - installation: *706 - organization: *707 - ref: &713 + enterprise: *706 + installation: *707 + organization: *708 + ref: &714 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -119899,7 +119937,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -120140,12 +120178,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -120243,7 +120281,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120428,12 +120466,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -120602,7 +120640,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -120779,12 +120817,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -120885,7 +120923,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -121074,9 +121112,9 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -121084,7 +121122,7 @@ webhooks: type: - string - 'null' - repository: *708 + repository: *709 sender: *4 required: - action @@ -121183,7 +121221,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -121330,12 +121368,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -121504,7 +121542,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -121656,10 +121694,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -121919,10 +121957,10 @@ webhooks: - updated_at - author_association - body - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -122003,18 +122041,18 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *707 - pusher_type: &714 + organization: *708 + pusher_type: &715 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &715 + ref: &716 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -122024,7 +122062,7 @@ webhooks: enum: - tag - branch - repository: *708 + repository: *709 sender: *4 required: - ref @@ -122106,10 +122144,10 @@ webhooks: type: string enum: - created - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -122194,9 +122232,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -122273,10 +122311,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -122353,10 +122391,10 @@ webhooks: type: string enum: - updated - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -122433,19 +122471,19 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - repository: *708 - organization: *707 + enterprise: *706 + installation: *707 + repository: *709 + organization: *708 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *279 + items: *280 old_property_values: type: array description: The old custom property values for the repository. - items: *279 + items: *280 required: - action - repository @@ -122521,18 +122559,18 @@ webhooks: title: delete event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - pusher_type: *714 - ref: *715 + enterprise: *706 + installation: *707 + organization: *708 + pusher_type: *715 + ref: *716 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *708 + repository: *709 sender: *4 required: - ref @@ -122612,11 +122650,11 @@ webhooks: type: string enum: - assignees_changed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122696,11 +122734,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122781,11 +122819,11 @@ webhooks: type: string enum: - auto_reopened - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122866,11 +122904,11 @@ webhooks: type: string enum: - created - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122949,11 +122987,11 @@ webhooks: type: string enum: - dismissed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123032,11 +123070,11 @@ webhooks: type: string enum: - fixed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123116,11 +123154,11 @@ webhooks: type: string enum: - reintroduced - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123199,11 +123237,11 @@ webhooks: type: string enum: - reopened - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123280,9 +123318,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - key: &716 + enterprise: *706 + installation: *707 + key: &717 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -123320,8 +123358,8 @@ webhooks: - verified - created_at - read_only - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -123398,11 +123436,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - key: *716 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + key: *717 + organization: *708 + repository: *709 sender: *4 required: - action @@ -123969,12 +124007,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: &720 + workflow: &721 title: Workflow type: - object @@ -124725,13 +124763,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *480 + - *481 pull_requests: type: array - items: *564 - repository: *708 - organization: *707 - installation: *706 + items: *565 + repository: *709 + organization: *708 + installation: *707 sender: *4 responses: '200': @@ -124802,7 +124840,7 @@ webhooks: type: string enum: - approved - approver: &717 + approver: &718 type: object properties: avatar_url: @@ -124845,11 +124883,11 @@ webhooks: type: string comment: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - reviewers: &718 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + reviewers: &719 type: array items: type: object @@ -124930,7 +124968,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &719 + workflow_job_run: &720 type: object properties: conclusion: @@ -125676,18 +125714,18 @@ webhooks: type: string enum: - rejected - approver: *717 + approver: *718 comment: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - reviewers: *718 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + reviewers: *719 sender: *4 since: type: string - workflow_job_run: *719 + workflow_job_run: *720 workflow_job_runs: type: array items: @@ -126404,13 +126442,13 @@ webhooks: type: string enum: - requested - enterprise: *705 + enterprise: *706 environment: type: string - installation: *706 - organization: *707 - repository: *708 - requestor: &725 + installation: *707 + organization: *708 + repository: *709 + requestor: &726 title: User type: - object @@ -128343,12 +128381,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Deployment Workflow Run type: @@ -129039,7 +129077,7 @@ webhooks: type: string enum: - answered - answer: &723 + answer: &724 type: object properties: author_association: @@ -129199,11 +129237,11 @@ webhooks: - created_at - updated_at - body - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129330,11 +129368,11 @@ webhooks: - from required: - category - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129417,11 +129455,11 @@ webhooks: type: string enum: - closed - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129503,7 +129541,7 @@ webhooks: type: string enum: - created - comment: &722 + comment: &723 type: object properties: author_association: @@ -129663,11 +129701,11 @@ webhooks: - updated_at - body - reactions - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129750,12 +129788,12 @@ webhooks: type: string enum: - deleted - comment: *722 - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + comment: *723 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129850,12 +129888,12 @@ webhooks: - from required: - body - comment: *722 - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + comment: *723 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129939,11 +129977,11 @@ webhooks: type: string enum: - created - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130025,11 +130063,11 @@ webhooks: type: string enum: - deleted - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130129,11 +130167,11 @@ webhooks: type: string required: - from - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130215,10 +130253,10 @@ webhooks: type: string enum: - labeled - discussion: *721 - enterprise: *705 - installation: *706 - label: &724 + discussion: *722 + enterprise: *706 + installation: *707 + label: &725 title: Label type: object properties: @@ -130251,8 +130289,8 @@ webhooks: - color - default - description - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130335,11 +130373,11 @@ webhooks: type: string enum: - locked - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130421,11 +130459,11 @@ webhooks: type: string enum: - pinned - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130507,11 +130545,11 @@ webhooks: type: string enum: - reopened - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130596,16 +130634,16 @@ webhooks: changes: type: object properties: - new_discussion: *721 - new_repository: *708 + new_discussion: *722 + new_repository: *709 required: - new_discussion - new_repository - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130688,10 +130726,10 @@ webhooks: type: string enum: - unanswered - discussion: *721 - old_answer: *723 - organization: *707 - repository: *708 + discussion: *722 + old_answer: *724 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130773,12 +130811,12 @@ webhooks: type: string enum: - unlabeled - discussion: *721 - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130861,11 +130899,11 @@ webhooks: type: string enum: - unlocked - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130947,11 +130985,11 @@ webhooks: type: string enum: - unpinned - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -131024,7 +131062,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *705 + enterprise: *706 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -131702,9 +131740,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - forkee @@ -131850,9 +131888,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pages: description: The pages that were updated. type: array @@ -131890,7 +131928,7 @@ webhooks: - action - sha - html_url - repository: *708 + repository: *709 sender: *4 required: - pages @@ -131966,10 +132004,10 @@ webhooks: type: string enum: - created - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: &726 + organization: *708 + repositories: &727 description: An array of repository objects that the installation can access. type: array @@ -131995,8 +132033,8 @@ webhooks: - name - full_name - private - repository: *708 - requester: *725 + repository: *709 + requester: *726 sender: *4 required: - action @@ -132071,11 +132109,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -132152,11 +132190,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -132233,10 +132271,10 @@ webhooks: type: string enum: - added - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories_added: &727 + organization: *708 + repositories_added: &728 description: An array of repository objects, which were added to the installation. type: array @@ -132282,15 +132320,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *708 - repository_selection: &728 + repository: *709 + repository_selection: &729 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *725 + requester: *726 sender: *4 required: - action @@ -132369,10 +132407,10 @@ webhooks: type: string enum: - removed - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories_added: *727 + organization: *708 + repositories_added: *728 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -132399,9 +132437,9 @@ webhooks: - name - full_name - private - repository: *708 - repository_selection: *728 - requester: *725 + repository: *709 + repository_selection: *729 + requester: *726 sender: *4 required: - action @@ -132480,11 +132518,11 @@ webhooks: type: string enum: - suspend - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -132666,10 +132704,10 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 target_type: type: string @@ -132748,11 +132786,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -132918,7 +132956,7 @@ webhooks: pin: anyOf: - type: 'null' - - *543 + - *544 user: title: User type: @@ -133004,8 +133042,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133817,8 +133855,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133835,7 +133873,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -134179,8 +134217,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -134260,7 +134298,7 @@ webhooks: type: string enum: - deleted - comment: &729 + comment: &730 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -134417,7 +134455,7 @@ webhooks: pin: anyOf: - type: 'null' - - *543 + - *544 required: - url - html_url @@ -134431,8 +134469,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -135240,8 +135278,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135258,7 +135296,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -135604,8 +135642,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -135685,7 +135723,7 @@ webhooks: type: string enum: - edited - changes: &753 + changes: &754 description: The changes to the comment. type: object properties: @@ -135697,9 +135735,9 @@ webhooks: type: string required: - from - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136510,8 +136548,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136528,7 +136566,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -136872,8 +136910,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -136954,9 +136992,9 @@ webhooks: type: string enum: - pinned - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -137769,8 +137807,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137787,7 +137825,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -138133,8 +138171,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -138214,9 +138252,9 @@ webhooks: type: string enum: - unpinned - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139029,8 +139067,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139047,7 +139085,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -139393,8 +139431,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139483,9 +139521,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139574,9 +139612,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139664,9 +139702,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139755,9 +139793,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139837,10 +139875,10 @@ webhooks: type: string enum: - assigned - assignee: *725 - enterprise: *705 - installation: *706 - issue: &732 + assignee: *726 + enterprise: *706 + installation: *707 + issue: &733 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -140651,11 +140689,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140672,7 +140710,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -140775,8 +140813,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -140856,8 +140894,8 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -141673,11 +141711,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141694,7 +141732,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -141940,8 +141978,8 @@ webhooks: required: - state - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -142020,8 +142058,8 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142828,11 +142866,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142849,7 +142887,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -142951,8 +142989,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -143031,8 +143069,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143862,11 +143900,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143883,7 +143921,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -143964,7 +144002,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &730 + milestone: &731 title: Milestone description: A collection of related issues and pull requests. type: object @@ -144107,8 +144145,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -144207,8 +144245,8 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145019,11 +145057,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145037,7 +145075,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -145143,9 +145181,9 @@ webhooks: - active_lock_reason - body - reactions - label: *724 - organization: *707 - repository: *708 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -145225,8 +145263,8 @@ webhooks: type: string enum: - labeled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146036,11 +146074,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146054,7 +146092,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -146160,9 +146198,9 @@ webhooks: - active_lock_reason - body - reactions - label: *724 - organization: *707 - repository: *708 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -146242,8 +146280,8 @@ webhooks: type: string enum: - locked - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147078,11 +147116,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147096,7 +147134,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -147179,8 +147217,8 @@ webhooks: format: uri user_view_type: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -147259,8 +147297,8 @@ webhooks: type: string enum: - milestoned - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148089,11 +148127,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148110,7 +148148,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -148190,9 +148228,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *730 - organization: *707 - repository: *708 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -149079,11 +149117,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149183,7 +149221,7 @@ webhooks: required: - login - id - type: *229 + type: *230 required: - id - number @@ -149675,8 +149713,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150483,11 +150521,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150504,7 +150542,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -150610,8 +150648,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -150691,9 +150729,9 @@ webhooks: type: string enum: - pinned - enterprise: *705 - installation: *706 - issue: &731 + enterprise: *706 + installation: *707 + issue: &732 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -151498,11 +151536,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151519,7 +151557,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -151621,8 +151659,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -151701,8 +151739,8 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152535,11 +152573,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152636,9 +152674,9 @@ webhooks: format: uri user_view_type: type: string - type: *229 - organization: *707 - repository: *708 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -153526,11 +153564,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153547,7 +153585,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -154140,11 +154178,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *705 - installation: *706 - issue: *731 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *732 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154224,12 +154262,12 @@ webhooks: type: string enum: - typed - enterprise: *705 - installation: *706 - issue: *732 - type: *229 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154310,7 +154348,7 @@ webhooks: type: string enum: - unassigned - assignee: &756 + assignee: &757 title: User type: - object @@ -154382,11 +154420,11 @@ webhooks: required: - login - id - enterprise: *705 - installation: *706 - issue: *732 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154465,12 +154503,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *705 - installation: *706 - issue: *732 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154550,8 +154588,8 @@ webhooks: type: string enum: - unlocked - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155384,11 +155422,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155405,7 +155443,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -155485,8 +155523,8 @@ webhooks: format: uri user_view_type: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155566,11 +155604,11 @@ webhooks: type: string enum: - unpinned - enterprise: *705 - installation: *706 - issue: *731 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *732 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155649,12 +155687,12 @@ webhooks: type: string enum: - untyped - enterprise: *705 - installation: *706 - issue: *732 - type: *229 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155734,11 +155772,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155816,11 +155854,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155930,11 +155968,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156016,9 +156054,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: &733 + enterprise: *706 + installation: *707 + marketplace_purchase: &734 title: Marketplace Purchase type: object required: @@ -156106,8 +156144,8 @@ webhooks: type: integer unit_count: type: integer - organization: *707 - previous_marketplace_purchase: &734 + organization: *708 + previous_marketplace_purchase: &735 title: Marketplace Purchase type: object properties: @@ -156191,7 +156229,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -156271,10 +156309,10 @@ webhooks: - changed effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -156362,7 +156400,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -156444,10 +156482,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -156533,7 +156571,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -156614,8 +156652,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 marketplace_purchase: title: Marketplace Purchase type: object @@ -156701,9 +156739,9 @@ webhooks: type: integer unit_count: type: integer - organization: *707 - previous_marketplace_purchase: *734 - repository: *708 + organization: *708 + previous_marketplace_purchase: *735 + repository: *709 sender: *4 required: - action @@ -156783,12 +156821,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 - previous_marketplace_purchase: *734 - repository: *708 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 + previous_marketplace_purchase: *735 + repository: *709 sender: *4 required: - action @@ -156890,11 +156928,11 @@ webhooks: type: string required: - to - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156996,11 +157034,11 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157079,11 +157117,11 @@ webhooks: type: string enum: - removed - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157161,11 +157199,11 @@ webhooks: type: string enum: - added - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 scope: description: The scope of the membership. Currently, can only be `team`. @@ -157243,7 +157281,7 @@ webhooks: required: - login - id - team: &735 + team: &736 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -157473,11 +157511,11 @@ webhooks: type: string enum: - removed - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 scope: description: The scope of the membership. Currently, can only be `team`. @@ -157556,7 +157594,7 @@ webhooks: required: - login - id - team: *735 + team: *736 required: - action - scope @@ -157638,8 +157676,8 @@ webhooks: type: string enum: - checks_requested - installation: *706 - merge_group: &736 + installation: *707 + merge_group: &737 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -157658,15 +157696,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *405 + head_commit: *406 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157752,10 +157790,10 @@ webhooks: - merged - invalidated - dequeued - installation: *706 - merge_group: *736 - organization: *707 - repository: *708 + installation: *707 + merge_group: *737 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157828,7 +157866,7 @@ webhooks: type: string enum: - deleted - enterprise: *705 + enterprise: *706 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -157937,12 +157975,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *706 - organization: *707 + installation: *707 + organization: *708 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -158022,11 +158060,11 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158105,9 +158143,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - milestone: &737 + enterprise: *706 + installation: *707 + milestone: &738 title: Milestone description: A collection of related issues and pull requests. type: object @@ -158249,8 +158287,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158329,11 +158367,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158443,11 +158481,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158527,11 +158565,11 @@ webhooks: type: string enum: - opened - enterprise: *705 - installation: *706 - milestone: *737 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *738 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158610,11 +158648,11 @@ webhooks: type: string enum: - blocked - blocked_user: *725 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + blocked_user: *726 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158693,11 +158731,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *725 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + blocked_user: *726 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158776,9 +158814,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - membership: &738 + enterprise: *706 + installation: *707 + membership: &739 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -158888,8 +158926,8 @@ webhooks: - role - organization_url - user - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158967,11 +159005,11 @@ webhooks: type: string enum: - member_added - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159050,8 +159088,8 @@ webhooks: type: string enum: - member_invited - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -159173,10 +159211,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 - user: *725 + user: *726 required: - action - invitation @@ -159254,11 +159292,11 @@ webhooks: type: string enum: - member_removed - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159345,11 +159383,11 @@ webhooks: properties: from: type: string - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159426,9 +159464,9 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 package: description: Information about the package. type: object @@ -159951,7 +159989,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &739 + items: &740 title: Ruby Gems metadata type: object properties: @@ -160048,7 +160086,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -160124,9 +160162,9 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 package: description: Information about the package. type: object @@ -160488,7 +160526,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *739 + items: *740 source_url: type: string format: uri @@ -160559,7 +160597,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -160739,12 +160777,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *705 + enterprise: *706 id: type: integer - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - id @@ -160821,7 +160859,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &740 + personal_access_token_request: &741 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -160971,10 +161009,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *705 - organization: *707 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -161051,11 +161089,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *740 - enterprise: *705 - organization: *707 + personal_access_token_request: *741 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -161131,11 +161169,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *740 - enterprise: *705 - organization: *707 + personal_access_token_request: *741 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -161210,11 +161248,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *740 - organization: *707 - enterprise: *705 + personal_access_token_request: *741 + organization: *708 + enterprise: *706 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -161319,7 +161357,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *741 + last_response: *742 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -161351,8 +161389,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 zen: description: Random string of GitHub zen. @@ -161597,10 +161635,10 @@ webhooks: - from required: - note - enterprise: *705 - installation: *706 - organization: *707 - project_card: &742 + enterprise: *706 + installation: *707 + organization: *708 + project_card: &743 title: Project Card type: object properties: @@ -161723,7 +161761,7 @@ webhooks: - creator - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -161804,11 +161842,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project_card: *742 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_card: *743 + repository: *709 sender: *4 required: - action @@ -161888,9 +161926,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 project_card: title: Project Card type: object @@ -162020,7 +162058,7 @@ webhooks: repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -162114,11 +162152,11 @@ webhooks: - from required: - note - enterprise: *705 - installation: *706 - organization: *707 - project_card: *742 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_card: *743 + repository: *709 sender: *4 required: - action @@ -162212,9 +162250,9 @@ webhooks: - from required: - column_id - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 project_card: allOf: - title: Project Card @@ -162411,7 +162449,7 @@ webhooks: type: string required: - after_id - repository: *708 + repository: *709 sender: *4 required: - action @@ -162491,10 +162529,10 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - organization: *707 - project: &744 + enterprise: *706 + installation: *707 + organization: *708 + project: &745 title: Project type: object properties: @@ -162621,7 +162659,7 @@ webhooks: - creator - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -162701,10 +162739,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project_column: &743 + enterprise: *706 + installation: *707 + organization: *708 + project_column: &744 title: Project Column type: object properties: @@ -162744,7 +162782,7 @@ webhooks: - name - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -162823,14 +162861,14 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -162919,11 +162957,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 + repository: *709 sender: *4 required: - action @@ -163003,11 +163041,11 @@ webhooks: type: string enum: - moved - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 + repository: *709 sender: *4 required: - action @@ -163087,11 +163125,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -163171,14 +163209,14 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - project: *744 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -163279,11 +163317,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -163362,11 +163400,11 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -163447,9 +163485,9 @@ webhooks: type: string enum: - closed - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163530,9 +163568,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163613,9 +163651,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163736,9 +163774,9 @@ webhooks: type: string to: type: string - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163821,7 +163859,7 @@ webhooks: type: string enum: - archived - changes: &748 + changes: &749 type: object properties: archived_at: @@ -163837,9 +163875,9 @@ webhooks: - string - 'null' format: date-time - installation: *706 - organization: *707 - projects_v2_item: &745 + installation: *707 + organization: *708 + projects_v2_item: &746 title: Projects v2 Item description: An item belonging to a project type: object @@ -163857,7 +163895,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *268 + content_type: *269 creator: *4 created_at: type: string @@ -163979,9 +164017,9 @@ webhooks: - 'null' to: type: string - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164063,9 +164101,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164146,9 +164184,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164253,7 +164291,7 @@ webhooks: oneOf: - type: string - type: integer - - &746 + - &747 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -164277,7 +164315,7 @@ webhooks: required: - id - name - - &747 + - &748 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -164317,8 +164355,8 @@ webhooks: oneOf: - type: string - type: integer - - *746 - *747 + - *748 type: - 'null' - string @@ -164341,9 +164379,9 @@ webhooks: - 'null' required: - body - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164440,9 +164478,9 @@ webhooks: type: - string - 'null' - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164525,10 +164563,10 @@ webhooks: type: string enum: - restored - changes: *748 - installation: *706 - organization: *707 - projects_v2_item: *745 + changes: *749 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164610,9 +164648,9 @@ webhooks: type: string enum: - reopened - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -164693,9 +164731,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -164776,9 +164814,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -164924,9 +164962,9 @@ webhooks: - string - 'null' format: date - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -164997,10 +165035,10 @@ webhooks: title: public event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - repository @@ -165077,13 +165115,13 @@ webhooks: type: string enum: - assigned - assignee: *725 - enterprise: *705 - installation: *706 - number: &750 + assignee: *726 + enterprise: *706 + installation: *707 + number: &751 description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -167454,7 +167492,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -167536,11 +167574,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -169904,7 +169942,7 @@ webhooks: - draft reason: type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -169986,11 +170024,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -172354,7 +172392,7 @@ webhooks: - draft reason: type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -172436,13 +172474,13 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: &751 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: &752 allOf: - - *564 + - *565 - type: object properties: allow_auto_merge: @@ -172504,7 +172542,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *708 + repository: *709 sender: *4 required: - action @@ -172585,12 +172623,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -172670,11 +172708,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *705 - milestone: *265 - number: *750 - organization: *707 - pull_request: &752 + enterprise: *706 + milestone: *266 + number: *751 + organization: *708 + pull_request: &753 title: Pull Request type: object properties: @@ -175023,7 +175061,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -175102,11 +175140,11 @@ webhooks: type: string enum: - dequeued - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -177474,7 +177512,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *708 + repository: *709 sender: *4 required: - action @@ -177598,12 +177636,12 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -177683,11 +177721,11 @@ webhooks: type: string enum: - enqueued - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -180040,7 +180078,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -180120,11 +180158,11 @@ webhooks: type: string enum: - labeled - enterprise: *705 - installation: *706 - label: *724 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + label: *725 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -182494,7 +182532,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -182575,10 +182613,10 @@ webhooks: type: string enum: - locked - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -184946,7 +184984,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -185026,12 +185064,12 @@ webhooks: type: string enum: - milestoned - enterprise: *705 - milestone: *265 - number: *750 - organization: *707 - pull_request: *752 - repository: *708 + enterprise: *706 + milestone: *266 + number: *751 + organization: *708 + pull_request: *753 + repository: *709 sender: *4 required: - action @@ -185110,12 +185148,12 @@ webhooks: type: string enum: - opened - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -185196,12 +185234,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -185281,12 +185319,12 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -185661,9 +185699,9 @@ webhooks: - start_side - side - reactions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -187915,7 +187953,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -187995,7 +188033,7 @@ webhooks: type: string enum: - deleted - comment: &754 + comment: &755 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -188288,9 +188326,9 @@ webhooks: - start_side - side - reactions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -190530,7 +190568,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -190610,11 +190648,11 @@ webhooks: type: string enum: - edited - changes: *753 - comment: *754 - enterprise: *705 - installation: *706 - organization: *707 + changes: *754 + comment: *755 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -192857,7 +192895,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -192938,9 +192976,9 @@ webhooks: type: string enum: - dismissed - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -195195,7 +195233,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 review: description: The review that was affected. type: object @@ -195446,9 +195484,9 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -197562,8 +197600,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 - review: &755 + repository: *709 + review: &756 description: The review that was affected. type: object properties: @@ -197801,12 +197839,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -200175,7 +200213,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_reviewer: title: User type: @@ -200261,12 +200299,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -202642,7 +202680,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_team: title: Team description: Groups of organization members that gives permissions @@ -202837,12 +202875,12 @@ webhooks: type: string enum: - review_requested - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -205213,7 +205251,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_reviewer: title: User type: @@ -205300,12 +205338,12 @@ webhooks: type: string enum: - review_requested - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -207667,7 +207705,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_team: title: Team description: Groups of organization members that gives permissions @@ -207851,9 +207889,9 @@ webhooks: type: string enum: - submitted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -210111,8 +210149,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 - review: *755 + repository: *709 + review: *756 sender: *4 required: - action @@ -210192,9 +210230,9 @@ webhooks: type: string enum: - resolved - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -212347,7 +212385,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 sender: *4 thread: type: object @@ -212744,9 +212782,9 @@ webhooks: type: string enum: - unresolved - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -214882,7 +214920,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 sender: *4 thread: type: object @@ -215281,10 +215319,10 @@ webhooks: type: string before: type: string - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -217641,7 +217679,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -217723,11 +217761,11 @@ webhooks: type: string enum: - unassigned - assignee: *756 - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + assignee: *757 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -220099,7 +220137,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -220178,11 +220216,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *705 - installation: *706 - label: *724 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + label: *725 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -222543,7 +222581,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -222624,10 +222662,10 @@ webhooks: type: string enum: - unlocked - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -224978,7 +225016,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -225181,7 +225219,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *705 + enterprise: *706 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -225276,8 +225314,8 @@ webhooks: - url - author - committer - installation: *706 - organization: *707 + installation: *707 + organization: *708 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -225876,9 +225914,9 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 registry_package: type: object properties: @@ -226355,7 +226393,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *739 + items: *740 summary: type: string tag_name: @@ -226411,7 +226449,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -226489,9 +226527,9 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 registry_package: type: object properties: @@ -226803,7 +226841,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *739 + items: *740 summary: type: string tag_name: @@ -226853,7 +226891,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -226930,10 +226968,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - release: &757 + enterprise: *706 + installation: *707 + organization: *708 + release: &758 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -227264,7 +227302,7 @@ webhooks: - updated_at - zipball_url - body - repository: *708 + repository: *709 sender: *4 required: - action @@ -227341,11 +227379,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -227462,11 +227500,11 @@ webhooks: type: boolean required: - to - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -227544,9 +227582,9 @@ webhooks: type: string enum: - prereleased - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -227882,7 +227920,7 @@ webhooks: - string - 'null' format: uri - repository: *708 + repository: *709 sender: *4 required: - action @@ -227958,10 +227996,10 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - release: &758 + enterprise: *706 + installation: *707 + organization: *708 + release: &759 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -228294,7 +228332,7 @@ webhooks: - string - 'null' format: uri - repository: *708 + repository: *709 sender: *4 required: - action @@ -228370,11 +228408,11 @@ webhooks: type: string enum: - released - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -228450,11 +228488,11 @@ webhooks: type: string enum: - unpublished - enterprise: *705 - installation: *706 - organization: *707 - release: *758 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *759 + repository: *709 sender: *4 required: - action @@ -228530,11 +228568,11 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_advisory: *628 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_advisory: *629 sender: *4 required: - action @@ -228610,11 +228648,11 @@ webhooks: type: string enum: - reported - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_advisory: *628 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_advisory: *629 sender: *4 required: - action @@ -228690,10 +228728,10 @@ webhooks: type: string enum: - archived - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228770,10 +228808,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228851,10 +228889,10 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228939,10 +228977,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229057,10 +229095,10 @@ webhooks: - 'null' items: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229132,10 +229170,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 status: type: string @@ -229216,10 +229254,10 @@ webhooks: type: string enum: - privatized - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229296,10 +229334,10 @@ webhooks: type: string enum: - publicized - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229393,10 +229431,10 @@ webhooks: - name required: - repository - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229476,11 +229514,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 sender: *4 required: - action @@ -229558,11 +229596,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 sender: *4 required: - action @@ -229640,11 +229678,11 @@ webhooks: type: string enum: - edited - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 changes: type: object properties: @@ -229663,16 +229701,16 @@ webhooks: properties: added: type: array - items: *281 + items: *282 deleted: type: array - items: *281 + items: *282 updated: type: array items: type: object properties: - condition: *281 + condition: *282 changes: type: object properties: @@ -229705,16 +229743,16 @@ webhooks: properties: added: type: array - items: *584 + items: *585 deleted: type: array - items: *584 + items: *585 updated: type: array items: type: object properties: - rule: *584 + rule: *585 changes: type: object properties: @@ -229951,10 +229989,10 @@ webhooks: - from required: - owner - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230032,10 +230070,10 @@ webhooks: type: string enum: - unarchived - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230113,7 +230151,7 @@ webhooks: type: string enum: - create - alert: &759 + alert: &760 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -230238,10 +230276,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230451,10 +230489,10 @@ webhooks: type: string enum: - dismissed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230532,11 +230570,11 @@ webhooks: type: string enum: - reopen - alert: *759 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *760 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230738,10 +230776,10 @@ webhooks: enum: - fixed - open - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230819,7 +230857,7 @@ webhooks: type: string enum: - assigned - alert: &760 + alert: &761 type: object properties: number: *170 @@ -230948,10 +230986,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231029,11 +231067,11 @@ webhooks: type: string enum: - created - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231114,11 +231152,11 @@ webhooks: type: string enum: - created - alert: *760 - installation: *706 - location: *761 - organization: *707 - repository: *708 + alert: *761 + installation: *707 + location: *762 + organization: *708 + repository: *709 sender: *4 required: - location @@ -231356,11 +231394,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231438,11 +231476,11 @@ webhooks: type: string enum: - reopened - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231520,11 +231558,11 @@ webhooks: type: string enum: - resolved - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231602,12 +231640,12 @@ webhooks: type: string enum: - unassigned - alert: *760 + alert: *761 assignee: *4 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231685,11 +231723,11 @@ webhooks: type: string enum: - validated - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231819,10 +231857,10 @@ webhooks: - organization - enterprise - - repository: *708 - enterprise: *705 - installation: *706 - organization: *707 + repository: *709 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -231900,11 +231938,11 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - security_advisory: &762 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + security_advisory: &763 description: The details of the security advisory, including summary, description, and severity. type: object @@ -232090,11 +232128,11 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - security_advisory: *762 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + security_advisory: *763 sender: *4 required: - action @@ -232167,10 +232205,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -232356,11 +232394,11 @@ webhooks: from: type: object properties: - security_and_analysis: *280 - enterprise: *705 - installation: *706 - organization: *707 - repository: *327 + security_and_analysis: *281 + enterprise: *706 + installation: *707 + organization: *708 + repository: *328 sender: *4 required: - changes @@ -232438,12 +232476,12 @@ webhooks: type: string enum: - cancelled - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: &763 + sponsorship: &764 type: object properties: created_at: @@ -232748,12 +232786,12 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - sponsorship @@ -232841,12 +232879,12 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -232923,17 +232961,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &764 + effective_date: &765 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - sponsorship @@ -233007,7 +233045,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &765 + changes: &766 type: object properties: tier: @@ -233051,13 +233089,13 @@ webhooks: - from required: - tier - effective_date: *764 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + effective_date: *765 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -233134,13 +233172,13 @@ webhooks: type: string enum: - tier_changed - changes: *765 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + changes: *766 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -233214,10 +233252,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -233301,10 +233339,10 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -233738,15 +233776,15 @@ webhooks: type: - string - 'null' - enterprise: *705 + enterprise: *706 id: description: The unique identifier of the status. type: integer - installation: *706 + installation: *707 name: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 sha: description: The Commit SHA. @@ -233862,9 +233900,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -233954,9 +233992,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -234046,9 +234084,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -234138,9 +234176,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -234217,12 +234255,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - team: &766 + team: &767 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -234452,9 +234490,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -234924,7 +234962,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -235000,9 +235038,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -235472,7 +235510,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -235549,9 +235587,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -236021,7 +236059,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -236165,9 +236203,9 @@ webhooks: - from required: - permissions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -236637,7 +236675,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - changes @@ -236715,9 +236753,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -237187,7 +237225,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -237263,10 +237301,10 @@ webhooks: type: string enum: - started - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -237339,17 +237377,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *705 + enterprise: *706 inputs: type: - object - 'null' additionalProperties: true - installation: *706 - organization: *707 + installation: *707 + organization: *708 ref: type: string - repository: *708 + repository: *709 sender: *4 workflow: type: string @@ -237431,10 +237469,10 @@ webhooks: type: string enum: - completed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: allOf: @@ -237690,7 +237728,7 @@ webhooks: type: string required: - conclusion - deployment: *480 + deployment: *481 required: - action - repository @@ -237769,10 +237807,10 @@ webhooks: type: string enum: - in_progress - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: allOf: @@ -238054,7 +238092,7 @@ webhooks: required: - status - steps - deployment: *480 + deployment: *481 required: - action - repository @@ -238133,10 +238171,10 @@ webhooks: type: string enum: - queued - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: type: object @@ -238282,7 +238320,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *480 + deployment: *481 required: - action - repository @@ -238361,10 +238399,10 @@ webhooks: type: string enum: - waiting - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: type: object @@ -238511,7 +238549,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *480 + deployment: *481 required: - action - repository @@ -238591,12 +238629,12 @@ webhooks: type: string enum: - completed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object @@ -239615,12 +239653,12 @@ webhooks: type: string enum: - in_progress - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object @@ -240624,12 +240662,12 @@ webhooks: type: string enum: - requested - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index ac4335174f..a8ec14472a 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -2151,7 +2151,7 @@ "/agents/repos/{owner}/{repo}/tasks": { "get": { "summary": "List tasks for repository", - "description": "Returns a list of tasks for a specific repository", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a list of tasks for a specific repository\n", "tags": [ "agent-tasks" ], @@ -2244,9 +2244,10 @@ "name": "is_archived", "in": "query", "schema": { - "type": "boolean" + "type": "boolean", + "default": false }, - "description": "Filter by archived status. When `true`, returns only archived tasks. When `false`, returns only non-archived tasks." + "description": "Filter by archived status. When `true`, returns only archived tasks. When `false` or omitted, returns only non-archived tasks. Defaults to `false`." }, { "name": "since", @@ -2811,7 +2812,7 @@ }, "post": { "summary": "Create a task", - "description": "Creates a new task for a repository", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates a new task for a repository\n", "tags": [ "agent-tasks" ], @@ -2871,7 +2872,7 @@ }, "model": { "type": "string", - "description": "Model identifier" + "description": "The model to use for this task. The allowed models may change over time and depend on the user's GitHub Copilot plan and organization policies. Currently supported values: `claude-sonnet-4.6`, `claude-opus-4.6`, `gpt-5.2-codex`, `gpt-5.3-codex`, `gpt-5.4`, `claude-sonnet-4.5`, `claude-opus-4.5`" }, "custom_agent": { "type": "string", @@ -2884,21 +2885,6 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" - }, - "event_type": { - "type": "string", - "description": "Type of event" - }, - "event_url": { - "type": "string", - "description": "URL of the triggering event" - }, - "event_identifiers": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Identifiers for tracking" } } }, @@ -3363,7 +3349,7 @@ "/agents/repos/{owner}/{repo}/tasks/{task_id}": { "get": { "summary": "Get a task by repo", - "description": "Returns a task by ID scoped to an owner/repo path", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a task by ID scoped to an owner/repo path\n", "tags": [ "agent-tasks" ], @@ -4122,7 +4108,7 @@ "/agents/tasks": { "get": { "summary": "List tasks", - "description": "Returns a list of tasks for the authenticated user", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a list of tasks for the authenticated user\n", "tags": [ "agent-tasks" ], @@ -4197,9 +4183,10 @@ "name": "is_archived", "in": "query", "schema": { - "type": "boolean" + "type": "boolean", + "default": false }, - "description": "Filter by archived status. When `true`, returns only archived tasks. When `false`, returns only non-archived tasks." + "description": "Filter by archived status. When `true`, returns only archived tasks. When `false` or omitted, returns only non-archived tasks. Defaults to `false`." }, { "name": "since", @@ -4702,7 +4689,7 @@ "/agents/tasks/{task_id}": { "get": { "summary": "Get a task by ID", - "description": "Returns a task by ID with its associated sessions", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a task by ID with its associated sessions\n", "tags": [ "agent-tasks" ], @@ -27904,6 +27891,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -28246,6 +28241,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -129138,6 +129142,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -129505,6 +129517,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -373875,6 +373896,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -374225,6 +374254,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -375685,6 +375723,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -376974,6 +377021,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -647511,7 +647567,7 @@ "/search/code": { "get": { "summary": "Search code", - "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", + "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\n> [!NOTE]\n> `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", "tags": [ "search" ], @@ -903259,6 +903315,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -906204,6 +906269,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -909149,6 +909223,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -912094,6 +912177,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -915039,6 +915131,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -917984,6 +918085,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -920929,6 +921039,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -923874,6 +923993,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index a39d850bf1..4bdcc258ca 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -876,7 +876,7 @@ paths: - subscriptions_url - type - url - type: &313 + type: &314 type: string description: The type of credit the user is receiving. enum: @@ -1041,7 +1041,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &630 + - &631 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1134,7 +1134,11 @@ paths: "/agents/repos/{owner}/{repo}/tasks": get: summary: List tasks for repository - description: Returns a list of tasks for a specific repository + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a list of tasks for a specific repository tags: - agent-tasks operationId: agent-tasks/list-tasks-for-repo @@ -1203,8 +1207,10 @@ paths: in: query schema: type: boolean + default: false description: Filter by archived status. When `true`, returns only archived - tasks. When `false`, returns only non-archived tasks. + tasks. When `false` or omitted, returns only non-archived tasks. Defaults + to `false`. - name: since in: query schema: @@ -1641,7 +1647,11 @@ paths: description: URL to relevant API documentation post: summary: Create a task - description: Creates a new task for a repository + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Creates a new task for a repository tags: - agent-tasks operationId: agent-tasks/create-task @@ -1687,7 +1697,11 @@ paths: description: User's written prompt model: type: string - description: Model identifier + description: 'The model to use for this task. The allowed models + may change over time and depend on the user''s GitHub Copilot + plan and organization policies. Currently supported values: `claude-sonnet-4.6`, + `claude-opus-4.6`, `gpt-5.2-codex`, `gpt-5.3-codex`, `gpt-5.4`, + `claude-sonnet-4.5`, `claude-opus-4.5`' custom_agent: type: string description: Custom agent identifier @@ -1697,17 +1711,6 @@ paths: base_ref: type: string description: Base ref for new branch/PR - event_type: - type: string - description: Type of event - event_url: - type: string - description: URL of the triggering event - event_identifiers: - type: array - items: - type: string - description: Identifiers for tracking examples: default: value: @@ -2060,7 +2063,11 @@ paths: "/agents/repos/{owner}/{repo}/tasks/{task_id}": get: summary: Get a task by repo - description: Returns a task by ID scoped to an owner/repo path + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a task by ID scoped to an owner/repo path tags: - agent-tasks operationId: agent-tasks/get-task-by-repo-and-id @@ -2639,7 +2646,11 @@ paths: "/agents/tasks": get: summary: List tasks - description: Returns a list of tasks for the authenticated user + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a list of tasks for the authenticated user tags: - agent-tasks operationId: agent-tasks/list-tasks @@ -2696,8 +2707,10 @@ paths: in: query schema: type: boolean + default: false description: Filter by archived status. When `true`, returns only archived - tasks. When `false`, returns only non-archived tasks. + tasks. When `false` or omitted, returns only non-archived tasks. Defaults + to `false`. - name: since in: query schema: @@ -3082,7 +3095,11 @@ paths: "/agents/tasks/{task_id}": get: summary: Get a task by ID - description: Returns a task by ID with its associated sessions + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a task by ID with its associated sessions tags: - agent-tasks operationId: agent-tasks/get-task-by-id @@ -4141,7 +4158,7 @@ paths: schema: type: integer default: 30 - - &203 + - &204 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -4150,7 +4167,7 @@ paths: required: false schema: type: string - - &204 + - &205 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4170,7 +4187,7 @@ paths: application/json: schema: type: array - items: &205 + items: &206 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4266,7 +4283,7 @@ paths: - installation_id - repository_id examples: - default: &206 + default: &207 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4401,7 +4418,7 @@ paths: description: Response content: application/json: - schema: &207 + schema: &208 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4536,7 +4553,7 @@ paths: - request - response examples: - default: &208 + default: &209 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -12006,6 +12023,15 @@ paths: parameters: - *38 - &189 + name: classification + in: query + description: |- + A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned. + + Can be: `malware`, `general` + schema: + type: string + - &190 name: state in: query description: |- @@ -12014,7 +12040,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &190 + - &191 name: severity in: query description: |- @@ -12023,7 +12049,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &191 + - &192 name: ecosystem in: query description: |- @@ -12032,14 +12058,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &192 + - &193 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &193 + - &194 name: epss_percentage in: query description: |- @@ -12051,7 +12077,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &470 + - &471 name: has in: query description: |- @@ -12065,7 +12091,7 @@ paths: type: string enum: - patch - - &194 + - &195 name: assignee in: query description: |- @@ -12074,7 +12100,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &195 + - &196 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -12084,7 +12110,7 @@ paths: enum: - development - runtime - - &196 + - &197 name: sort in: query description: |- @@ -12110,7 +12136,7 @@ paths: application/json: schema: type: array - items: &197 + items: &198 type: object description: A Dependabot alert. properties: @@ -12181,7 +12207,7 @@ paths: - transitive - inconclusive - - security_advisory: &471 + security_advisory: &472 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12264,6 +12290,13 @@ paths: - medium - high - critical + classification: + type: string + description: The classification of the advisory. + readOnly: true + enum: + - general + - malware cvss_severities: *61 epss: *62 cwes: @@ -12426,7 +12459,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &472 + auto_dismissed_at: &473 type: - string - 'null' @@ -12434,7 +12467,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &473 + dismissal_request: &474 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12497,7 +12530,7 @@ paths: - repository additionalProperties: false examples: - default: &198 + default: &199 value: - number: 2 state: dismissed @@ -13861,7 +13894,7 @@ paths: properties: action: type: string - discussion: &721 + discussion: &722 title: Discussion description: A Discussion in a repository. type: object @@ -14358,7 +14391,7 @@ paths: milestone: anyOf: - type: 'null' - - &265 + - &266 title: Milestone description: A collection of related issues and pull requests. @@ -14535,7 +14568,7 @@ paths: timeline_url: type: string format: uri - type: &229 + type: &230 title: Issue Type description: The type of issue. type: @@ -14646,7 +14679,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &642 + sub_issues_summary: &643 title: Sub-issues Summary type: object properties: @@ -14730,7 +14763,7 @@ paths: pin: anyOf: - type: 'null' - - &543 + - &544 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -14757,7 +14790,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &643 + issue_dependencies_summary: &644 title: Issue Dependencies Summary type: object properties: @@ -14776,7 +14809,7 @@ paths: - total_blocking issue_field_values: type: array - items: &528 + items: &529 title: Issue Field Value description: A value assigned to an issue field type: object @@ -15556,7 +15589,7 @@ paths: type: string release: allOf: - - &575 + - &576 title: Release description: A release. type: object @@ -15638,7 +15671,7 @@ paths: author: *4 assets: type: array - items: &576 + items: &577 title: Release Asset description: Data related to a release. type: object @@ -17902,7 +17935,7 @@ paths: - closed - all default: open - - &232 + - &233 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -17953,7 +17986,7 @@ paths: type: array items: *81 examples: - default: &233 + default: &234 value: - id: 1 node_id: MDU6SXNzdWUx @@ -19365,14 +19398,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &324 + - &325 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &325 + - &326 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -19434,7 +19467,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &328 + '301': &329 description: Moved permanently content: application/json: @@ -19456,7 +19489,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &551 + - &552 name: all description: If `true`, show notifications marked as read. in: query @@ -19464,7 +19497,7 @@ paths: schema: type: boolean default: false - - &552 + - &553 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -19474,7 +19507,7 @@ paths: type: boolean default: false - *86 - - &553 + - &554 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -19854,7 +19887,7 @@ paths: type: boolean examples: - false - security_and_analysis: &280 + security_and_analysis: &281 type: - object - 'null' @@ -20058,7 +20091,7 @@ paths: - url - subscription_url examples: - default: &554 + default: &555 value: - id: '1' repository: @@ -21628,7 +21661,7 @@ paths: required: false schema: type: string - - &698 + - &699 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -21774,7 +21807,7 @@ paths: parameters: - *73 - *115 - - &699 + - &700 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -21886,7 +21919,7 @@ paths: - *115 - *117 - *116 - - &700 + - &701 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -21894,7 +21927,7 @@ paths: schema: type: string - *118 - - &701 + - &702 name: sku description: The SKU to query for usage. in: query @@ -22863,7 +22896,7 @@ paths: type: integer repository_cache_usages: type: array - items: &335 + items: &336 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -24225,7 +24258,7 @@ paths: - all - local_only - selected - selected_actions_url: &341 + selected_actions_url: &342 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -24308,7 +24341,7 @@ paths: description: Response content: application/json: - schema: &345 + schema: &346 type: object properties: days: @@ -24350,7 +24383,7 @@ paths: required: true content: application/json: - schema: &346 + schema: &347 type: object properties: days: @@ -24407,7 +24440,7 @@ paths: required: - approval_policy examples: - default: &347 + default: &348 value: approval_policy: first_time_contributors '404': *6 @@ -24466,7 +24499,7 @@ paths: description: Response content: application/json: - schema: &348 + schema: &349 type: object required: - run_workflows_from_fork_pull_requests @@ -24520,7 +24553,7 @@ paths: required: true content: application/json: - schema: &349 + schema: &350 type: object required: - run_workflows_from_fork_pull_requests @@ -25155,7 +25188,7 @@ paths: description: Response content: application/json: - schema: &350 + schema: &351 type: object properties: default_workflow_permissions: &145 @@ -25206,7 +25239,7 @@ paths: required: false content: application/json: - schema: &351 + schema: &352 type: object properties: default_workflow_permissions: *145 @@ -26346,7 +26379,7 @@ paths: application/json: schema: type: array - items: &352 + items: &353 title: Runner Application description: Runner Application type: object @@ -26371,7 +26404,7 @@ paths: - download_url - filename examples: - default: &353 + default: &354 value: - os: osx architecture: x64 @@ -26457,7 +26490,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &354 + '201': &355 description: Response content: application/json: @@ -26572,7 +26605,7 @@ paths: - token - expires_at examples: - default: &355 + default: &356 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -26611,7 +26644,7 @@ paths: application/json: schema: *156 examples: - default: &356 + default: &357 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -26645,7 +26678,7 @@ paths: application/json: schema: *154 examples: - default: &357 + default: &358 value: id: 23 name: MBP @@ -26871,7 +26904,7 @@ paths: - *73 - *153 responses: - '200': &358 + '200': &359 description: Response content: application/json: @@ -26928,7 +26961,7 @@ paths: parameters: - *73 - *153 - - &359 + - &360 name: name description: The name of a self-hosted runner's custom label. in: path @@ -27060,7 +27093,7 @@ paths: description: Response content: application/json: - schema: &371 + schema: &372 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -27095,7 +27128,7 @@ paths: - key_id - key examples: - default: &372 + default: &373 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27508,7 +27541,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *73 - - &340 + - &341 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -28729,12 +28762,12 @@ paths: required: - subject_digests examples: - default: &680 + default: &681 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &681 + withPredicateType: &682 value: subject_digests: - sha256:abc123 @@ -28779,7 +28812,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &682 + default: &683 value: attestations_subject_digests: - sha256:abc: @@ -29112,7 +29145,7 @@ paths: initiator: type: string examples: - default: &385 + default: &386 value: attestations: - bundle: @@ -29465,7 +29498,7 @@ paths: parent: anyOf: - type: 'null' - - &244 + - &245 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -30068,7 +30101,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *73 - - &409 + - &410 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -30078,7 +30111,7 @@ paths: schema: &177 type: string description: The name of the tool used to generate the code scanning analysis. - - &410 + - &411 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -30102,7 +30135,7 @@ paths: be returned. in: query required: false - schema: &412 + schema: &413 type: string description: State of a code scanning alert. enum: @@ -30125,7 +30158,7 @@ paths: be returned. in: query required: false - schema: &413 + schema: &414 type: string description: Severity of a code scanning alert. enum: @@ -30159,7 +30192,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: &414 + instances_url: &415 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -30181,7 +30214,7 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: &415 + dismissed_reason: &416 type: - string - 'null' @@ -30192,14 +30225,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &416 + dismissed_comment: &417 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &417 + rule: &418 type: object properties: id: @@ -30260,7 +30293,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &418 + tool: &419 type: object properties: name: *177 @@ -30271,26 +30304,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *178 - most_recent_instance: &419 + most_recent_instance: &420 type: object properties: - ref: &411 + ref: &412 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &429 + analysis_key: &430 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &430 + environment: &431 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &431 + category: &432 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -30310,7 +30343,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &432 + location: &433 type: object description: Describe a region within a file for the alert. properties: @@ -30331,7 +30364,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &433 + items: &434 type: - string - 'null' @@ -31621,7 +31654,7 @@ paths: type: integer codespaces: type: array - items: &234 + items: &235 type: object title: Codespace description: A codespace. @@ -31656,7 +31689,7 @@ paths: machine: anyOf: - type: 'null' - - &445 + - &446 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -31943,7 +31976,7 @@ paths: - pulls_url - recent_folders examples: - default: &235 + default: &236 value: total_count: 3 codespaces: @@ -32608,7 +32641,7 @@ paths: - updated_at - visibility examples: - default: &446 + default: &447 value: total_count: 2 secrets: @@ -32646,7 +32679,7 @@ paths: description: Response content: application/json: - schema: &447 + schema: &448 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -32681,7 +32714,7 @@ paths: - key_id - key examples: - default: &448 + default: &449 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32713,7 +32746,7 @@ paths: application/json: schema: *186 examples: - default: &450 + default: &451 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -33180,7 +33213,7 @@ paths: currently being billed. seats: type: array - items: &237 + items: &238 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -34151,7 +34184,7 @@ paths: application/json: schema: type: array - items: &317 + items: &318 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -34466,7 +34499,7 @@ paths: - date additionalProperties: true examples: - default: &318 + default: &319 value: - date: '2024-06-24' total_active_users: 24 @@ -34568,7 +34601,7 @@ paths: '500': *53 '403': *27 '404': *6 - '422': &319 + '422': &320 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -34753,6 +34786,7 @@ paths: - *191 - *192 - *193 + - *194 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -34782,7 +34816,7 @@ paths: enum: - patch - deployment - - *194 + - *195 - name: runtime_risk in: query description: |- @@ -34791,8 +34825,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *195 - *196 + - *197 - *59 - *45 - *46 @@ -34804,9 +34838,9 @@ paths: application/json: schema: type: array - items: *197 + items: *198 examples: - default: *198 + default: *199 '304': *35 '400': *14 '403': *27 @@ -34850,7 +34884,7 @@ paths: type: integer secrets: type: array - items: &199 + items: &200 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -34929,7 +34963,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &477 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -34948,7 +34982,7 @@ paths: - key_id - key examples: - default: &477 + default: &478 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34978,7 +35012,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *200 examples: default: value: @@ -35275,7 +35309,7 @@ paths: application/json: schema: type: array - items: &246 + items: &247 title: Package description: A software package type: object @@ -35346,7 +35380,7 @@ paths: - created_at - updated_at examples: - default: &247 + default: &248 value: - id: 197 name: hello_docker @@ -35516,7 +35550,7 @@ paths: application/json: schema: type: array - items: &223 + items: &224 title: Organization Invitation description: Organization Invitation type: object @@ -35570,7 +35604,7 @@ paths: - invitation_teams_url - node_id examples: - default: &224 + default: &225 value: - id: 1 login: monalisa @@ -35637,7 +35671,7 @@ paths: application/json: schema: type: array - items: &200 + items: &201 title: Org Hook description: Org Hook type: object @@ -35822,9 +35856,9 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: - default: &201 + default: &202 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -35872,7 +35906,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *73 - - &202 + - &203 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -35885,9 +35919,9 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: - default: *201 + default: *202 '404': *6 x-github: githubCloudOnly: false @@ -35915,7 +35949,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *73 - - *202 + - *203 requestBody: required: false content: @@ -35961,7 +35995,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: default: value: @@ -36003,7 +36037,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *73 - - *202 + - *203 responses: '204': description: Response @@ -36031,7 +36065,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *73 - - *202 + - *203 responses: '200': description: Response @@ -36062,7 +36096,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *73 - - *202 + - *203 requestBody: required: false content: @@ -36113,10 +36147,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *73 - - *202 - - *17 - *203 + - *17 - *204 + - *205 responses: '200': description: Response @@ -36124,9 +36158,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *206 + default: *207 '400': *14 '422': *15 x-github: @@ -36152,16 +36186,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *73 - - *202 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *207 + schema: *208 examples: - default: *208 + default: *209 '400': *14 '422': *15 x-github: @@ -36187,7 +36221,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *73 - - *202 + - *203 - *16 responses: '202': *37 @@ -36217,7 +36251,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *73 - - *202 + - *203 responses: '204': description: Response @@ -36240,7 +36274,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *73 - - &213 + - &214 name: actor_type in: path description: The type of the actor @@ -36253,14 +36287,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &214 + - &215 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &209 + - &210 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -36268,7 +36302,7 @@ paths: required: true schema: type: string - - &210 + - &211 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -36363,12 +36397,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *73 - - *209 - *210 + - *211 - *19 - *17 - *59 - - &219 + - &220 name: sort description: The property to sort the results by. in: query @@ -36447,14 +36481,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *73 - - *209 - *210 + - *211 responses: '200': description: Response content: application/json: - schema: &211 + schema: &212 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -36470,7 +36504,7 @@ paths: type: integer format: int64 examples: - default: &212 + default: &213 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -36491,23 +36525,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *73 - - &215 + - &216 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *209 - *210 + - *211 responses: '200': description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: *212 + default: *213 x-github: enabledForGitHubApps: true category: orgs @@ -36526,18 +36560,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *73 - - *209 - *210 - - *213 + - *211 - *214 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: *212 + default: *213 x-github: enabledForGitHubApps: true category: orgs @@ -36555,9 +36589,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *73 - - *209 - *210 - - &216 + - *211 + - &217 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -36570,7 +36604,7 @@ paths: description: Response content: application/json: - schema: &217 + schema: &218 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -36586,7 +36620,7 @@ paths: type: integer format: int64 examples: - default: &218 + default: &219 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -36623,18 +36657,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *73 - - *215 - - *209 - - *210 - *216 + - *210 + - *211 + - *217 responses: '200': description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 x-github: enabledForGitHubApps: true category: orgs @@ -36652,19 +36686,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *73 - - *213 - *214 - - *209 + - *215 - *210 - - *216 + - *211 + - *217 responses: '200': description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 x-github: enabledForGitHubApps: true category: orgs @@ -36682,13 +36716,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *73 - - *215 - - *209 + - *216 - *210 + - *211 - *19 - *17 - *59 - - *219 + - *220 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -36772,7 +36806,7 @@ paths: application/json: schema: *20 examples: - default: &515 + default: &516 value: id: 1 account: @@ -36938,12 +36972,12 @@ paths: application/json: schema: anyOf: - - &221 + - &222 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &220 + limit: &221 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -36971,7 +37005,7 @@ paths: properties: {} additionalProperties: false examples: - default: &222 + default: &223 value: limit: collaborators_only origin: organization @@ -37000,13 +37034,13 @@ paths: required: true content: application/json: - schema: &516 + schema: &517 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *220 + limit: *221 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -37031,9 +37065,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *222 + default: *223 '422': *15 x-github: githubCloudOnly: false @@ -37109,9 +37143,9 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 '404': *6 @@ -37188,7 +37222,7 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: default: value: @@ -37243,7 +37277,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *73 - - &225 + - &226 name: invitation_id description: The unique identifier of the invitation. in: path @@ -37274,7 +37308,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *73 - - *225 + - *226 - *17 - *19 responses: @@ -37286,7 +37320,7 @@ paths: type: array items: *187 examples: - default: &245 + default: &246 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -37329,7 +37363,7 @@ paths: application/json: schema: type: array - items: &226 + items: &227 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -37572,9 +37606,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: - default: &227 + default: &228 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -37630,7 +37664,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *73 - - &228 + - &229 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -37731,9 +37765,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: - default: *227 + default: *228 '404': *6 '422': *7 x-github: @@ -37758,7 +37792,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *73 - - *228 + - *229 responses: '204': *183 '404': *6 @@ -37788,7 +37822,7 @@ paths: application/json: schema: type: array - items: *229 + items: *230 examples: default: value: @@ -37876,9 +37910,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: &230 + default: &231 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -37911,7 +37945,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *73 - - &231 + - &232 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -37967,9 +38001,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 '404': *6 '422': *7 x-github: @@ -37994,7 +38028,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *73 - - *231 + - *232 responses: '204': description: Response @@ -38057,7 +38091,7 @@ paths: - closed - all default: open - - *232 + - *233 - name: type description: Can be the name of an issue type. in: query @@ -38088,7 +38122,7 @@ paths: type: array items: *81 examples: - default: *233 + default: *234 headers: Link: *65 '404': *6 @@ -38248,9 +38282,9 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '304': *35 '500': *53 '401': *23 @@ -38277,7 +38311,7 @@ paths: parameters: - *73 - *69 - - &236 + - &237 name: codespace_name in: path required: true @@ -38312,15 +38346,15 @@ paths: parameters: - *73 - *69 - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: &444 + default: &445 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -38500,7 +38534,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *237 + schema: *238 examples: default: value: @@ -38576,7 +38610,7 @@ paths: description: Response content: application/json: - schema: &238 + schema: &239 title: Org Membership description: Org Membership type: object @@ -38645,7 +38679,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &239 + response-if-user-has-an-active-admin-membership-with-organization: &240 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -38746,9 +38780,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - response-if-user-already-had-membership-with-organization: *239 + response-if-user-already-had-membership-with-organization: *240 '422': *15 '403': *27 '451': *15 @@ -38821,7 +38855,7 @@ paths: application/json: schema: type: array - items: &240 + items: &241 title: Migration description: A migration. type: object @@ -39159,7 +39193,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -39338,7 +39372,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *73 - - &241 + - &242 name: migration_id description: The unique identifier of the migration. in: path @@ -39366,7 +39400,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -39536,7 +39570,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *73 - - *241 + - *242 responses: '302': description: Response @@ -39558,7 +39592,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *73 - - *241 + - *242 responses: '204': description: Response @@ -39582,8 +39616,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *73 - - *241 - - &662 + - *242 + - &663 name: repo_name description: repo_name parameter in: path @@ -39611,7 +39645,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *73 - - *241 + - *242 - *17 - *19 responses: @@ -39665,7 +39699,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &243 + items: &244 title: Organization Role description: Organization roles type: object @@ -39842,7 +39876,7 @@ paths: parameters: - *73 - *75 - - &242 + - &243 name: role_id description: The unique identifier of the role. in: path @@ -39879,7 +39913,7 @@ paths: parameters: - *73 - *75 - - *242 + - *243 responses: '204': description: Response @@ -39932,7 +39966,7 @@ paths: parameters: - *73 - *69 - - *242 + - *243 responses: '204': description: Response @@ -39964,7 +39998,7 @@ paths: parameters: - *73 - *69 - - *242 + - *243 responses: '204': description: Response @@ -39993,13 +40027,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *73 - - *242 + - *243 responses: '200': description: Response content: application/json: - schema: *243 + schema: *244 examples: default: value: @@ -40050,7 +40084,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *73 - - *242 + - *243 - *17 - *19 responses: @@ -40129,7 +40163,7 @@ paths: parent: anyOf: - type: 'null' - - *244 + - *245 type: description: The ownership type of the team type: string @@ -40162,7 +40196,7 @@ paths: - type - parent examples: - default: *245 + default: *246 headers: Link: *65 '404': @@ -40192,7 +40226,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *73 - - *242 + - *243 - *17 - *19 responses: @@ -40221,7 +40255,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *244 + items: *245 name: type: - string @@ -40531,7 +40565,7 @@ paths: - nuget - container - *73 - - &663 + - &664 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -40567,12 +40601,12 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *247 + default: *248 '403': *27 '401': *23 - '400': &665 + '400': &666 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -40594,7 +40628,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &248 + - &249 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -40612,7 +40646,7 @@ paths: - docker - nuget - container - - &249 + - &250 name: package_name description: The name of the package. in: path @@ -40625,7 +40659,7 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: default: value: @@ -40677,8 +40711,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *248 - *249 + - *250 - *73 responses: '204': @@ -40711,8 +40745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - name: token description: package token @@ -40745,8 +40779,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *248 - *249 + - *250 - *73 - *19 - *17 @@ -40767,7 +40801,7 @@ paths: application/json: schema: type: array - items: &250 + items: &251 title: Package Version description: A version of a software package type: object @@ -40902,10 +40936,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - &251 + - &252 name: package_version_id description: Unique identifier of the package version. in: path @@ -40917,7 +40951,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -40953,10 +40987,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - *251 + - *252 responses: '204': description: Response @@ -40988,10 +41022,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - *251 + - *252 responses: '204': description: Response @@ -41021,7 +41055,7 @@ paths: - *73 - *17 - *19 - - &252 + - &253 name: sort description: The property by which to sort the results. in: query @@ -41032,7 +41066,7 @@ paths: - created_at default: created_at - *59 - - &253 + - &254 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -41044,7 +41078,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &254 + - &255 name: repository description: The name of the repository to use to filter the results. in: query @@ -41053,7 +41087,7 @@ paths: type: string examples: - Hello-World - - &255 + - &256 name: permission description: The permission to use to filter the results. in: query @@ -41062,7 +41096,7 @@ paths: type: string examples: - issues_read - - &256 + - &257 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -41072,7 +41106,7 @@ paths: schema: type: string format: date-time - - &257 + - &258 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -41082,7 +41116,7 @@ paths: schema: type: string format: date-time - - &258 + - &259 name: token_id description: The ID of the token in: query @@ -41401,7 +41435,7 @@ paths: type: array items: *152 examples: - default: &259 + default: &260 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -41538,14 +41572,14 @@ paths: - *73 - *17 - *19 - - *252 - - *59 - *253 + - *59 - *254 - *255 - *256 - *257 - *258 + - *259 responses: '500': *53 '422': *15 @@ -41829,7 +41863,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 x-github: @@ -41871,7 +41905,7 @@ paths: type: integer configurations: type: array - items: &260 + items: &261 title: Organization private registry description: Private registry configuration for an organization type: object @@ -42305,7 +42339,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &261 + org-private-registry-with-selected-visibility: &262 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -42403,9 +42437,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *260 + schema: *261 examples: - default: *261 + default: *262 '404': *6 x-github: githubCloudOnly: false @@ -42633,7 +42667,7 @@ paths: application/json: schema: type: array - items: &262 + items: &263 title: Projects v2 Project description: A projects v2 project type: object @@ -42707,7 +42741,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &749 + - &750 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -42792,7 +42826,7 @@ paths: - deleted_at - deleted_by examples: - default: &263 + default: &264 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -42895,7 +42929,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &264 + - &265 name: project_number description: The project's number. in: path @@ -42908,9 +42942,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -42933,7 +42967,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true description: Details of the draft item to create in the project. @@ -42967,7 +43001,7 @@ paths: description: Response content: application/json: - schema: &269 + schema: &270 title: Projects v2 Item description: An item belonging to a project type: object @@ -42981,7 +43015,7 @@ paths: content: oneOf: - *81 - - &459 + - &460 title: Pull Request Simple description: Pull Request Simple type: object @@ -43101,7 +43135,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 active_lock_reason: type: - string @@ -43184,7 +43218,7 @@ paths: _links: type: object properties: - comments: &266 + comments: &267 title: Link description: Hypermedia Link type: object @@ -43193,13 +43227,13 @@ paths: type: string required: - href - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + commits: *267 + statuses: *267 + html: *267 + issue: *267 + review_comments: *267 + review_comment: *267 + self: *267 required: - comments - commits @@ -43210,7 +43244,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: &561 + auto_merge: &562 title: Auto merge description: The status of auto merging a pull request. type: @@ -43310,7 +43344,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &268 + content_type: &269 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -43354,7 +43388,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &270 + draft_issue: &271 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -43428,7 +43462,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *264 + - *265 - *73 - *17 - *45 @@ -43440,7 +43474,7 @@ paths: application/json: schema: type: array - items: &267 + items: &268 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -43593,7 +43627,7 @@ paths: - updated_at - project_url examples: - default: &685 + default: &686 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43723,7 +43757,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *264 + - *265 - *73 requestBody: required: true @@ -43770,7 +43804,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &686 + items: &687 type: object properties: name: @@ -43807,7 +43841,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &687 + iteration_configuration: &688 type: object description: The configuration for iteration fields. properties: @@ -43857,7 +43891,7 @@ paths: value: name: Due date data_type: date - single_select_field: &688 + single_select_field: &689 summary: Create a single select field value: name: Priority @@ -43884,7 +43918,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &689 + iteration_field: &690 summary: Create an iteration field value: name: Sprint @@ -43908,9 +43942,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *267 + schema: *268 examples: - text_field: &690 + text_field: &691 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -43919,7 +43953,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &691 + number_field: &692 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -43928,7 +43962,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &692 + date_field: &693 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -43937,7 +43971,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &693 + single_select_field: &694 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43971,7 +44005,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &694 + iteration_field: &695 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -44016,8 +44050,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *264 - - &695 + - *265 + - &696 name: field_id description: The unique identifier of the field. in: path @@ -44030,9 +44064,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: - default: &696 + default: &697 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -44088,7 +44122,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *264 + - *265 - *73 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -44121,7 +44155,7 @@ paths: application/json: schema: type: array - items: &271 + items: &272 title: Projects v2 Item description: An item belonging to a project type: object @@ -44138,7 +44172,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *268 + content_type: *269 content: type: - object @@ -44188,7 +44222,7 @@ paths: - updated_at - archived_at examples: - default: &272 + default: &273 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -44886,7 +44920,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -44956,22 +44990,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *271 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *271 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *271 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *271 '304': *35 '403': *27 '401': *23 @@ -44991,9 +45025,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *264 + - *265 - *73 - - &273 + - &274 name: item_id description: The unique identifier of the project item. in: path @@ -45019,9 +45053,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -45042,9 +45076,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *264 + - *265 - *73 - - *273 + - *274 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -45117,13 +45151,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *273 + number_field: *273 + date_field: *273 + single_select_field: *273 + iteration_field: *273 '401': *23 '403': *27 '404': *6 @@ -45143,9 +45177,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *264 + - *265 - *73 - - *273 + - *274 responses: '204': description: Response @@ -45169,7 +45203,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true content: @@ -45243,7 +45277,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &677 + schema: &678 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -45347,7 +45381,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &274 + value: &275 value: id: 1 number: 1 @@ -45393,10 +45427,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *274 + value: *275 roadmap_view: summary: Response for creating a roadmap view - value: *274 + value: *275 '304': *35 '403': *27 '401': *23 @@ -45424,9 +45458,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *264 + - *265 - *73 - - &697 + - &698 name: view_number description: The number that identifies the project view. in: path @@ -45458,9 +45492,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -45493,7 +45527,7 @@ paths: application/json: schema: type: array - items: &275 + items: &276 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -45571,7 +45605,7 @@ paths: - property_name - value_type examples: - default: &276 + default: &277 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -45631,7 +45665,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *275 + items: *276 minItems: 1 maxItems: 100 required: @@ -45661,9 +45695,9 @@ paths: application/json: schema: type: array - items: *275 + items: *276 examples: - default: *276 + default: *277 '403': *27 '404': *6 x-github: @@ -45685,7 +45719,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *73 - - &277 + - &278 name: custom_property_name description: The custom property name in: path @@ -45697,9 +45731,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: &278 + default: &279 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -45734,7 +45768,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *73 - - *277 + - *278 requestBody: required: true content: @@ -45814,9 +45848,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: *278 + default: *279 '403': *27 '404': *6 x-github: @@ -45840,7 +45874,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *73 - - *277 + - *278 responses: '204': *183 '403': *27 @@ -45904,7 +45938,7 @@ paths: - octocat/Hello-World properties: type: array - items: &279 + items: &280 title: Custom Property Value description: Custom property name and associated value type: object @@ -45994,7 +46028,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *279 + items: *280 required: - repository_names - properties @@ -46186,7 +46220,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 x-github: @@ -46389,7 +46423,7 @@ paths: description: Response content: application/json: - schema: &327 + schema: &328 title: Full Repository description: Full Repository type: object @@ -46859,7 +46893,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &464 + code_of_conduct: &465 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -46889,7 +46923,7 @@ paths: - key - name - html_url - security_and_analysis: *280 + security_and_analysis: *281 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -46973,7 +47007,7 @@ paths: - network_count - subscribers_count examples: - default: &329 + default: &330 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -47495,7 +47529,7 @@ paths: - *73 - *17 - *19 - - &583 + - &584 name: targets description: | A comma-separated list of rule targets to filter by. @@ -47514,7 +47548,7 @@ paths: application/json: schema: type: array - items: &307 + items: &308 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -47549,7 +47583,7 @@ paths: source: type: string description: The name of the source - enforcement: &283 + enforcement: &284 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -47562,7 +47596,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &284 + items: &285 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -47633,7 +47667,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &281 + - &282 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -47657,7 +47691,7 @@ paths: match. items: type: string - - &285 + - &286 title: Organization ruleset conditions type: object description: |- @@ -47671,7 +47705,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -47705,7 +47739,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -47727,7 +47761,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -47740,7 +47774,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &282 + items: &283 title: Repository ruleset property targeting definition type: object @@ -47773,7 +47807,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *282 + items: *283 required: - repository_property type: @@ -47781,12 +47815,12 @@ paths: - object rules: type: array - items: &584 + items: &585 title: Repository Rule type: object description: A repository rule. oneOf: - - &286 + - &287 title: creation description: Only allow users with bypass permission to create matching refs. @@ -47798,7 +47832,7 @@ paths: type: string enum: - creation - - &287 + - &288 title: update description: Only allow users with bypass permission to update matching refs. @@ -47819,7 +47853,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &288 + - &289 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -47831,7 +47865,7 @@ paths: type: string enum: - deletion - - &289 + - &290 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -47843,7 +47877,7 @@ paths: type: string enum: - required_linear_history - - &582 + - &583 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -47921,7 +47955,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &290 + - &291 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -47945,7 +47979,7 @@ paths: type: string required: - required_deployment_environments - - &291 + - &292 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -47957,7 +47991,7 @@ paths: type: string enum: - required_signatures - - &292 + - &293 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -48063,7 +48097,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &293 + - &294 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -48111,7 +48145,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &294 + - &295 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -48123,7 +48157,7 @@ paths: type: string enum: - non_fast_forward - - &295 + - &296 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -48160,7 +48194,7 @@ paths: required: - operator - pattern - - &296 + - &297 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -48197,7 +48231,7 @@ paths: required: - operator - pattern - - &297 + - &298 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -48234,7 +48268,7 @@ paths: required: - operator - pattern - - &298 + - &299 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -48271,7 +48305,7 @@ paths: required: - operator - pattern - - &299 + - &300 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -48308,7 +48342,7 @@ paths: required: - operator - pattern - - &300 + - &301 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -48333,7 +48367,7 @@ paths: type: string required: - restricted_file_paths - - &301 + - &302 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -48357,7 +48391,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &302 + - &303 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -48380,7 +48414,7 @@ paths: type: string required: - restricted_file_extensions - - &303 + - &304 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -48405,7 +48439,7 @@ paths: maximum: 100 required: - max_file_size - - &304 + - &305 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -48455,7 +48489,7 @@ paths: - repository_id required: - workflows - - &305 + - &306 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -48516,7 +48550,7 @@ paths: - tool required: - code_scanning_tools - - &306 + - &307 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -48615,21 +48649,20 @@ paths: - push - repository default: branch - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *285 + items: *285 + conditions: *286 rules: type: array description: An array of rules within the ruleset. - items: &309 + items: &310 title: Repository Rule type: object description: A repository rule. oneOf: - - *286 - *287 - *288 - *289 @@ -48650,6 +48683,7 @@ paths: - *304 - *305 - *306 + - *307 required: - name - enforcement @@ -48687,9 +48721,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &308 + default: &309 value: id: 21 name: super cool ruleset @@ -48745,7 +48779,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *73 - - &585 + - &586 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -48760,7 +48794,7 @@ paths: in: query schema: type: string - - &586 + - &587 name: time_period description: |- The time period to filter by. @@ -48776,14 +48810,14 @@ paths: - week - month default: day - - &587 + - &588 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &588 + - &589 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -48803,7 +48837,7 @@ paths: description: Response content: application/json: - schema: &589 + schema: &590 title: Rule Suites description: Response type: array @@ -48859,7 +48893,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &590 + default: &591 value: - id: 21 actor_id: 12 @@ -48903,7 +48937,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *73 - - &591 + - &592 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -48919,7 +48953,7 @@ paths: description: Response content: application/json: - schema: &592 + schema: &593 title: Rule Suite description: Response type: object @@ -49026,7 +49060,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &593 + default: &594 value: id: 21 actor_id: 12 @@ -49099,9 +49133,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *308 + default: *309 '404': *6 '500': *53 put: @@ -49145,16 +49179,16 @@ paths: - tag - push - repository - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *285 + items: *285 + conditions: *286 rules: description: An array of rules within the ruleset. type: array - items: *309 + items: *310 examples: default: value: @@ -49189,9 +49223,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *308 + default: *309 '404': *6 '422': *15 '500': *53 @@ -49249,7 +49283,7 @@ paths: application/json: schema: type: array - items: &310 + items: &311 title: Ruleset version type: object description: The historical version of a ruleset @@ -49273,7 +49307,7 @@ paths: type: string format: date-time examples: - default: &595 + default: &596 value: - version_id: 3 actor: @@ -49326,9 +49360,9 @@ paths: description: Response content: application/json: - schema: &596 + schema: &597 allOf: - - *310 + - *311 - type: object required: - state @@ -49398,7 +49432,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *73 - - &597 + - &598 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -49409,7 +49443,7 @@ paths: enum: - open - resolved - - &598 + - &599 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -49419,7 +49453,7 @@ paths: required: false schema: type: string - - &599 + - &600 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -49428,7 +49462,7 @@ paths: required: false schema: type: string - - &600 + - &601 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -49447,7 +49481,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &601 + - &602 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -49462,7 +49496,7 @@ paths: - *59 - *19 - *17 - - &602 + - &603 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -49472,7 +49506,7 @@ paths: required: false schema: type: string - - &603 + - &604 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -49482,7 +49516,7 @@ paths: required: false schema: type: string - - &604 + - &605 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -49491,7 +49525,7 @@ paths: required: false schema: type: string - - &605 + - &606 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -49500,7 +49534,7 @@ paths: schema: type: boolean default: false - - &606 + - &607 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -49509,7 +49543,7 @@ paths: schema: type: boolean default: false - - &607 + - &608 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -49541,14 +49575,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &608 + state: &609 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &609 + resolution: &610 type: - string - 'null' @@ -49655,14 +49689,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &610 + - &611 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &612 + - &613 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -49726,7 +49760,7 @@ paths: - blob_url - commit_sha - commit_url - - &613 + - &614 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -49787,7 +49821,7 @@ paths: - page_url - commit_sha - commit_url - - &614 + - &615 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -49809,7 +49843,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &615 + - &616 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -49831,7 +49865,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &616 + - &617 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -49853,7 +49887,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &617 + - &618 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -49868,7 +49902,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &618 + - &619 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -49883,7 +49917,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &619 + - &620 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -49898,7 +49932,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &620 + - &621 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -49920,7 +49954,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &621 + - &622 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -49942,7 +49976,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &622 + - &623 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -49964,7 +49998,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &623 + - &624 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -49986,7 +50020,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &624 + - &625 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull @@ -50247,7 +50281,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &312 + pattern_config_version: &313 type: - string - 'null' @@ -50257,7 +50291,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &311 + items: &312 type: object properties: token_type: @@ -50326,7 +50360,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *311 + items: *312 examples: default: value: @@ -50383,7 +50417,7 @@ paths: schema: type: object properties: - pattern_config_version: *312 + pattern_config_version: *313 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -50409,7 +50443,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *312 + custom_pattern_version: *313 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -50507,7 +50541,7 @@ paths: application/json: schema: type: array - items: &628 + items: &629 description: A repository security advisory. type: object properties: @@ -50730,7 +50764,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 credits_detailed: type: - array @@ -50741,7 +50775,7 @@ paths: type: object properties: user: *4 - type: *313 + type: *314 state: type: string description: The state of the user's acceptance of the @@ -50804,7 +50838,7 @@ paths: - private_fork additionalProperties: false examples: - default: &629 + default: &630 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -51191,7 +51225,7 @@ paths: application/json: schema: type: array - items: *244 + items: *245 examples: default: value: @@ -51546,7 +51580,7 @@ paths: type: integer network_configurations: type: array - items: &314 + items: &315 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -51699,9 +51733,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: &315 + default: &316 value: id: 123456789ABCDEF name: My network configuration @@ -51730,7 +51764,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *73 - - &316 + - &317 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -51742,9 +51776,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: *315 + default: *316 headers: Link: *65 x-github: @@ -51766,7 +51800,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *73 - - *316 + - *317 requestBody: required: true content: @@ -51819,9 +51853,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: *315 + default: *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51841,7 +51875,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *73 - - *316 + - *317 responses: '204': description: Response @@ -51986,13 +52020,13 @@ paths: application/json: schema: type: array - items: *317 + items: *318 examples: - default: *318 + default: *319 '500': *53 '403': *27 '404': *6 - '422': *319 + '422': *320 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52034,7 +52068,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 headers: Link: *65 '403': *27 @@ -52120,7 +52154,7 @@ paths: description: Response content: application/json: - schema: &320 + schema: &321 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -52194,7 +52228,7 @@ paths: parent: anyOf: - type: 'null' - - *244 + - *245 members_count: type: integer examples: @@ -52519,7 +52553,7 @@ paths: - repos_count - organization examples: - default: &321 + default: &322 value: id: 1 node_id: MDQ6VGVhbTE= @@ -52596,9 +52630,9 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 x-github: githubCloudOnly: false @@ -52683,16 +52717,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '201': description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 '422': *15 '403': *27 @@ -52722,7 +52756,7 @@ paths: responses: '204': description: Response - '422': &322 + '422': &323 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -52756,12 +52790,12 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 - '422': *322 + '422': *323 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52843,7 +52877,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &324 title: Team Membership description: Team Membership type: object @@ -52871,7 +52905,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &645 + response-if-user-is-a-team-maintainer: &646 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -52934,9 +52968,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: &646 + response-if-users-membership-with-team-is-now-pending: &647 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -53012,7 +53046,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 x-github: @@ -53043,14 +53077,14 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &647 + schema: &648 title: Team Repository description: A team's access to a repository. type: object @@ -53686,8 +53720,8 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 requestBody: required: false content: @@ -53734,8 +53768,8 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 responses: '204': description: Response @@ -53772,7 +53806,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: &648 + response-if-child-teams-exist: &649 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -53926,7 +53960,7 @@ paths: resources: type: object properties: - core: &326 + core: &327 title: Rate Limit type: object properties: @@ -53943,17 +53977,17 @@ paths: - remaining - reset - used - graphql: *326 - search: *326 - code_search: *326 - source_import: *326 - integration_manifest: *326 - code_scanning_upload: *326 - actions_runner_registration: *326 - scim: *326 - dependency_snapshots: *326 - dependency_sbom: *326 - code_scanning_autofix: *326 + graphql: *327 + search: *327 + code_search: *327 + source_import: *327 + integration_manifest: *327 + code_scanning_upload: *327 + actions_runner_registration: *327 + scim: *327 + dependency_snapshots: *327 + dependency_sbom: *327 + code_scanning_autofix: *327 required: - core - search @@ -54060,14 +54094,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *327 + schema: *328 examples: default-response: summary: Default response @@ -54572,7 +54606,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *328 + '301': *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54590,8 +54624,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -54883,10 +54917,10 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 - '307': &330 + default: *330 + '307': &331 description: Temporary Redirect content: application/json: @@ -54915,8 +54949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -54938,7 +54972,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *330 + '307': *331 '404': *6 '409': *52 x-github: @@ -54962,11 +54996,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 - - &363 + - &364 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -54989,7 +55023,7 @@ paths: type: integer artifacts: type: array - items: &331 + items: &332 title: Artifact description: An artifact type: object @@ -55084,7 +55118,7 @@ paths: - expires_at - updated_at examples: - default: &364 + default: &365 value: total_count: 2 artifacts: @@ -55145,9 +55179,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *324 - *325 - - &332 + - *326 + - &333 name: artifact_id description: The unique identifier of the artifact. in: path @@ -55159,7 +55193,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -55197,9 +55231,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *324 - *325 - - *332 + - *326 + - *333 responses: '204': description: Response @@ -55223,9 +55257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *324 - *325 - - *332 + - *326 + - *333 - name: archive_format in: path required: true @@ -55239,7 +55273,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &519 + '410': &520 description: Gone content: application/json: @@ -55264,14 +55298,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &333 + schema: &334 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -55305,13 +55339,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *333 + schema: *334 examples: selected_actions: *40 responses: @@ -55340,14 +55374,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &334 + schema: &335 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -55381,13 +55415,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *334 + schema: *335 examples: selected_actions: *42 responses: @@ -55418,14 +55452,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *335 + schema: *336 examples: default: value: @@ -55451,11 +55485,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 - - &336 + - &337 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -55489,7 +55523,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &338 title: Repository actions caches description: Repository actions caches type: object @@ -55539,7 +55573,7 @@ paths: - total_count - actions_caches examples: - default: &338 + default: &339 value: total_count: 1 actions_caches: @@ -55571,23 +55605,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *324 - *325 + - *326 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *336 + - *337 responses: '200': description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55607,8 +55641,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *324 - *325 + - *326 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -55639,9 +55673,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *324 - *325 - - &339 + - *326 + - &340 name: job_id description: The unique identifier of the job. in: path @@ -55653,7 +55687,7 @@ paths: description: Response content: application/json: - schema: &367 + schema: &368 title: Job description: Information of a job execution in a workflow run type: object @@ -56000,9 +56034,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *324 - *325 - - *339 + - *326 + - *340 responses: '302': description: Response @@ -56030,9 +56064,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *324 - *325 - - *339 + - *326 + - *340 requestBody: required: false content: @@ -56078,8 +56112,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Status response @@ -56129,8 +56163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -56193,8 +56227,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -56212,7 +56246,7 @@ paths: type: integer secrets: type: array - items: &369 + items: &370 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -56233,7 +56267,7 @@ paths: - created_at - updated_at examples: - default: &370 + default: &371 value: total_count: 2 secrets: @@ -56266,9 +56300,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *324 - *325 - - *340 + - *326 + - *341 - *19 responses: '200': @@ -56285,7 +56319,7 @@ paths: type: integer variables: type: array - items: &373 + items: &374 title: Actions Variable type: object properties: @@ -56319,7 +56353,7 @@ paths: - created_at - updated_at examples: - default: &374 + default: &375 value: total_count: 2 variables: @@ -56352,8 +56386,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -56362,11 +56396,11 @@ paths: schema: type: object properties: - enabled: &342 + enabled: &343 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *137 - selected_actions_url: *341 + selected_actions_url: *342 sha_pinning_required: *138 required: - enabled @@ -56395,8 +56429,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -56407,7 +56441,7 @@ paths: schema: type: object properties: - enabled: *342 + enabled: *343 allowed_actions: *137 sha_pinning_required: *138 required: @@ -56439,14 +56473,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &343 + schema: &344 type: object properties: access_level: @@ -56463,7 +56497,7 @@ paths: required: - access_level examples: - default: &344 + default: &345 value: access_level: organization x-github: @@ -56487,15 +56521,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *343 + schema: *344 examples: - default: *344 + default: *345 responses: '204': description: Response @@ -56519,14 +56553,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *345 + schema: *346 examples: default: value: @@ -56550,8 +56584,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Empty response for successful settings update @@ -56561,7 +56595,7 @@ paths: required: true content: application/json: - schema: *346 + schema: *347 examples: default: summary: Set retention days @@ -56585,8 +56619,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -56594,7 +56628,7 @@ paths: application/json: schema: *139 examples: - default: *347 + default: *348 '404': *6 x-github: enabledForGitHubApps: true @@ -56613,8 +56647,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -56648,14 +56682,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *348 + schema: *349 examples: default: *140 '403': *27 @@ -56677,13 +56711,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *349 + schema: *350 examples: default: *140 responses: @@ -56709,8 +56743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -56737,8 +56771,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -56770,14 +56804,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *350 + schema: *351 examples: default: *147 x-github: @@ -56800,8 +56834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Success response @@ -56812,7 +56846,7 @@ paths: required: true content: application/json: - schema: *351 + schema: *352 examples: default: *147 x-github: @@ -56841,8 +56875,8 @@ paths: in: query schema: type: string - - *324 - *325 + - *326 - *17 - *19 responses: @@ -56886,8 +56920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -56895,9 +56929,9 @@ paths: application/json: schema: type: array - items: *352 + items: *353 examples: - default: *353 + default: *354 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56919,8 +56953,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -56963,7 +56997,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *354 + '201': *355 '404': *6 '422': *7 '409': *52 @@ -56994,8 +57028,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -57003,7 +57037,7 @@ paths: application/json: schema: *156 examples: - default: *355 + default: *356 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57031,8 +57065,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -57040,7 +57074,7 @@ paths: application/json: schema: *156 examples: - default: *356 + default: *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57062,8 +57096,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '200': @@ -57072,7 +57106,7 @@ paths: application/json: schema: *154 examples: - default: *357 + default: *358 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57093,8 +57127,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '204': @@ -57121,8 +57155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '200': *158 @@ -57147,8 +57181,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 requestBody: required: true @@ -57197,8 +57231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 requestBody: required: true @@ -57248,11 +57282,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: - '200': *358 + '200': *359 '404': *6 x-github: githubCloudOnly: false @@ -57279,10 +57313,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 - - *359 + - *360 responses: '200': *158 '404': *6 @@ -57310,9 +57344,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *324 - *325 - - &377 + - *326 + - &378 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -57320,7 +57354,7 @@ paths: required: false schema: type: string - - &378 + - &379 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -57328,7 +57362,7 @@ paths: required: false schema: type: string - - &379 + - &380 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -57337,7 +57371,7 @@ paths: required: false schema: type: string - - &380 + - &381 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -57364,7 +57398,7 @@ paths: - pending - *17 - *19 - - &381 + - &382 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -57373,7 +57407,7 @@ paths: schema: type: string format: date-time - - &360 + - &361 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -57382,13 +57416,13 @@ paths: schema: type: boolean default: false - - &382 + - &383 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &383 + - &384 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -57411,7 +57445,7 @@ paths: type: integer workflow_runs: type: array - items: &361 + items: &362 title: Workflow Run description: An invocation of a workflow type: object @@ -57589,7 +57623,7 @@ paths: head_commit: anyOf: - type: 'null' - - &405 + - &406 title: Simple Commit description: A commit. type: object @@ -57704,7 +57738,7 @@ paths: - workflow_url - pull_requests examples: - default: &384 + default: &385 value: total_count: 1 workflow_runs: @@ -57940,24 +57974,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *324 - *325 - - &362 + - *326 + - &363 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: &365 + default: &366 value: id: 30433642 name: Build @@ -58198,9 +58232,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '204': description: Response @@ -58223,9 +58257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -58353,9 +58387,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '201': description: Response @@ -58388,12 +58422,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *324 - *325 - - *362 + - *326 + - *363 - *17 - *19 - - *363 + - *364 - *59 responses: '200': @@ -58410,9 +58444,9 @@ paths: type: integer artifacts: type: array - items: *331 + items: *332 examples: - default: *364 + default: *365 headers: Link: *65 x-github: @@ -58436,25 +58470,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *324 - *325 - - *362 - - &366 + - *326 + - *363 + - &367 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: *365 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58477,10 +58511,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *324 - *325 - - *362 - - *366 + - *326 + - *363 + - *367 - *17 - *19 responses: @@ -58498,9 +58532,9 @@ paths: type: integer jobs: type: array - items: *367 + items: *368 examples: - default: &368 + default: &369 value: total_count: 1 jobs: @@ -58613,10 +58647,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *324 - *325 - - *362 - - *366 + - *326 + - *363 + - *367 responses: '302': description: Response @@ -58644,9 +58678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '202': description: Response @@ -58679,9 +58713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: true content: @@ -58748,9 +58782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '202': description: Response @@ -58783,9 +58817,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -58815,9 +58849,9 @@ paths: type: integer jobs: type: array - items: *367 + items: *368 examples: - default: *368 + default: *369 headers: Link: *65 x-github: @@ -58842,9 +58876,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '302': description: Response @@ -58871,9 +58905,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '204': description: Response @@ -58900,9 +58934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -58971,7 +59005,7 @@ paths: items: type: object properties: - type: &485 + type: &486 type: string description: The type of reviewer. enum: @@ -59057,9 +59091,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: true content: @@ -59109,7 +59143,7 @@ paths: application/json: schema: type: array - items: &480 + items: &481 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -59221,7 +59255,7 @@ paths: - created_at - updated_at examples: - default: &481 + default: &482 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -59277,9 +59311,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: false content: @@ -59324,9 +59358,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: false content: @@ -59380,9 +59414,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -59519,8 +59553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -59538,9 +59572,9 @@ paths: type: integer secrets: type: array - items: *369 + items: *370 examples: - default: *370 + default: *371 headers: Link: *65 x-github: @@ -59565,16 +59599,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59596,17 +59630,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *369 + schema: *370 examples: - default: &498 + default: &499 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -59632,8 +59666,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -59691,8 +59725,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -59718,9 +59752,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *324 - *325 - - *340 + - *326 + - *341 - *19 responses: '200': @@ -59737,9 +59771,9 @@ paths: type: integer variables: type: array - items: *373 + items: *374 examples: - default: *374 + default: *375 headers: Link: *65 x-github: @@ -59762,8 +59796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -59815,17 +59849,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: &499 + default: &500 value: name: USERNAME value: octocat @@ -59851,8 +59885,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 requestBody: required: true @@ -59895,8 +59929,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 responses: '204': @@ -59922,8 +59956,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -59941,7 +59975,7 @@ paths: type: integer workflows: type: array - items: &375 + items: &376 title: Workflow description: A GitHub Actions workflow type: object @@ -60059,9 +60093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *324 - *325 - - &376 + - *326 + - &377 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -60076,7 +60110,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *376 examples: default: value: @@ -60109,9 +60143,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Response @@ -60136,9 +60170,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '200': description: Response including the workflow run ID and URLs when `return_run_details` @@ -60219,9 +60253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Response @@ -60248,19 +60282,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *324 - *325 - - *376 + - *326 - *377 - *378 - *379 - *380 + - *381 - *17 - *19 - - *381 - - *360 - *382 + - *361 - *383 + - *384 responses: '200': description: Response @@ -60276,9 +60310,9 @@ paths: type: integer workflow_runs: type: array - items: *361 + items: *362 examples: - default: *384 + default: *385 headers: Link: *65 x-github: @@ -60310,9 +60344,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '200': description: Response @@ -60373,8 +60407,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *324 - *325 + - *326 - *59 - *17 - *45 @@ -60542,8 +60576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -60580,8 +60614,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *324 - *325 + - *326 - name: assignee in: path required: true @@ -60617,8 +60651,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -60728,8 +60762,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *324 - *325 + - *326 - *17 - *45 - *46 @@ -60770,7 +60804,7 @@ paths: initiator: type: string examples: - default: *385 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60790,8 +60824,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -60799,7 +60833,7 @@ paths: application/json: schema: type: array - items: &386 + items: &387 title: Autolink reference description: An autolink reference. type: object @@ -60858,8 +60892,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -60898,9 +60932,9 @@ paths: description: response content: application/json: - schema: *386 + schema: *387 examples: - default: &387 + default: &388 value: id: 1 key_prefix: TICKET- @@ -60931,9 +60965,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *324 - *325 - - &388 + - *326 + - &389 name: autolink_id description: The unique identifier of the autolink. in: path @@ -60945,9 +60979,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *387 + default: *388 '404': *6 x-github: githubCloudOnly: false @@ -60967,9 +61001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *324 - *325 - - *388 + - *326 + - *389 responses: '204': description: Response @@ -60993,8 +61027,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response if Dependabot is enabled @@ -61044,8 +61078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -61066,8 +61100,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -61087,8 +61121,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *324 - *325 + - *326 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -61126,7 +61160,7 @@ paths: - url protected: type: boolean - protection: &390 + protection: &391 title: Branch Protection description: Branch Protection type: object @@ -61169,7 +61203,7 @@ paths: required: - contexts - checks - enforce_admins: &393 + enforce_admins: &394 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -61186,7 +61220,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &395 + required_pull_request_reviews: &396 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -61270,7 +61304,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &392 + restrictions: &393 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -61563,9 +61597,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *324 - *325 - - &391 + - *326 + - &392 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -61579,14 +61613,14 @@ paths: description: Response content: application/json: - schema: &401 + schema: &402 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &455 + commit: &456 title: Commit description: Commit type: object @@ -61625,7 +61659,7 @@ paths: author: anyOf: - type: 'null' - - &389 + - &390 title: Git User description: Metaproperties for Git author/committer information. @@ -61647,7 +61681,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 message: type: string examples: @@ -61671,7 +61705,7 @@ paths: required: - sha - url - verification: &505 + verification: &506 title: Verification type: object properties: @@ -61751,7 +61785,7 @@ paths: type: integer files: type: array - items: &466 + items: &467 title: Diff Entry description: Diff Entry type: object @@ -61847,7 +61881,7 @@ paths: - self protected: type: boolean - protection: *390 + protection: *391 protection_url: type: string format: uri @@ -61956,7 +61990,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *328 + '301': *329 '404': *6 x-github: githubCloudOnly: false @@ -61978,15 +62012,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *390 + schema: *391 examples: default: value: @@ -62180,9 +62214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -62442,7 +62476,7 @@ paths: url: type: string format: uri - required_status_checks: &398 + required_status_checks: &399 title: Status Check Policy description: Status Check Policy type: object @@ -62601,7 +62635,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *392 + restrictions: *393 required_conversation_resolution: type: object properties: @@ -62713,9 +62747,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -62740,17 +62774,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &394 + default: &395 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -62772,17 +62806,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *394 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62801,9 +62835,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -62828,17 +62862,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: &396 + default: &397 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -62934,9 +62968,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63034,9 +63068,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: *396 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -63057,9 +63091,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63086,17 +63120,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &397 + default: &398 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -63119,17 +63153,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *397 + default: *398 '404': *6 x-github: githubCloudOnly: false @@ -63149,9 +63183,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63176,17 +63210,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *398 + schema: *399 examples: - default: &399 + default: &400 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -63212,9 +63246,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63266,9 +63300,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: - default: *399 + default: *400 '404': *6 '422': *15 x-github: @@ -63290,9 +63324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63316,9 +63350,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -63352,9 +63386,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63421,9 +63455,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63487,9 +63521,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: content: application/json: @@ -63555,15 +63589,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *392 + schema: *393 examples: default: value: @@ -63654,9 +63688,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63679,9 +63713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -63691,7 +63725,7 @@ paths: type: array items: *5 examples: - default: &400 + default: &401 value: - id: 1 slug: octoapp @@ -63748,9 +63782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -63784,7 +63818,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -63805,9 +63839,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -63841,7 +63875,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -63862,9 +63896,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -63898,7 +63932,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -63920,9 +63954,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -63932,7 +63966,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '404': *6 x-github: githubCloudOnly: false @@ -63952,9 +63986,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63992,7 +64026,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -64013,9 +64047,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -64053,7 +64087,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -64074,9 +64108,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: content: application/json: @@ -64113,7 +64147,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -64135,9 +64169,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -64171,9 +64205,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64231,9 +64265,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64291,9 +64325,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64353,9 +64387,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64377,7 +64411,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: default: value: @@ -64493,8 +64527,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -64773,7 +64807,7 @@ paths: description: Response content: application/json: - schema: &402 + schema: &403 title: CheckRun description: A check performed on the code of a given code change type: object @@ -64909,7 +64943,7 @@ paths: check. type: array items: *84 - deployment: &710 + deployment: &711 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -65196,9 +65230,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *324 - *325 - - &403 + - *326 + - &404 name: check_run_id description: The unique identifier of the check run. in: path @@ -65210,9 +65244,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *403 examples: - default: &404 + default: &405 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -65312,9 +65346,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *324 - *325 - - *403 + - *326 + - *404 requestBody: required: true content: @@ -65554,9 +65588,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *403 examples: - default: *404 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65576,9 +65610,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *324 - *325 - - *403 + - *326 + - *404 - *17 - *19 responses: @@ -65688,9 +65722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *324 - *325 - - *403 + - *326 + - *404 responses: '201': description: Response @@ -65734,8 +65768,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -65757,7 +65791,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &406 + schema: &407 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -65855,7 +65889,7 @@ paths: - string - 'null' format: date-time - head_commit: *405 + head_commit: *406 latest_check_runs_count: type: integer check_runs_url: @@ -65883,7 +65917,7 @@ paths: - check_runs_url - pull_requests examples: - default: &407 + default: &408 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -66174,9 +66208,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *406 + schema: *407 examples: - default: *407 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66195,8 +66229,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -66505,9 +66539,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *324 - *325 - - &408 + - *326 + - &409 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -66519,9 +66553,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *407 examples: - default: *407 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66544,17 +66578,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *324 - *325 - - *408 - - &461 + - *326 + - *409 + - &462 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &462 + - &463 name: status description: Returns check runs with the specified `status`. in: query @@ -66593,9 +66627,9 @@ paths: type: integer check_runs: type: array - items: *402 + items: *403 examples: - default: &463 + default: &464 value: total_count: 1 check_runs: @@ -66697,9 +66731,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *324 - *325 - - *408 + - *326 + - *409 responses: '201': description: Response @@ -66732,21 +66766,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *324 - *325 - - *409 + - *326 - *410 + - *411 - *19 - *17 - - &427 + - &428 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *411 - - &428 + schema: *412 + - &429 name: pr description: The number of the pull request for the results you want to list. in: query @@ -66771,13 +66805,13 @@ paths: be returned. in: query required: false - schema: *412 + schema: *413 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *413 + schema: *414 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -66801,7 +66835,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: *414 + instances_url: *415 state: *179 fixed_at: *175 dismissed_by: @@ -66809,11 +66843,11 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: *415 - dismissed_comment: *416 - rule: *417 - tool: *418 - most_recent_instance: *419 + dismissed_reason: *416 + dismissed_comment: *417 + rule: *418 + tool: *419 + most_recent_instance: *420 dismissal_approved_by: anyOf: - type: 'null' @@ -66936,7 +66970,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &420 + '403': &421 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -66963,9 +66997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *324 - *325 - - &421 + - *326 + - &422 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -66979,7 +67013,7 @@ paths: description: Response content: application/json: - schema: &422 + schema: &423 type: object properties: number: *170 @@ -66987,7 +67021,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: *414 + instances_url: *415 state: *179 fixed_at: *175 dismissed_by: @@ -66995,8 +67029,8 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: *415 - dismissed_comment: *416 + dismissed_reason: *416 + dismissed_comment: *417 rule: type: object properties: @@ -67058,8 +67092,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *418 - most_recent_instance: *419 + tool: *419 + most_recent_instance: *420 dismissal_approved_by: anyOf: - type: 'null' @@ -67155,7 +67189,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -67175,9 +67209,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: true content: @@ -67192,8 +67226,8 @@ paths: enum: - open - dismissed - dismissed_reason: *415 - dismissed_comment: *416 + dismissed_reason: *416 + dismissed_comment: *417 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -67221,7 +67255,7 @@ paths: description: Response content: application/json: - schema: *422 + schema: *423 examples: default: value: @@ -67297,7 +67331,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &426 + '403': &427 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -67324,15 +67358,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 responses: '200': description: Response content: application/json: - schema: &423 + schema: &424 type: object properties: status: @@ -67359,13 +67393,13 @@ paths: - description - started_at examples: - default: &424 + default: &425 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &425 + '400': &426 description: Bad Request content: application/json: @@ -67376,7 +67410,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -67401,29 +67435,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 responses: '200': description: OK content: application/json: - schema: *423 + schema: *424 examples: - default: *424 + default: *425 '202': description: Accepted content: application/json: - schema: *423 + schema: *424 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *425 + '400': *426 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -67455,9 +67489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: false content: @@ -67503,8 +67537,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *425 - '403': *426 + '400': *426 + '403': *427 '404': *6 '422': description: Unprocessable Entity @@ -67528,13 +67562,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 - *19 - *17 - - *427 - *428 + - *429 responses: '200': description: Response @@ -67545,10 +67579,10 @@ paths: items: type: object properties: - ref: *411 - analysis_key: *429 - environment: *430 - category: *431 + ref: *412 + analysis_key: *430 + environment: *431 + category: *432 state: type: - string @@ -67565,7 +67599,7 @@ paths: properties: text: type: string - location: *432 + location: *433 html_url: type: string classifications: @@ -67573,7 +67607,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *433 + items: *434 examples: default: value: @@ -67610,7 +67644,7 @@ paths: end_column: 50 classifications: - source - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -67644,25 +67678,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *324 - *325 - - *409 + - *326 - *410 + - *411 - *19 - *17 - - *428 + - *429 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *411 + schema: *412 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &434 + schema: &435 type: string description: An identifier for the upload. examples: @@ -67684,23 +67718,23 @@ paths: application/json: schema: type: array - items: &435 + items: &436 type: object properties: - ref: *411 - commit_sha: &443 + ref: *412 + commit_sha: &444 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *429 + analysis_key: *430 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *431 + category: *432 error: type: string examples: @@ -67725,8 +67759,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *434 - tool: *418 + sarif_id: *435 + tool: *419 deletable: type: boolean warning: @@ -67788,7 +67822,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -67824,8 +67858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *324 - *325 + - *326 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -67838,7 +67872,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *436 examples: response: summary: application/json response @@ -67892,7 +67926,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *420 + '403': *421 '404': *6 '422': description: Response if analysis could not be processed @@ -67979,8 +68013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *324 - *325 + - *326 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -68036,7 +68070,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *426 + '403': *427 '404': *6 '503': *113 x-github: @@ -68058,8 +68092,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -68067,7 +68101,7 @@ paths: application/json: schema: type: array - items: &436 + items: &437 title: CodeQL Database description: A CodeQL database. type: object @@ -68179,7 +68213,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68208,8 +68242,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *324 - *325 + - *326 - name: language in: path description: The language of the CodeQL database. @@ -68221,7 +68255,7 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: default: value: @@ -68253,9 +68287,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &468 + '302': &469 description: Found - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68277,8 +68311,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *324 - *325 + - *326 - name: language in: path description: The language of the CodeQL database. @@ -68288,7 +68322,7 @@ paths: responses: '204': description: Response - '403': *426 + '403': *427 '404': *6 '503': *113 x-github: @@ -68316,8 +68350,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -68326,7 +68360,7 @@ paths: type: object additionalProperties: false properties: - language: &437 + language: &438 type: string description: The language targeted by the CodeQL query enum: @@ -68406,7 +68440,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &441 + schema: &442 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -68416,7 +68450,7 @@ paths: description: The ID of the variant analysis. controller_repo: *64 actor: *4 - query_language: *437 + query_language: *438 query_pack_url: type: string description: The download url for the query pack. @@ -68464,7 +68498,7 @@ paths: items: type: object properties: - repository: &438 + repository: &439 title: Repository Identifier description: Repository Identifier type: object @@ -68506,7 +68540,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &442 + analysis_status: &443 type: string description: The new status of the CodeQL variant analysis repository task. @@ -68538,7 +68572,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &439 + access_mismatch_repos: &440 type: object properties: repository_count: @@ -68553,7 +68587,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *438 + items: *439 required: - repository_count - repositories @@ -68576,8 +68610,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *439 - over_limit_repos: *439 + no_codeql_db_repos: *440 + over_limit_repos: *440 required: - access_mismatch_repos - not_found_repos @@ -68593,7 +68627,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &440 + value: &441 summary: Default response value: id: 1 @@ -68739,10 +68773,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *440 + value: *441 repository_lists: summary: Response for a successful variant analysis submission - value: *440 + value: *441 '404': *6 '422': description: Unable to process variant analysis submission @@ -68770,8 +68804,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *324 - *325 + - *326 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -68783,9 +68817,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *442 examples: - default: *440 + default: *441 '404': *6 '503': *113 x-github: @@ -68808,7 +68842,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *324 + - *325 - name: repo in: path description: The name of the controller repository. @@ -68843,7 +68877,7 @@ paths: type: object properties: repository: *64 - analysis_status: *442 + analysis_status: *443 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -68968,8 +69002,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -69060,7 +69094,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -69081,8 +69115,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -69176,7 +69210,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *426 + '403': *427 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -69247,8 +69281,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -69256,7 +69290,7 @@ paths: schema: type: object properties: - commit_sha: *443 + commit_sha: *444 ref: type: string description: |- @@ -69316,7 +69350,7 @@ paths: schema: type: object properties: - id: *434 + id: *435 url: type: string description: The REST API URL for checking the status of the upload. @@ -69330,7 +69364,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *426 + '403': *427 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -69353,8 +69387,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *324 - *325 + - *326 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -69402,7 +69436,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *420 + '403': *421 '404': description: Not Found if the sarif id does not match any upload '503': *113 @@ -69427,8 +69461,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -69509,8 +69543,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *324 - *325 + - *326 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -69638,8 +69672,8 @@ paths: parameters: - *17 - *19 - - *324 - *325 + - *326 responses: '200': description: Response @@ -69655,7 +69689,7 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: default: value: @@ -69953,8 +69987,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -70018,17 +70052,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '400': *14 '401': *23 '403': *27 @@ -70057,8 +70091,8 @@ paths: parameters: - *17 - *19 - - *324 - *325 + - *326 responses: '200': description: Response @@ -70122,8 +70156,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *324 - *325 + - *326 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -70160,9 +70194,9 @@ paths: type: integer machines: type: array - items: *445 + items: *446 examples: - default: &653 + default: &654 value: total_count: 2 machines: @@ -70202,8 +70236,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *324 - *325 + - *326 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -70290,8 +70324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *324 - *325 + - *326 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -70360,8 +70394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -70379,7 +70413,7 @@ paths: type: integer secrets: type: array - items: &449 + items: &450 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -70400,7 +70434,7 @@ paths: - created_at - updated_at examples: - default: *446 + default: *447 headers: Link: *65 x-github: @@ -70423,16 +70457,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *447 + schema: *448 examples: - default: *448 + default: *449 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -70452,17 +70486,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *449 + schema: *450 examples: - default: *450 + default: *451 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70482,8 +70516,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -70536,8 +70570,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -70566,8 +70600,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *324 - *325 + - *326 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -70605,7 +70639,7 @@ paths: application/json: schema: type: array - items: &451 + items: &452 title: Collaborator description: Collaborator type: object @@ -70798,8 +70832,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 responses: '204': @@ -70846,8 +70880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 requestBody: required: false @@ -70874,7 +70908,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &518 + schema: &519 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -71102,8 +71136,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 responses: '204': @@ -71135,8 +71169,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *324 - *325 + - *326 - *69 responses: '200': @@ -71157,7 +71191,7 @@ paths: user: anyOf: - type: 'null' - - *451 + - *452 required: - permission - role_name @@ -71211,8 +71245,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -71222,7 +71256,7 @@ paths: application/json: schema: type: array - items: &452 + items: &453 title: Commit Comment description: Commit Comment type: object @@ -71280,7 +71314,7 @@ paths: - created_at - updated_at examples: - default: &457 + default: &458 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -71339,17 +71373,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: &458 + default: &459 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -71406,8 +71440,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -71430,7 +71464,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: default: value: @@ -71481,8 +71515,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -71504,8 +71538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -71532,7 +71566,7 @@ paths: application/json: schema: type: array - items: &453 + items: &454 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -71576,7 +71610,7 @@ paths: - content - created_at examples: - default: &521 + default: &522 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -71621,8 +71655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -71655,9 +71689,9 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: &454 + default: &455 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -71686,9 +71720,9 @@ paths: description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -71710,10 +71744,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - &522 + - &523 name: reaction_id description: The unique identifier of the reaction. in: path @@ -71768,8 +71802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *324 - *325 + - *326 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -71825,9 +71859,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: &568 + default: &569 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -71921,9 +71955,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *324 - *325 - - &456 + - *326 + - &457 name: commit_sha description: The SHA of the commit. in: path @@ -71995,9 +72029,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *324 - *325 - - *456 + - *326 + - *457 - *17 - *19 responses: @@ -72007,9 +72041,9 @@ paths: application/json: schema: type: array - items: *452 + items: *453 examples: - default: *457 + default: *458 headers: Link: *65 x-github: @@ -72037,9 +72071,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *324 - *325 - - *456 + - *326 + - *457 requestBody: required: true content: @@ -72074,9 +72108,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: *458 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -72104,9 +72138,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *324 - *325 - - *456 + - *326 + - *457 - *17 - *19 responses: @@ -72116,9 +72150,9 @@ paths: application/json: schema: type: array - items: *459 + items: *460 examples: - default: &560 + default: &561 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -72655,11 +72689,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *324 - *325 + - *326 - *19 - *17 - - &460 + - &461 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -72674,9 +72708,9 @@ paths: description: Response content: application/json: - schema: *455 + schema: *456 examples: - default: &548 + default: &549 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -72789,11 +72823,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *324 - *325 - - *460 + - *326 - *461 - *462 + - *463 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -72827,9 +72861,9 @@ paths: type: integer check_runs: type: array - items: *402 + items: *403 examples: - default: *463 + default: *464 headers: Link: *65 x-github: @@ -72854,9 +72888,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -72864,7 +72898,7 @@ paths: schema: type: integer example: 1 - - *461 + - *462 - *17 - *19 responses: @@ -72882,7 +72916,7 @@ paths: type: integer check_suites: type: array - items: *406 + items: *407 examples: default: value: @@ -73082,9 +73116,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - *17 - *19 responses: @@ -73286,9 +73320,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - *17 - *19 responses: @@ -73298,7 +73332,7 @@ paths: application/json: schema: type: array - items: &633 + items: &634 title: Status description: The status of a commit. type: object @@ -73379,7 +73413,7 @@ paths: site_admin: false headers: Link: *65 - '301': *328 + '301': *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73407,8 +73441,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -73441,11 +73475,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *464 + - *465 code_of_conduct_file: anyOf: - type: 'null' - - &465 + - &466 title: Community Health File type: object properties: @@ -73465,19 +73499,19 @@ paths: contributing: anyOf: - type: 'null' - - *465 + - *466 readme: anyOf: - type: 'null' - - *465 + - *466 issue_template: anyOf: - type: 'null' - - *465 + - *466 pull_request_template: anyOf: - type: 'null' - - *465 + - *466 required: - code_of_conduct - code_of_conduct_file @@ -73606,8 +73640,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *324 - *325 + - *326 - *19 - *17 - name: basehead @@ -73655,8 +73689,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *455 - merge_base_commit: *455 + base_commit: *456 + merge_base_commit: *456 status: type: string enum: @@ -73680,10 +73714,10 @@ paths: - 6 commits: type: array - items: *455 + items: *456 files: type: array - items: *466 + items: *467 required: - url - html_url @@ -73969,8 +74003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -74140,7 +74174,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &467 + response-if-content-is-a-file-github-object: &468 summary: Response if content is a file value: type: file @@ -74277,7 +74311,7 @@ paths: - size - type - url - - &573 + - &574 title: Content File description: Content File type: object @@ -74495,7 +74529,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *467 + response-if-content-is-a-file: *468 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -74564,7 +74598,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *468 + '302': *469 '304': *35 x-github: githubCloudOnly: false @@ -74587,8 +74621,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -74683,7 +74717,7 @@ paths: description: Response content: application/json: - schema: &469 + schema: &470 title: File Commit description: File Commit type: object @@ -74839,7 +74873,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *470 examples: example-for-creating-a-file: value: @@ -74893,7 +74927,7 @@ paths: schema: oneOf: - *3 - - &500 + - &501 description: Repository rule violation was detected type: object properties: @@ -74914,7 +74948,7 @@ paths: items: type: object properties: - placeholder_id: &625 + placeholder_id: &626 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -74946,8 +74980,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -75008,7 +75042,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *470 examples: default: value: @@ -75063,8 +75097,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *324 - *325 + - *326 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -75188,23 +75222,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *324 - *325 + - *326 - *189 - *190 - *191 - *192 + - *193 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *193 - - *470 - *194 + - *471 - *195 - *196 + - *197 - *59 - *45 - *46 @@ -75216,7 +75251,7 @@ paths: application/json: schema: type: array - items: &474 + items: &475 type: object description: A Dependabot alert. properties: @@ -75267,7 +75302,7 @@ paths: - transitive - inconclusive - - security_advisory: *471 + security_advisory: *472 security_vulnerability: *63 url: *173 html_url: *174 @@ -75298,8 +75333,8 @@ paths: dismissal. maxLength: 280 fixed_at: *175 - auto_dismissed_at: *472 - dismissal_request: *473 + auto_dismissed_at: *473 + dismissal_request: *474 assignees: type: array description: The users assigned to this alert. @@ -75554,9 +75589,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *324 - *325 - - &475 + - *326 + - &476 name: alert_number in: path description: |- @@ -75571,7 +75606,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: default: value: @@ -75703,9 +75738,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *324 - *325 - - *475 + - *326 + - *476 requestBody: required: true content: @@ -75761,7 +75796,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: default: value: @@ -75891,8 +75926,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -75910,7 +75945,7 @@ paths: type: integer secrets: type: array - items: &478 + items: &479 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -75964,16 +75999,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *477 + default: *478 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75993,15 +76028,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *478 + schema: *479 examples: default: value: @@ -76027,8 +76062,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -76081,8 +76116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -76105,8 +76140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *324 - *325 + - *326 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -76280,8 +76315,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -76541,8 +76576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -76625,7 +76660,7 @@ paths: - version - url additionalProperties: false - metadata: &479 + metadata: &480 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -76664,7 +76699,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *479 + metadata: *480 resolved: type: object description: A collection of resolved package dependencies. @@ -76678,7 +76713,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *479 + metadata: *480 relationship: type: string description: A notation of whether a dependency is requested @@ -76811,8 +76846,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *324 - *325 + - *326 - name: sha description: The SHA recorded at creation time. in: query @@ -76853,9 +76888,9 @@ paths: application/json: schema: type: array - items: *480 + items: *481 examples: - default: *481 + default: *482 headers: Link: *65 x-github: @@ -76921,8 +76956,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -77004,7 +77039,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: simple-example: summary: Simple example @@ -77077,9 +77112,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *324 - *325 - - &482 + - *326 + - &483 name: deployment_id description: deployment_id parameter in: path @@ -77091,7 +77126,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: default: value: @@ -77156,9 +77191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *324 - *325 - - *482 + - *326 + - *483 responses: '204': description: Response @@ -77180,9 +77215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *324 - *325 - - *482 + - *326 + - *483 - *17 - *19 responses: @@ -77192,7 +77227,7 @@ paths: application/json: schema: type: array - items: &483 + items: &484 title: Deployment Status description: The status of a deployment. type: object @@ -77356,9 +77391,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *324 - *325 - - *482 + - *326 + - *483 requestBody: required: true content: @@ -77433,9 +77468,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: - default: &484 + default: &485 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -77491,9 +77526,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *324 - *325 - - *482 + - *326 + - *483 - name: status_id in: path required: true @@ -77504,9 +77539,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: - default: *484 + default: *485 '404': *6 x-github: githubCloudOnly: false @@ -77531,8 +77566,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -77589,8 +77624,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -77608,7 +77643,7 @@ paths: - 5 environments: type: array - items: &486 + items: &487 title: Environment description: Details of a deployment environment type: object @@ -77670,7 +77705,7 @@ paths: type: string examples: - wait_timer - wait_timer: &488 + wait_timer: &489 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -77712,7 +77747,7 @@ paths: items: type: object properties: - type: *485 + type: *486 reviewer: anyOf: - *4 @@ -77739,7 +77774,7 @@ paths: - id - node_id - type - deployment_branch_policy: &489 + deployment_branch_policy: &490 type: - object - 'null' @@ -77856,9 +77891,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *324 - *325 - - &487 + - *326 + - &488 name: environment_name in: path required: true @@ -77871,9 +77906,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: &490 + default: &491 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -77957,9 +77992,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: false content: @@ -77969,7 +78004,7 @@ paths: - object - 'null' properties: - wait_timer: *488 + wait_timer: *489 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -77988,14 +78023,14 @@ paths: items: type: object properties: - type: *485 + type: *486 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *489 + deployment_branch_policy: *490 additionalProperties: false examples: default: @@ -78015,9 +78050,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: *490 + default: *491 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -78041,9 +78076,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *324 - *325 - - *487 + - *326 + - *488 responses: '204': description: Default response @@ -78068,9 +78103,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *17 - *19 responses: @@ -78089,7 +78124,7 @@ paths: - 2 branch_policies: type: array - items: &491 + items: &492 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -78150,9 +78185,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: true content: @@ -78200,9 +78235,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - example-wildcard: &492 + example-wildcard: &493 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -78244,10 +78279,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - &493 + - *326 + - *488 + - &494 name: branch_policy_id in: path required: true @@ -78259,9 +78294,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78280,10 +78315,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - *493 + - *326 + - *488 + - *494 requestBody: required: true content: @@ -78312,9 +78347,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78333,10 +78368,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - *493 + - *326 + - *488 + - *494 responses: '204': description: Response @@ -78361,9 +78396,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 responses: '200': description: List of deployment protection rules @@ -78380,7 +78415,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &494 + items: &495 title: Deployment protection rule description: Deployment protection rule type: object @@ -78402,7 +78437,7 @@ paths: for the environment. examples: - true - app: &495 + app: &496 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -78505,9 +78540,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 requestBody: content: application/json: @@ -78528,9 +78563,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *494 + schema: *495 examples: - default: &496 + default: &497 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -78565,9 +78600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 - *19 - *17 responses: @@ -78587,7 +78622,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *495 + items: *496 examples: default: value: @@ -78622,10 +78657,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *324 - *325 - - *487 - - &497 + - *326 + - *488 + - &498 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -78637,9 +78672,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - default: *496 + default: *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78660,10 +78695,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 - - *497 + - *498 responses: '204': description: Response @@ -78689,9 +78724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *17 - *19 responses: @@ -78709,9 +78744,9 @@ paths: type: integer secrets: type: array - items: *369 + items: *370 examples: - default: *370 + default: *371 headers: Link: *65 x-github: @@ -78736,17 +78771,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *324 - *325 - - *487 + - *326 + - *488 responses: '200': description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78768,18 +78803,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 responses: '200': description: Response content: application/json: - schema: *369 + schema: *370 examples: - default: *498 + default: *499 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78801,9 +78836,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 requestBody: required: true @@ -78861,9 +78896,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 responses: '204': @@ -78889,10 +78924,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *324 - *325 - - *487 - - *340 + - *326 + - *488 + - *341 - *19 responses: '200': @@ -78909,9 +78944,9 @@ paths: type: integer variables: type: array - items: *373 + items: *374 examples: - default: *374 + default: *375 headers: Link: *65 x-github: @@ -78934,9 +78969,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: true content: @@ -78988,18 +79023,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *163 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: *499 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79020,10 +79055,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *324 - *325 + - *326 - *163 - - *487 + - *488 requestBody: required: true content: @@ -79065,10 +79100,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *324 - *325 + - *326 - *163 - - *487 + - *488 responses: '204': description: Response @@ -79090,8 +79125,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -79159,8 +79194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *324 - *325 + - *326 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -79319,8 +79354,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -79353,9 +79388,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 '400': *14 '422': *15 '403': *27 @@ -79376,8 +79411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -79437,7 +79472,7 @@ paths: schema: oneOf: - *121 - - *500 + - *501 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79462,8 +79497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *324 - *325 + - *326 - name: file_sha in: path required: true @@ -79563,8 +79598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -79673,7 +79708,7 @@ paths: description: Response content: application/json: - schema: &501 + schema: &502 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -79900,15 +79935,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *324 - *325 - - *456 + - *326 + - *457 responses: '200': description: Response content: application/json: - schema: *501 + schema: *502 examples: default: value: @@ -79964,9 +79999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *324 - *325 - - &502 + - *326 + - &503 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -79983,7 +80018,7 @@ paths: application/json: schema: type: array - items: &503 + items: &504 title: Git Reference description: Git references within a repository type: object @@ -80059,17 +80094,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 responses: '200': description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: &504 + default: &505 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -80098,8 +80133,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80128,9 +80163,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -80156,9 +80191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 requestBody: required: true content: @@ -80187,9 +80222,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 '422': *15 '409': *52 x-github: @@ -80207,9 +80242,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 responses: '204': description: Response @@ -80264,8 +80299,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80332,7 +80367,7 @@ paths: description: Response content: application/json: - schema: &506 + schema: &507 title: Git Tag description: Metadata for a Git tag type: object @@ -80388,7 +80423,7 @@ paths: - sha - type - url - verification: *505 + verification: *506 required: - sha - url @@ -80398,7 +80433,7 @@ paths: - tag - message examples: - default: &507 + default: &508 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -80471,8 +80506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *324 - *325 + - *326 - name: tag_sha in: path required: true @@ -80483,9 +80518,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *507 + default: *508 '404': *6 '409': *52 x-github: @@ -80509,8 +80544,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80584,7 +80619,7 @@ paths: description: Response content: application/json: - schema: &508 + schema: &509 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -80686,8 +80721,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *324 - *325 + - *326 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -80710,7 +80745,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: default-response: summary: Default response @@ -80769,8 +80804,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -80780,7 +80815,7 @@ paths: application/json: schema: type: array - items: &509 + items: &510 title: Webhook description: Webhooks for repositories. type: object @@ -80843,7 +80878,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &741 + last_response: &742 title: Hook Response type: object properties: @@ -80920,8 +80955,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -80974,9 +81009,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: &510 + default: &511 value: type: Repository id: 12345678 @@ -81024,17 +81059,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '200': description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '404': *6 x-github: githubCloudOnly: false @@ -81054,9 +81089,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 requestBody: required: true content: @@ -81101,9 +81136,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '422': *15 '404': *6 x-github: @@ -81124,9 +81159,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -81150,9 +81185,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '200': description: Response @@ -81179,9 +81214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *324 - *325 - - *202 + - *326 + - *203 requestBody: required: false content: @@ -81225,12 +81260,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *324 - *325 - - *202 - - *17 + - *326 - *203 + - *17 - *204 + - *205 responses: '200': description: Response @@ -81238,9 +81273,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *206 + default: *207 '400': *14 '422': *15 x-github: @@ -81259,18 +81294,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *207 + schema: *208 examples: - default: *208 + default: *209 '400': *14 '422': *15 x-github: @@ -81289,9 +81324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 - *16 responses: '202': *37 @@ -81314,9 +81349,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -81341,9 +81376,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -81366,8 +81401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response if immutable releases are enabled @@ -81415,8 +81450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *324 - *325 + - *326 responses: '204': *183 '409': *52 @@ -81436,8 +81471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *324 - *325 + - *326 responses: '204': *183 '409': *52 @@ -81494,14 +81529,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &511 + schema: &512 title: Import description: A repository import from an external source. type: object @@ -81608,7 +81643,7 @@ paths: - html_url - authors_url examples: - default: &514 + default: &515 value: vcs: subversion use_lfs: true @@ -81624,7 +81659,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &512 + '503': &513 description: Unavailable due to service under maintenance. content: application/json: @@ -81653,8 +81688,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -81702,7 +81737,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: default: value: @@ -81727,7 +81762,7 @@ paths: type: string '422': *15 '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81755,8 +81790,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -81808,7 +81843,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: example-1: summary: Example 1 @@ -81856,7 +81891,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81879,12 +81914,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *324 - *325 + - *326 responses: '204': description: Response - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81910,9 +81945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *324 - *325 - - &675 + - *326 + - &676 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -81926,7 +81961,7 @@ paths: application/json: schema: type: array - items: &513 + items: &514 title: Porter Author description: Porter Author type: object @@ -81980,7 +82015,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82005,8 +82040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *324 - *325 + - *326 - name: author_id in: path required: true @@ -82036,7 +82071,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: default: value: @@ -82049,7 +82084,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82073,8 +82108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -82115,7 +82150,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82143,8 +82178,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -82171,11 +82206,11 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *514 + default: *515 '422': *15 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82198,8 +82233,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -82207,8 +82242,8 @@ paths: application/json: schema: *20 examples: - default: *515 - '301': *328 + default: *516 + '301': *329 '404': *6 x-github: githubCloudOnly: false @@ -82228,8 +82263,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -82237,12 +82272,12 @@ paths: application/json: schema: anyOf: - - *221 + - *222 - type: object properties: {} additionalProperties: false examples: - default: &517 + default: &518 value: limit: collaborators_only origin: repository @@ -82267,13 +82302,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *516 + schema: *517 examples: default: summary: Example request body @@ -82285,9 +82320,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *517 + default: *518 '409': description: Response x-github: @@ -82309,8 +82344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -82333,8 +82368,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -82344,9 +82379,9 @@ paths: application/json: schema: type: array - items: *518 + items: *519 examples: - default: &667 + default: &668 value: - id: 1 repository: @@ -82477,9 +82512,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *324 - *325 - - *225 + - *326 + - *226 requestBody: required: false content: @@ -82508,7 +82543,7 @@ paths: description: Response content: application/json: - schema: *518 + schema: *519 examples: default: value: @@ -82639,9 +82674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *324 - *325 - - *225 + - *326 + - *226 responses: '204': description: Response @@ -82672,8 +82707,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *324 - *325 + - *326 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -82721,7 +82756,7 @@ paths: required: false schema: type: string - - *232 + - *233 - name: sort description: What to sort results by. in: query @@ -82746,7 +82781,7 @@ paths: type: array items: *81 examples: - default: &527 + default: &528 value: - id: 1 node_id: MDU6SXNzdWUx @@ -82895,7 +82930,7 @@ paths: state_reason: completed headers: Link: *65 - '301': *328 + '301': *329 '422': *15 '404': *6 x-github: @@ -82924,8 +82959,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -83009,7 +83044,7 @@ paths: application/json: schema: *81 examples: - default: &524 + default: &525 value: id: 1 node_id: MDU6SXNzdWUx @@ -83166,7 +83201,7 @@ paths: '422': *15 '503': *113 '404': *6 - '410': *519 + '410': *520 x-github: triggersNotification: true githubCloudOnly: false @@ -83194,8 +83229,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *324 - *325 + - *326 - *103 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -83218,7 +83253,7 @@ paths: type: array items: *82 examples: - default: &526 + default: &527 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -83276,8 +83311,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': @@ -83286,7 +83321,7 @@ paths: application/json: schema: *82 examples: - default: &520 + default: &521 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -83341,8 +83376,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -83367,7 +83402,7 @@ paths: application/json: schema: *82 examples: - default: *520 + default: *521 '422': *15 x-github: githubCloudOnly: false @@ -83385,8 +83420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -83415,8 +83450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': @@ -83479,7 +83514,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -83496,8 +83531,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -83505,7 +83540,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 '503': *113 x-github: githubCloudOnly: false @@ -83523,8 +83558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -83551,9 +83586,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -83574,8 +83609,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -83608,16 +83643,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -83639,10 +83674,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - *522 + - *523 responses: '204': description: Response @@ -83662,8 +83697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -83673,7 +83708,7 @@ paths: application/json: schema: type: array - items: &523 + items: &524 title: Issue Event description: Issue Event type: object @@ -84013,8 +84048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *324 - *325 + - *326 - name: event_id in: path required: true @@ -84025,7 +84060,7 @@ paths: description: Response content: application/json: - schema: *523 + schema: *524 examples: default: value: @@ -84218,7 +84253,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *519 + '410': *520 '403': *27 x-github: githubCloudOnly: false @@ -84252,9 +84287,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *324 - *325 - - &525 + - *326 + - &526 name: issue_number description: The number that identifies the issue. in: path @@ -84270,7 +84305,7 @@ paths: examples: default: summary: Issue - value: *524 + value: *525 pinned_comment: summary: Issue with pinned comment value: @@ -84469,9 +84504,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 '304': *35 x-github: githubCloudOnly: false @@ -84496,9 +84531,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -84633,13 +84668,13 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 '422': *15 '503': *113 '403': *27 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84657,9 +84692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -84687,7 +84722,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84703,9 +84738,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: content: application/json: @@ -84732,7 +84767,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84754,9 +84789,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: assignee in: path required: true @@ -84796,9 +84831,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *86 - *17 - *19 @@ -84811,11 +84846,11 @@ paths: type: array items: *82 examples: - default: *526 + default: *527 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84844,9 +84879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -84870,14 +84905,14 @@ paths: application/json: schema: *82 examples: - default: *520 + default: *521 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -84905,9 +84940,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -84919,12 +84954,12 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84952,9 +84987,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -84978,15 +85013,15 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *328 + '301': *329 '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -85017,9 +85052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -85033,13 +85068,13 @@ paths: application/json: schema: *81 examples: - default: *524 - '301': *328 + default: *525 + '301': *329 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 x-github: triggersNotification: true githubCloudOnly: false @@ -85065,9 +85100,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85079,12 +85114,12 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85101,9 +85136,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85117,7 +85152,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &530 + - &531 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -85166,7 +85201,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &531 + - &532 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -85294,7 +85329,7 @@ paths: - performed_via_github_app - assignee - assigner - - &532 + - &533 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -85340,7 +85375,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &533 + - &534 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -85386,7 +85421,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &534 + - &535 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -85435,7 +85470,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &535 + - &536 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -85477,7 +85512,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &536 + - &537 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -85519,7 +85554,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &537 + - &538 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -85575,7 +85610,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &538 + - &539 title: Locked Issue Event description: Locked Issue Event type: object @@ -85620,7 +85655,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &539 + - &540 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -85681,7 +85716,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &540 + - &541 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -85742,7 +85777,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &541 + - &542 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -85803,7 +85838,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &542 + - &543 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -85896,7 +85931,7 @@ paths: color: red headers: Link: *65 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85913,9 +85948,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85925,9 +85960,9 @@ paths: application/json: schema: type: array - items: *528 + items: *529 examples: - default: &639 + default: &640 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -85951,9 +85986,9 @@ paths: value: '2025-12-25' headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85970,9 +86005,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85984,7 +86019,7 @@ paths: type: array items: *80 examples: - default: &529 + default: &530 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -86002,9 +86037,9 @@ paths: default: false headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86020,9 +86055,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -86067,10 +86102,10 @@ paths: type: array items: *80 examples: - default: *529 - '301': *328 + default: *530 + '301': *329 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -86087,9 +86122,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -86151,10 +86186,10 @@ paths: type: array items: *80 examples: - default: *529 - '301': *328 + default: *530 + '301': *329 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -86171,15 +86206,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '204': description: Response - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86198,9 +86233,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: name in: path required: true @@ -86224,9 +86259,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86246,9 +86281,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -86277,7 +86312,7 @@ paths: '204': description: Response '403': *27 - '410': *519 + '410': *520 '404': *6 '422': *15 x-github: @@ -86295,9 +86330,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '204': description: Response @@ -86327,9 +86362,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '200': description: Response @@ -86337,10 +86372,10 @@ paths: application/json: schema: *81 examples: - default: *524 - '301': *328 + default: *525 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86357,9 +86392,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -86385,13 +86420,13 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86409,9 +86444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86443,16 +86478,16 @@ paths: description: Response content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Response content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -86474,10 +86509,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *324 - *325 - - *525 - - *522 + - *326 + - *526 + - *523 responses: '204': description: Response @@ -86506,9 +86541,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86532,7 +86567,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -86565,9 +86600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -86579,11 +86614,11 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86611,9 +86646,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86642,14 +86677,14 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -86669,9 +86704,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86704,7 +86739,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 '403': *27 '404': *6 '422': *7 @@ -86726,9 +86761,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -86743,7 +86778,6 @@ paths: description: Timeline Event type: object anyOf: - - *530 - *531 - *532 - *533 @@ -86756,6 +86790,7 @@ paths: - *540 - *541 - *542 + - *543 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -86812,7 +86847,7 @@ paths: pin: anyOf: - type: 'null' - - *543 + - *544 required: - event - actor @@ -87088,7 +87123,7 @@ paths: type: string comments: type: array - items: &562 + items: &563 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -87329,7 +87364,7 @@ paths: type: string comments: type: array - items: *452 + items: *453 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -87604,7 +87639,7 @@ paths: headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87621,8 +87656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -87632,7 +87667,7 @@ paths: application/json: schema: type: array - items: &544 + items: &545 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -87700,8 +87735,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -87737,9 +87772,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: &545 + default: &546 value: id: 1 key: ssh-rsa AAA... @@ -87773,9 +87808,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *324 - *325 - - &546 + - *326 + - &547 name: key_id description: The unique identifier of the key. in: path @@ -87787,9 +87822,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: *545 + default: *546 '404': *6 x-github: githubCloudOnly: false @@ -87807,9 +87842,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *324 - *325 - - *546 + - *326 + - *547 responses: '204': description: Response @@ -87829,8 +87864,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -87842,7 +87877,7 @@ paths: type: array items: *80 examples: - default: *529 + default: *530 headers: Link: *65 '404': *6 @@ -87863,8 +87898,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -87902,7 +87937,7 @@ paths: application/json: schema: *80 examples: - default: &547 + default: &548 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -87934,8 +87969,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -87948,7 +87983,7 @@ paths: application/json: schema: *80 examples: - default: *547 + default: *548 '404': *6 x-github: githubCloudOnly: false @@ -87965,8 +88000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -88031,8 +88066,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -88058,8 +88093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -88098,9 +88133,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *324 - *325 - - *427 + - *326 + - *428 responses: '200': description: Response @@ -88247,8 +88282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88313,8 +88348,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88348,9 +88383,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *455 + schema: *456 examples: - default: *548 + default: *549 '204': description: Response when already merged '404': @@ -88375,8 +88410,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *324 - *325 + - *326 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -88417,7 +88452,7 @@ paths: application/json: schema: type: array - items: *265 + items: *266 examples: default: value: @@ -88473,8 +88508,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88514,9 +88549,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: &549 + default: &550 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -88575,9 +88610,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *324 - *325 - - &550 + - *326 + - &551 name: milestone_number description: The number that identifies the milestone. in: path @@ -88589,9 +88624,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *549 + default: *550 '404': *6 x-github: githubCloudOnly: false @@ -88608,9 +88643,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 requestBody: required: false content: @@ -88648,9 +88683,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *549 + default: *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88666,9 +88701,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 responses: '204': description: Response @@ -88689,9 +88724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 - *17 - *19 responses: @@ -88703,7 +88738,7 @@ paths: type: array items: *80 examples: - default: *529 + default: *530 headers: Link: *65 x-github: @@ -88722,12 +88757,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *324 - *325 - - *551 + - *326 - *552 - - *86 - *553 + - *86 + - *554 - *17 - *19 responses: @@ -88739,7 +88774,7 @@ paths: type: array items: *106 examples: - default: *554 + default: *555 headers: Link: *65 x-github: @@ -88763,8 +88798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -88822,14 +88857,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &555 + schema: &556 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -88973,7 +89008,7 @@ paths: - custom_404 - public examples: - default: &556 + default: &557 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -89014,8 +89049,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89070,9 +89105,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *556 examples: - default: *556 + default: *557 '422': *15 '409': *52 x-github: @@ -89095,8 +89130,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89196,8 +89231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -89223,8 +89258,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -89234,7 +89269,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: Page Build description: Page Build type: object @@ -89326,8 +89361,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -89374,16 +89409,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: &558 + default: &559 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -89431,8 +89466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *324 - *325 + - *326 - name: build_id in: path required: true @@ -89443,9 +89478,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89465,8 +89500,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89574,9 +89609,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *324 - *325 - - &559 + - *326 + - &560 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -89634,9 +89669,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *324 - *325 - - *559 + - *326 + - *560 responses: '204': *183 '404': *6 @@ -89663,8 +89698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -89959,8 +89994,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Private vulnerability reporting status @@ -89997,8 +90032,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': *183 '422': *14 @@ -90019,8 +90054,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': *183 '422': *14 @@ -90042,8 +90077,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -90051,7 +90086,7 @@ paths: application/json: schema: type: array - items: *279 + items: *280 examples: default: value: @@ -90082,8 +90117,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90095,7 +90130,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *279 + items: *280 required: - properties examples: @@ -90145,8 +90180,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *324 - *325 + - *326 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -90206,9 +90241,9 @@ paths: application/json: schema: type: array - items: *459 + items: *460 examples: - default: *560 + default: *561 headers: Link: *65 '304': *35 @@ -90240,8 +90275,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90308,7 +90343,7 @@ paths: description: Response content: application/json: - schema: &564 + schema: &565 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -90437,7 +90472,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 active_lock_reason: type: - string @@ -90476,7 +90511,7 @@ paths: items: *4 requested_teams: type: array - items: *244 + items: *245 head: type: object properties: @@ -90514,14 +90549,14 @@ paths: _links: type: object properties: - comments: *266 - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + comments: *267 + commits: *267 + statuses: *267 + html: *267 + issue: *267 + review_comments: *267 + review_comment: *267 + self: *267 required: - comments - commits @@ -90532,7 +90567,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: *561 + auto_merge: *562 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -90632,7 +90667,7 @@ paths: - merged_by - review_comments examples: - default: &565 + default: &566 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -91159,8 +91194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *324 - *325 + - *326 - name: sort in: query required: false @@ -91189,9 +91224,9 @@ paths: application/json: schema: type: array - items: *562 + items: *563 examples: - default: &567 + default: &568 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -91268,17 +91303,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 responses: '200': description: Response content: application/json: - schema: *562 + schema: *563 examples: - default: &563 + default: &564 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -91353,8 +91388,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -91377,9 +91412,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: - default: *563 + default: *564 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91395,8 +91430,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -91418,8 +91453,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -91446,9 +91481,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -91469,8 +91504,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -91503,16 +91538,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -91534,10 +91569,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - *522 + - *523 responses: '204': description: Response @@ -91580,9 +91615,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *324 - *325 - - &566 + - *326 + - &567 name: pull_number description: The number that identifies the pull request. in: path @@ -91595,9 +91630,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *564 + schema: *565 examples: - default: *565 + default: *566 '304': *35 '404': *6 '406': @@ -91632,9 +91667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -91676,9 +91711,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: *565 + default: *566 '422': *15 '403': *27 x-github: @@ -91700,9 +91735,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -91763,17 +91798,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -91803,9 +91838,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -91826,9 +91861,9 @@ paths: application/json: schema: type: array - items: *562 + items: *563 examples: - default: *567 + default: *568 headers: Link: *65 x-github: @@ -91861,9 +91896,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -91969,7 +92004,7 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: example-for-a-multi-line-comment: value: @@ -92057,9 +92092,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *95 requestBody: required: true @@ -92082,7 +92117,7 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: default: value: @@ -92168,9 +92203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -92180,9 +92215,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: *568 + default: *569 headers: Link: *65 x-github: @@ -92212,9 +92247,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -92224,7 +92259,7 @@ paths: application/json: schema: type: array - items: *466 + items: *467 examples: default: value: @@ -92262,9 +92297,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *324 - *325 - - *566 + - *326 + - *567 responses: '204': description: Response if pull request has been merged @@ -92287,9 +92322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -92401,9 +92436,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 responses: '200': description: Response @@ -92478,9 +92513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -92517,7 +92552,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: default: value: @@ -93053,9 +93088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -93089,7 +93124,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: default: value: @@ -93594,9 +93629,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -93606,7 +93641,7 @@ paths: application/json: schema: type: array - items: &569 + items: &570 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -93762,9 +93797,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -93854,9 +93889,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: &571 + default: &572 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -93919,10 +93954,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - &570 + - *326 + - *567 + - &571 name: review_id description: The unique identifier of the review. in: path @@ -93934,9 +93969,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: &572 + default: &573 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -93995,10 +94030,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -94021,7 +94056,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: default: value: @@ -94083,18 +94118,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 responses: '200': description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *571 + default: *572 '422': *7 '404': *6 x-github: @@ -94121,10 +94156,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 - *17 - *19 responses: @@ -94222,9 +94257,9 @@ paths: _links: type: object properties: - self: *266 - html: *266 - pull_request: *266 + self: *267 + html: *267 + pull_request: *267 required: - self - html @@ -94382,10 +94417,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -94414,7 +94449,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: default: value: @@ -94477,10 +94512,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -94515,9 +94550,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *572 + default: *573 '404': *6 '422': *7 '403': *27 @@ -94539,9 +94574,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -94605,8 +94640,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *324 - *325 + - *326 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -94619,9 +94654,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: &574 + default: &575 value: type: file encoding: base64 @@ -94663,8 +94698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *324 - *325 + - *326 - name: dir description: The alternate path to look for a README file in: path @@ -94684,9 +94719,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *574 + default: *575 '404': *6 '422': *15 x-github: @@ -94708,8 +94743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -94719,7 +94754,7 @@ paths: application/json: schema: type: array - items: *575 + items: *576 examples: default: value: @@ -94813,8 +94848,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -94890,9 +94925,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: &579 + default: &580 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -94997,9 +95032,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *324 - *325 - - &577 + - *326 + - &578 name: asset_id description: The unique identifier of the asset. in: path @@ -95011,9 +95046,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: &578 + default: &579 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -95048,7 +95083,7 @@ paths: type: User site_admin: false '404': *6 - '302': *468 + '302': *469 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95064,9 +95099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *324 - *325 - - *577 + - *326 + - *578 requestBody: required: false content: @@ -95095,9 +95130,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: *578 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95113,9 +95148,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *324 - *325 - - *577 + - *326 + - *578 responses: '204': description: Response @@ -95140,8 +95175,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -95227,16 +95262,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -95254,8 +95289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *324 - *325 + - *326 - name: tag description: tag parameter in: path @@ -95268,9 +95303,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -95292,9 +95327,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *324 - *325 - - &580 + - *326 + - &581 name: release_id description: The unique identifier of the release. in: path @@ -95308,9 +95343,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '401': description: Unauthorized x-github: @@ -95328,9 +95363,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 requestBody: required: false content: @@ -95394,9 +95429,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': description: Not Found if the discussion category name is invalid content: @@ -95417,9 +95452,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 responses: '204': description: Response @@ -95440,9 +95475,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *324 - *325 - - *580 + - *326 + - *581 - *17 - *19 responses: @@ -95452,7 +95487,7 @@ paths: application/json: schema: type: array - items: *576 + items: *577 examples: default: value: @@ -95533,9 +95568,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *324 - *325 - - *580 + - *326 + - *581 - name: name in: query required: true @@ -95561,7 +95596,7 @@ paths: description: Response for successful upload content: application/json: - schema: *576 + schema: *577 examples: response-for-successful-upload: value: @@ -95616,9 +95651,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -95642,9 +95677,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -95665,9 +95700,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 requestBody: required: true content: @@ -95697,16 +95732,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -95728,10 +95763,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *324 - *325 - - *580 - - *522 + - *326 + - *581 + - *523 responses: '204': description: Response @@ -95755,9 +95790,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 - *17 - *19 responses: @@ -95773,8 +95808,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *286 - - &581 + - *287 + - &582 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -95793,69 +95828,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *287 - - *581 - allOf: - *288 - - *581 + - *582 - allOf: - *289 - - *581 - - allOf: - *582 - - *581 - allOf: - *290 - - *581 + - *582 + - allOf: + - *583 + - *582 - allOf: - *291 - - *581 + - *582 - allOf: - *292 - - *581 + - *582 - allOf: - *293 - - *581 + - *582 - allOf: - *294 - - *581 + - *582 - allOf: - *295 - - *581 + - *582 - allOf: - *296 - - *581 + - *582 - allOf: - *297 - - *581 + - *582 - allOf: - *298 - - *581 + - *582 - allOf: - *299 - - *581 + - *582 - allOf: - *300 - - *581 + - *582 - allOf: - *301 - - *581 + - *582 - allOf: - *302 - - *581 + - *582 - allOf: - *303 - - *581 + - *582 - allOf: - *304 - - *581 + - *582 - allOf: - *305 - - *581 + - *582 - allOf: - *306 - - *581 + - *582 + - allOf: + - *307 + - *582 examples: default: value: @@ -95894,8 +95929,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - *17 - *19 - name: includes_parents @@ -95906,7 +95941,7 @@ paths: schema: type: boolean default: true - - *583 + - *584 responses: '200': description: Response @@ -95914,7 +95949,7 @@ paths: application/json: schema: type: array - items: *307 + items: *308 examples: default: value: @@ -95961,8 +95996,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 requestBody: description: Request body required: true @@ -95982,16 +96017,16 @@ paths: - tag - push default: branch - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *281 + items: *285 + conditions: *282 rules: type: array description: An array of rules within the ruleset. - items: *584 + items: *585 required: - name - enforcement @@ -96022,9 +96057,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &594 + default: &595 value: id: 42 name: super cool ruleset @@ -96072,12 +96107,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *324 - *325 - - *585 + - *326 - *586 - *587 - *588 + - *589 - *17 - *19 responses: @@ -96085,9 +96120,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 '404': *6 '500': *53 x-github: @@ -96108,17 +96143,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *324 - *325 - - *591 + - *326 + - *592 responses: '200': description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '404': *6 '500': *53 x-github: @@ -96146,8 +96181,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96167,9 +96202,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *594 + default: *595 '404': *6 '500': *53 put: @@ -96187,8 +96222,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96213,16 +96248,16 @@ paths: - branch - tag - push - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *281 + items: *285 + conditions: *282 rules: description: An array of rules within the ruleset. type: array - items: *584 + items: *585 examples: default: value: @@ -96250,9 +96285,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *594 + default: *595 '404': *6 '422': *15 '500': *53 @@ -96271,8 +96306,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96295,8 +96330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *324 - *325 + - *326 - *17 - *19 - name: ruleset_id @@ -96312,9 +96347,9 @@ paths: application/json: schema: type: array - items: *310 + items: *311 examples: - default: *595 + default: *596 '404': *6 '500': *53 x-github: @@ -96333,8 +96368,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96352,7 +96387,7 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: default: value: @@ -96407,22 +96442,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *324 - *325 - - *597 + - *326 - *598 - *599 - *600 - *601 + - *602 - *59 - *19 - *17 - - *602 - *603 - *604 - *605 - *606 - *607 + - *608 responses: '200': description: Response @@ -96430,7 +96465,7 @@ paths: application/json: schema: type: array - items: &611 + items: &612 type: object properties: number: *170 @@ -96446,8 +96481,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *608 - resolution: *609 + state: *609 + resolution: *610 resolved_at: type: - string @@ -96541,7 +96576,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *610 + - *611 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -96700,16 +96735,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 - - *607 + - *326 + - *422 + - *608 responses: '200': description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -96763,9 +96798,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: true content: @@ -96773,8 +96808,8 @@ paths: schema: type: object properties: - state: *608 - resolution: *609 + state: *609 + resolution: *610 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -96812,7 +96847,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -96907,9 +96942,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 - *19 - *17 responses: @@ -96920,7 +96955,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &761 + items: &762 type: object properties: type: @@ -96947,7 +96982,6 @@ paths: - commit details: oneOf: - - *612 - *613 - *614 - *615 @@ -96960,6 +96994,7 @@ paths: - *622 - *623 - *624 + - *625 examples: default: value: @@ -97045,8 +97080,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -97054,14 +97089,14 @@ paths: schema: type: object properties: - reason: &626 + reason: &627 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *625 + placeholder_id: *626 required: - reason - placeholder_id @@ -97078,7 +97113,7 @@ paths: schema: type: object properties: - reason: *626 + reason: *627 expire_at: type: - string @@ -97125,8 +97160,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *324 - *325 + - *326 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -97141,7 +97176,7 @@ paths: properties: incremental_scans: type: array - items: &627 + items: &628 description: Information on a single scan performed by secret scanning on the repository type: object @@ -97169,15 +97204,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *627 + items: *628 backfill_scans: type: array - items: *627 + items: *628 custom_pattern_backfill_scans: type: array items: allOf: - - *627 + - *628 - type: object properties: pattern_name: @@ -97247,8 +97282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *324 - *325 + - *326 - *59 - name: sort description: The property to sort the results by. @@ -97292,9 +97327,9 @@ paths: application/json: schema: type: array - items: *628 + items: *629 examples: - default: *629 + default: *630 '400': *14 '404': *6 x-github: @@ -97317,8 +97352,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -97398,7 +97433,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 required: - login - type @@ -97488,9 +97523,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: &631 + default: &632 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -97723,8 +97758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -97837,7 +97872,7 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: default: value: @@ -97984,17 +98019,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '200': description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: *631 + default: *632 '403': *27 '404': *6 x-github: @@ -98018,9 +98053,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 requestBody: required: true content: @@ -98100,7 +98135,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 required: - login - type @@ -98191,10 +98226,10 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: *631 - add_credit: *631 + default: *632 + add_credit: *632 '403': *27 '404': *6 '422': @@ -98232,9 +98267,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '202': *37 '400': *14 @@ -98261,17 +98296,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '202': description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 '400': *14 '422': *15 '403': *27 @@ -98297,8 +98332,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -98394,8 +98429,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -98404,7 +98439,7 @@ paths: application/json: schema: type: array - items: &632 + items: &633 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -98437,8 +98472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -98516,8 +98551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -98611,8 +98646,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *324 - *325 + - *326 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -98766,8 +98801,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *324 - *325 + - *326 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -98777,7 +98812,7 @@ paths: application/json: schema: type: array - items: *632 + items: *633 examples: default: value: @@ -98810,8 +98845,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *324 - *325 + - *326 - name: sha in: path required: true @@ -98867,7 +98902,7 @@ paths: description: Response content: application/json: - schema: *633 + schema: *634 examples: default: value: @@ -98921,8 +98956,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -98954,14 +98989,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *324 - *325 + - *326 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &634 + schema: &635 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -99034,8 +99069,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -99061,7 +99096,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -99088,8 +99123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -99109,8 +99144,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -99192,8 +99227,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *324 - *325 + - *326 - name: ref in: path required: true @@ -99229,8 +99264,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -99242,7 +99277,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 headers: Link: *65 '404': *6 @@ -99262,8 +99297,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *324 - *325 + - *326 - *19 - *17 responses: @@ -99271,7 +99306,7 @@ paths: description: Response content: application/json: - schema: &635 + schema: &636 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -99283,7 +99318,7 @@ paths: required: - names examples: - default: &636 + default: &637 value: names: - octocat @@ -99306,8 +99341,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -99338,9 +99373,9 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: - default: *636 + default: *637 '404': *6 '422': *7 x-github: @@ -99361,9 +99396,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *324 - *325 - - &637 + - *326 + - &638 name: per description: The time frame to display results for. in: query @@ -99394,7 +99429,7 @@ paths: - 128 clones: type: array - items: &638 + items: &639 title: Traffic type: object properties: @@ -99481,8 +99516,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -99576,8 +99611,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -99640,9 +99675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *324 - *325 - - *637 + - *326 + - *638 responses: '200': description: Response @@ -99663,7 +99698,7 @@ paths: - 3782 views: type: array - items: *638 + items: *639 required: - uniques - count @@ -99740,8 +99775,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -100015,8 +100050,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -100039,8 +100074,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -100062,8 +100097,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -100089,8 +100124,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *324 - *325 + - *326 - name: ref in: path required: true @@ -100182,9 +100217,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -100332,7 +100367,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *141 - - *525 + - *526 requestBody: required: true content: @@ -100398,9 +100433,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *528 + items: *529 examples: - default: *639 + default: *640 '400': *14 '403': *27 '404': *6 @@ -100437,7 +100472,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *141 - - *525 + - *526 requestBody: required: true content: @@ -100504,9 +100539,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *528 + items: *529 examples: - default: *639 + default: *640 '400': *14 '403': *27 '404': *6 @@ -100538,8 +100573,8 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *141 - - *525 - - *228 + - *526 + - *229 responses: '204': description: Issue field value deleted successfully @@ -100576,6 +100611,9 @@ paths: * You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is. + > [!NOTE] + > `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata. + This endpoint requires you to authenticate and limits you to 10 requests per minute. tags: - search @@ -100679,7 +100717,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &640 + text_matches: &641 title: Search Result Text Matches type: array items: @@ -100842,7 +100880,7 @@ paths: enum: - author-date - committer-date - - &641 + - &642 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -100911,7 +100949,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 comment_count: type: integer message: @@ -100930,7 +100968,7 @@ paths: url: type: string format: uri - verification: *505 + verification: *506 required: - author - committer @@ -100945,7 +100983,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 parents: type: array items: @@ -100962,7 +101000,7 @@ paths: type: number node_id: type: string - text_matches: *640 + text_matches: *641 required: - sha - node_id @@ -101154,7 +101192,7 @@ paths: - interactions - created - updated - - *641 + - *642 - *17 - *19 - name: advanced_search @@ -101268,11 +101306,11 @@ paths: type: - string - 'null' - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: type: string state_reason: @@ -101282,7 +101320,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 comments: type: integer created_at: @@ -101296,7 +101334,7 @@ paths: - string - 'null' format: date-time - text_matches: *640 + text_matches: *641 pull_request: type: object properties: @@ -101345,7 +101383,7 @@ paths: timeline_url: type: string format: uri - type: *229 + type: *230 performed_via_github_app: anyOf: - type: 'null' @@ -101561,7 +101599,7 @@ paths: enum: - created - updated - - *641 + - *642 - *17 - *19 responses: @@ -101606,7 +101644,7 @@ paths: - 'null' score: type: number - text_matches: *640 + text_matches: *641 required: - id - node_id @@ -101691,7 +101729,7 @@ paths: - forks - help-wanted-issues - updated - - *641 + - *642 - *17 - *19 responses: @@ -101937,7 +101975,7 @@ paths: - admin - pull - push - text_matches: *640 + text_matches: *641 temp_clone_token: type: string allow_merge_commit: @@ -102245,7 +102283,7 @@ paths: - string - 'null' format: uri - text_matches: *640 + text_matches: *641 related: type: - array @@ -102438,7 +102476,7 @@ paths: - followers - repositories - joined - - *641 + - *642 - *17 - *19 responses: @@ -102548,7 +102586,7 @@ paths: type: - boolean - 'null' - text_matches: *640 + text_matches: *641 blog: type: - string @@ -102630,7 +102668,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &644 + - &645 name: team_id description: The unique identifier of the team. in: path @@ -102642,9 +102680,9 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 x-github: githubCloudOnly: false @@ -102671,7 +102709,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *644 + - *645 requestBody: required: true content: @@ -102735,16 +102773,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '201': description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 '422': *15 '403': *27 @@ -102772,7 +102810,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *644 + - *645 responses: '204': description: Response @@ -102801,7 +102839,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -102811,9 +102849,9 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 x-github: @@ -102839,7 +102877,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *644 + - *645 - name: role description: Filters members returned by their role in the team. in: query @@ -102890,7 +102928,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -102927,7 +102965,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -102967,7 +103005,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -103004,16 +103042,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 responses: '200': description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-user-is-a-team-maintainer: *645 + response-if-user-is-a-team-maintainer: *646 '404': *6 x-github: githubCloudOnly: false @@ -103046,7 +103084,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 requestBody: required: false @@ -103072,9 +103110,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: *646 + response-if-users-membership-with-team-is-now-pending: *647 '403': description: Forbidden if team synchronization is set up '422': @@ -103108,7 +103146,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -103136,7 +103174,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -103148,7 +103186,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 '404': *6 @@ -103178,15 +103216,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *647 + schema: *648 examples: alternative-response-with-extra-repository-information: value: @@ -103337,9 +103375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 requestBody: required: false content: @@ -103389,9 +103427,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 responses: '204': description: Response @@ -103416,7 +103454,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -103428,7 +103466,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: *648 + response-if-child-teams-exist: *649 headers: Link: *65 '404': *6 @@ -103461,7 +103499,7 @@ paths: application/json: schema: oneOf: - - &649 + - &650 title: Private User description: Private User type: object @@ -103711,7 +103749,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &674 + - &675 title: Public User description: Public User type: object @@ -104045,7 +104083,7 @@ paths: description: Response content: application/json: - schema: *649 + schema: *650 examples: default: value: @@ -104248,9 +104286,9 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '304': *35 '500': *53 '401': *23 @@ -104389,17 +104427,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -104443,7 +104481,7 @@ paths: type: integer secrets: type: array - items: &650 + items: &651 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -104485,7 +104523,7 @@ paths: - visibility - selected_repositories_url examples: - default: *446 + default: *447 headers: Link: *65 x-github: @@ -104563,7 +104601,7 @@ paths: description: Response content: application/json: - schema: *650 + schema: *651 examples: default: value: @@ -104853,15 +104891,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '304': *35 '500': *53 '401': *23 @@ -104887,7 +104925,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 requestBody: required: false content: @@ -104917,9 +104955,9 @@ paths: description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -104941,7 +104979,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '202': *37 '304': *35 @@ -104970,13 +105008,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '202': description: Response content: application/json: - schema: &651 + schema: &652 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -105029,7 +105067,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &652 + default: &653 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -105061,7 +105099,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *236 + - *237 - name: export_id in: path required: true @@ -105074,9 +105112,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: - default: *652 + default: *653 '404': *6 x-github: githubCloudOnly: false @@ -105097,7 +105135,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *236 + - *237 responses: '200': description: Response @@ -105113,9 +105151,9 @@ paths: type: integer machines: type: array - items: *445 + items: *446 examples: - default: *653 + default: *654 '304': *35 '500': *53 '401': *23 @@ -105144,7 +105182,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *236 + - *237 requestBody: required: true content: @@ -105200,11 +105238,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *327 + repository: *328 machine: anyOf: - type: 'null' - - *445 + - *446 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -106001,15 +106039,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '304': *35 '500': *53 '400': *14 @@ -106041,15 +106079,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '500': *53 '401': *23 '403': *27 @@ -106079,9 +106117,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: &664 + default: &665 value: - id: 197 name: hello_docker @@ -106182,7 +106220,7 @@ paths: application/json: schema: type: array - items: &654 + items: &655 title: Email description: Email type: object @@ -106252,9 +106290,9 @@ paths: application/json: schema: type: array - items: *654 + items: *655 examples: - default: &666 + default: &667 value: - email: octocat@github.com verified: true @@ -106331,7 +106369,7 @@ paths: application/json: schema: type: array - items: *654 + items: *655 examples: default: value: @@ -106589,7 +106627,7 @@ paths: application/json: schema: type: array - items: &655 + items: &656 title: GPG Key description: A unique encryption key type: object @@ -106734,7 +106772,7 @@ paths: - subkeys - revoked examples: - default: &683 + default: &684 value: - id: 3 name: Octocat's GPG Key @@ -106819,9 +106857,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: &656 + default: &657 value: id: 3 name: Octocat's GPG Key @@ -106878,7 +106916,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &657 + - &658 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -106890,9 +106928,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: *656 + default: *657 '404': *6 '304': *35 '403': *27 @@ -106915,7 +106953,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *657 + - *658 responses: '204': description: Response @@ -107194,12 +107232,12 @@ paths: application/json: schema: anyOf: - - *221 + - *222 - type: object properties: {} additionalProperties: false examples: - default: *222 + default: *223 '204': description: Response when there are no restrictions x-github: @@ -107223,7 +107261,7 @@ paths: required: true content: application/json: - schema: *516 + schema: *517 examples: default: value: @@ -107234,7 +107272,7 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: default: value: @@ -107315,7 +107353,7 @@ paths: - closed - all default: open - - *232 + - *233 - name: sort description: What to sort results by. in: query @@ -107340,7 +107378,7 @@ paths: type: array items: *81 examples: - default: *233 + default: *234 headers: Link: *65 '404': *6 @@ -107373,7 +107411,7 @@ paths: application/json: schema: type: array - items: &658 + items: &659 title: Key description: Key type: object @@ -107476,9 +107514,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: &659 + default: &660 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107511,15 +107549,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *546 + - *547 responses: '200': description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 '404': *6 '304': *35 '403': *27 @@ -107542,7 +107580,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *546 + - *547 responses: '204': description: Response @@ -107575,7 +107613,7 @@ paths: application/json: schema: type: array - items: &660 + items: &661 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -107654,7 +107692,7 @@ paths: - account - plan examples: - default: &661 + default: &662 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -107716,9 +107754,9 @@ paths: application/json: schema: type: array - items: *660 + items: *661 examples: - default: *661 + default: *662 headers: Link: *65 '304': *35 @@ -107758,7 +107796,7 @@ paths: application/json: schema: type: array - items: *238 + items: *239 examples: default: value: @@ -107872,7 +107910,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -107959,7 +107997,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -108031,7 +108069,7 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: default: value: @@ -108293,7 +108331,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -108473,7 +108511,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *241 + - *242 - name: exclude in: query required: false @@ -108486,7 +108524,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -108680,7 +108718,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *241 + - *242 responses: '302': description: Response @@ -108706,7 +108744,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *241 + - *242 responses: '204': description: Response @@ -108735,8 +108773,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *241 - - *662 + - *242 + - *663 responses: '204': description: Response @@ -108760,7 +108798,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *241 + - *242 - *17 - *19 responses: @@ -108849,7 +108887,7 @@ paths: - docker - nuget - container - - *663 + - *664 - *19 - *17 responses: @@ -108859,10 +108897,10 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *664 - '400': *665 + default: *665 + '400': *666 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108882,16 +108920,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: &684 + default: &685 value: id: 40201 name: octo-name @@ -109004,8 +109042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 responses: '204': description: Response @@ -109035,8 +109073,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 - name: token description: package token schema: @@ -109068,8 +109106,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *248 - *249 + - *250 - *19 - *17 - name: state @@ -109089,7 +109127,7 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: default: value: @@ -109138,15 +109176,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -109182,9 +109220,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '204': description: Response @@ -109214,9 +109252,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '204': description: Response @@ -109253,9 +109291,9 @@ paths: application/json: schema: type: array - items: *654 + items: *655 examples: - default: *666 + default: *667 headers: Link: *65 '304': *35 @@ -109368,7 +109406,7 @@ paths: type: array items: *77 examples: - default: &673 + default: &674 summary: Default response value: - id: 1296269 @@ -109686,9 +109724,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -109727,9 +109765,9 @@ paths: application/json: schema: type: array - items: *518 + items: *519 examples: - default: *667 + default: *668 headers: Link: *65 '304': *35 @@ -109752,7 +109790,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *225 + - *226 responses: '204': description: Response @@ -109776,7 +109814,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *225 + - *226 responses: '204': description: Response @@ -109809,7 +109847,7 @@ paths: application/json: schema: type: array - items: &668 + items: &669 title: Social account description: Social media account type: object @@ -109826,7 +109864,7 @@ paths: - provider - url examples: - default: &669 + default: &670 value: - provider: twitter url: https://twitter.com/github @@ -109889,9 +109927,9 @@ paths: application/json: schema: type: array - items: *668 + items: *669 examples: - default: *669 + default: *670 '422': *15 '304': *35 '404': *6 @@ -109979,7 +110017,7 @@ paths: application/json: schema: type: array - items: &670 + items: &671 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -109999,7 +110037,7 @@ paths: - title - created_at examples: - default: &702 + default: &703 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -110064,9 +110102,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: &671 + default: &672 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -110096,7 +110134,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &672 + - &673 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -110108,9 +110146,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: *671 + default: *672 '404': *6 '304': *35 '403': *27 @@ -110133,7 +110171,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *672 + - *673 responses: '204': description: Response @@ -110162,7 +110200,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &703 + - &704 name: sort description: The property to sort the results by. `created` means when the repository was starred. `updated` means when the repository was last pushed @@ -110187,11 +110225,11 @@ paths: type: array items: *77 examples: - default-response: *673 + default-response: *674 application/vnd.github.v3.star+json: schema: type: array - items: &704 + items: &705 title: Starred Repository description: Starred Repository type: object @@ -110347,8 +110385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response if this repository is starred by you @@ -110376,8 +110414,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -110401,8 +110439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -110437,7 +110475,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 '304': *35 @@ -110474,7 +110512,7 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: default: value: @@ -110560,10 +110598,10 @@ paths: application/json: schema: oneOf: - - *649 - - *674 + - *650 + - *675 examples: - default-response: &678 + default-response: &679 summary: Default response value: login: octocat @@ -110598,7 +110636,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &679 + response-with-git-hub-plan-information: &680 summary: Response with GitHub plan information value: login: octocat @@ -110655,14 +110693,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &676 + - &677 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *264 + - *265 requestBody: required: true description: Details of the draft item to create in the project. @@ -110696,9 +110734,9 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: - draft_issue: *270 + draft_issue: *271 '304': *35 '403': *27 '401': *23 @@ -110721,7 +110759,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *675 + - *676 - *17 responses: '200': @@ -110756,8 +110794,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *676 - - *264 + - *677 + - *265 requestBody: required: true content: @@ -110831,17 +110869,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *677 + schema: *678 examples: table_view: summary: Response for creating a table view - value: *274 + value: *275 board_view: summary: Response for creating a board view with filter - value: *274 + value: *275 roadmap_view: summary: Response for creating a roadmap view - value: *274 + value: *275 '304': *35 '403': *27 '401': *23 @@ -110883,11 +110921,11 @@ paths: application/json: schema: oneOf: - - *649 - - *674 + - *650 + - *675 examples: - default-response: *678 - response-with-git-hub-plan-information: *679 + default-response: *679 + response-with-git-hub-plan-information: *680 '404': *6 x-github: githubCloudOnly: false @@ -110937,8 +110975,8 @@ paths: required: - subject_digests examples: - default: *680 - withPredicateType: *681 + default: *681 + withPredicateType: *682 responses: '200': description: Response @@ -110978,7 +111016,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *682 + default: *683 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111167,7 +111205,7 @@ paths: initiator: type: string examples: - default: *385 + default: *386 '201': description: Response content: @@ -111206,9 +111244,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *664 + default: *665 '403': *27 '401': *23 x-github: @@ -111592,9 +111630,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: *683 + default: *684 headers: Link: *65 x-github: @@ -111698,7 +111736,7 @@ paths: application/json: schema: *20 examples: - default: *515 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111823,7 +111861,7 @@ paths: - docker - nuget - container - - *663 + - *664 - *69 - *19 - *17 @@ -111834,12 +111872,12 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *664 + default: *665 '403': *27 '401': *23 - '400': *665 + '400': *666 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111859,17 +111897,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *684 + default: *685 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111890,8 +111928,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '204': @@ -111924,8 +111962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 - name: token description: package token @@ -111958,8 +111996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '200': @@ -111968,7 +112006,7 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: default: value: @@ -112026,16 +112064,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 - *69 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -112070,10 +112108,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *248 - *249 + - *250 - *69 - - *251 + - *252 responses: '204': description: Response @@ -112105,10 +112143,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *248 - *249 + - *250 - *69 - - *251 + - *252 responses: '204': description: Response @@ -112149,9 +112187,9 @@ paths: application/json: schema: type: array - items: *262 + items: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -112173,16 +112211,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *264 + - *265 - *69 responses: '200': description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -112204,7 +112242,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *264 + - *265 - *69 - *17 - *45 @@ -112216,9 +112254,9 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: - default: *685 + default: *686 headers: Link: *65 '304': *35 @@ -112240,7 +112278,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *69 - - *264 + - *265 requestBody: required: true content: @@ -112278,7 +112316,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *686 + items: *687 required: - name - data_type @@ -112294,7 +112332,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *687 + iteration_configuration: *688 required: - name - data_type @@ -112316,20 +112354,20 @@ paths: value: name: Due date data_type: date - single_select_field: *688 - iteration_field: *689 + single_select_field: *689 + iteration_field: *690 responses: '201': description: Response content: application/json: - schema: *267 + schema: *268 examples: - text_field: *690 - number_field: *691 - date_field: *692 - single_select_field: *693 - iteration_field: *694 + text_field: *691 + number_field: *692 + date_field: *693 + single_select_field: *694 + iteration_field: *695 '304': *35 '403': *27 '401': *23 @@ -112350,17 +112388,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *264 - - *695 + - *265 + - *696 - *69 responses: '200': description: Response content: application/json: - schema: *267 + schema: *268 examples: - default: *696 + default: *697 headers: Link: *65 '304': *35 @@ -112383,7 +112421,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *264 + - *265 - *69 - *45 - *46 @@ -112416,9 +112454,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -112440,7 +112478,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *69 - - *264 + - *265 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -112510,22 +112548,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *271 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *271 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *271 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *271 '304': *35 '403': *27 '401': *23 @@ -112545,9 +112583,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *264 + - *265 - *69 - - *273 + - *274 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -112567,9 +112605,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -112590,9 +112628,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *264 + - *265 - *69 - - *273 + - *274 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -112665,13 +112703,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *273 + number_field: *273 + date_field: *273 + single_select_field: *273 + iteration_field: *273 '401': *23 '403': *27 '404': *6 @@ -112691,9 +112729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *264 + - *265 - *69 - - *273 + - *274 responses: '204': description: Response @@ -112715,9 +112753,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *264 + - *265 - *69 - - *697 + - *698 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -112743,9 +112781,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -112966,7 +113004,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 x-github: @@ -112992,7 +113030,7 @@ paths: - *115 - *117 - *116 - - *698 + - *699 - *118 responses: '200': @@ -113123,7 +113161,7 @@ paths: parameters: - *69 - *115 - - *699 + - *700 - *116 responses: '200': @@ -113222,9 +113260,9 @@ paths: - *115 - *117 - *116 - - *700 - - *118 - *701 + - *118 + - *702 responses: '200': description: Response when getting a billing usage summary @@ -113358,9 +113396,9 @@ paths: application/json: schema: type: array - items: *668 + items: *669 examples: - default: *669 + default: *670 headers: Link: *65 x-github: @@ -113390,9 +113428,9 @@ paths: application/json: schema: type: array - items: *670 + items: *671 examples: - default: *702 + default: *703 headers: Link: *65 x-github: @@ -113417,7 +113455,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *69 - - *703 + - *704 - *59 - *17 - *19 @@ -113429,11 +113467,11 @@ paths: schema: anyOf: - type: array - items: *704 + items: *705 - type: array items: *77 examples: - default-response: *673 + default-response: *674 headers: Link: *65 x-github: @@ -113464,7 +113502,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 x-github: @@ -113593,7 +113631,7 @@ webhooks: type: string enum: - disabled - enterprise: &705 + enterprise: &706 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -113662,7 +113700,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &706 + installation: &707 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -113683,7 +113721,7 @@ webhooks: required: - id - node_id - organization: &707 + organization: &708 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -113756,7 +113794,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &708 + repository: &709 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -114671,10 +114709,10 @@ webhooks: type: string enum: - enabled - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -114750,11 +114788,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: &709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: &710 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -114977,11 +115015,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: *709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: *710 sender: *4 required: - action @@ -115169,11 +115207,11 @@ webhooks: - everyone required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: *709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: *710 sender: *4 required: - action @@ -115257,7 +115295,7 @@ webhooks: type: string enum: - completed - check_run: &711 + check_run: &712 title: CheckRun description: A check performed on the code of a given code change type: object @@ -115367,7 +115405,7 @@ webhooks: - examples: - neutral - deployment: *710 + deployment: *711 details_url: type: string examples: @@ -115465,10 +115503,10 @@ webhooks: - output - app - pull_requests - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -115859,11 +115897,11 @@ webhooks: type: string enum: - created - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -116257,11 +116295,11 @@ webhooks: type: string enum: - requested_action - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 requested_action: description: The action requested by the user. type: object @@ -116664,11 +116702,11 @@ webhooks: type: string enum: - rerequested - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -117653,10 +117691,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -118360,10 +118398,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -119061,10 +119099,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -119233,7 +119271,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119385,20 +119423,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &712 + commit_oid: &713 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *705 - installation: *706 - organization: *707 - ref: &713 + enterprise: *706 + installation: *707 + organization: *708 + ref: &714 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -119565,7 +119603,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119806,12 +119844,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -119909,7 +119947,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120094,12 +120132,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -120268,7 +120306,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -120445,12 +120483,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -120551,7 +120589,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120740,9 +120778,9 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -120750,7 +120788,7 @@ webhooks: type: - string - 'null' - repository: *708 + repository: *709 sender: *4 required: - action @@ -120849,7 +120887,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120996,12 +121034,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -121170,7 +121208,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -121322,10 +121360,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -121585,10 +121623,10 @@ webhooks: - updated_at - author_association - body - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -121669,18 +121707,18 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *707 - pusher_type: &714 + organization: *708 + pusher_type: &715 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &715 + ref: &716 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -121690,7 +121728,7 @@ webhooks: enum: - tag - branch - repository: *708 + repository: *709 sender: *4 required: - ref @@ -121772,10 +121810,10 @@ webhooks: type: string enum: - created - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -121860,9 +121898,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -121939,10 +121977,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -122019,10 +122057,10 @@ webhooks: type: string enum: - updated - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -122099,19 +122137,19 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - repository: *708 - organization: *707 + enterprise: *706 + installation: *707 + repository: *709 + organization: *708 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *279 + items: *280 old_property_values: type: array description: The old custom property values for the repository. - items: *279 + items: *280 required: - action - repository @@ -122187,18 +122225,18 @@ webhooks: title: delete event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - pusher_type: *714 - ref: *715 + enterprise: *706 + installation: *707 + organization: *708 + pusher_type: *715 + ref: *716 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *708 + repository: *709 sender: *4 required: - ref @@ -122278,11 +122316,11 @@ webhooks: type: string enum: - assignees_changed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122362,11 +122400,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122447,11 +122485,11 @@ webhooks: type: string enum: - auto_reopened - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122532,11 +122570,11 @@ webhooks: type: string enum: - created - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122615,11 +122653,11 @@ webhooks: type: string enum: - dismissed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122698,11 +122736,11 @@ webhooks: type: string enum: - fixed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122782,11 +122820,11 @@ webhooks: type: string enum: - reintroduced - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122865,11 +122903,11 @@ webhooks: type: string enum: - reopened - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122946,9 +122984,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - key: &716 + enterprise: *706 + installation: *707 + key: &717 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -122986,8 +123024,8 @@ webhooks: - verified - created_at - read_only - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -123064,11 +123102,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - key: *716 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + key: *717 + organization: *708 + repository: *709 sender: *4 required: - action @@ -123635,12 +123673,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: &720 + workflow: &721 title: Workflow type: - object @@ -124391,13 +124429,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *480 + - *481 pull_requests: type: array - items: *564 - repository: *708 - organization: *707 - installation: *706 + items: *565 + repository: *709 + organization: *708 + installation: *707 sender: *4 responses: '200': @@ -124468,7 +124506,7 @@ webhooks: type: string enum: - approved - approver: &717 + approver: &718 type: object properties: avatar_url: @@ -124511,11 +124549,11 @@ webhooks: type: string comment: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - reviewers: &718 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + reviewers: &719 type: array items: type: object @@ -124596,7 +124634,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &719 + workflow_job_run: &720 type: object properties: conclusion: @@ -125342,18 +125380,18 @@ webhooks: type: string enum: - rejected - approver: *717 + approver: *718 comment: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - reviewers: *718 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + reviewers: *719 sender: *4 since: type: string - workflow_job_run: *719 + workflow_job_run: *720 workflow_job_runs: type: array items: @@ -126070,13 +126108,13 @@ webhooks: type: string enum: - requested - enterprise: *705 + enterprise: *706 environment: type: string - installation: *706 - organization: *707 - repository: *708 - requestor: &725 + installation: *707 + organization: *708 + repository: *709 + requestor: &726 title: User type: - object @@ -128009,12 +128047,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Deployment Workflow Run type: @@ -128705,7 +128743,7 @@ webhooks: type: string enum: - answered - answer: &723 + answer: &724 type: object properties: author_association: @@ -128865,11 +128903,11 @@ webhooks: - created_at - updated_at - body - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -128996,11 +129034,11 @@ webhooks: - from required: - category - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129083,11 +129121,11 @@ webhooks: type: string enum: - closed - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129169,7 +129207,7 @@ webhooks: type: string enum: - created - comment: &722 + comment: &723 type: object properties: author_association: @@ -129329,11 +129367,11 @@ webhooks: - updated_at - body - reactions - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129416,12 +129454,12 @@ webhooks: type: string enum: - deleted - comment: *722 - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + comment: *723 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129516,12 +129554,12 @@ webhooks: - from required: - body - comment: *722 - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + comment: *723 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129605,11 +129643,11 @@ webhooks: type: string enum: - created - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129691,11 +129729,11 @@ webhooks: type: string enum: - deleted - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129795,11 +129833,11 @@ webhooks: type: string required: - from - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129881,10 +129919,10 @@ webhooks: type: string enum: - labeled - discussion: *721 - enterprise: *705 - installation: *706 - label: &724 + discussion: *722 + enterprise: *706 + installation: *707 + label: &725 title: Label type: object properties: @@ -129917,8 +129955,8 @@ webhooks: - color - default - description - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130001,11 +130039,11 @@ webhooks: type: string enum: - locked - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130087,11 +130125,11 @@ webhooks: type: string enum: - pinned - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130173,11 +130211,11 @@ webhooks: type: string enum: - reopened - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130262,16 +130300,16 @@ webhooks: changes: type: object properties: - new_discussion: *721 - new_repository: *708 + new_discussion: *722 + new_repository: *709 required: - new_discussion - new_repository - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130354,10 +130392,10 @@ webhooks: type: string enum: - unanswered - discussion: *721 - old_answer: *723 - organization: *707 - repository: *708 + discussion: *722 + old_answer: *724 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130439,12 +130477,12 @@ webhooks: type: string enum: - unlabeled - discussion: *721 - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130527,11 +130565,11 @@ webhooks: type: string enum: - unlocked - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130613,11 +130651,11 @@ webhooks: type: string enum: - unpinned - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130690,7 +130728,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *705 + enterprise: *706 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -131368,9 +131406,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - forkee @@ -131516,9 +131554,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pages: description: The pages that were updated. type: array @@ -131556,7 +131594,7 @@ webhooks: - action - sha - html_url - repository: *708 + repository: *709 sender: *4 required: - pages @@ -131632,10 +131670,10 @@ webhooks: type: string enum: - created - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: &726 + organization: *708 + repositories: &727 description: An array of repository objects that the installation can access. type: array @@ -131661,8 +131699,8 @@ webhooks: - name - full_name - private - repository: *708 - requester: *725 + repository: *709 + requester: *726 sender: *4 required: - action @@ -131737,11 +131775,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -131818,11 +131856,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -131899,10 +131937,10 @@ webhooks: type: string enum: - added - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories_added: &727 + organization: *708 + repositories_added: &728 description: An array of repository objects, which were added to the installation. type: array @@ -131948,15 +131986,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *708 - repository_selection: &728 + repository: *709 + repository_selection: &729 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *725 + requester: *726 sender: *4 required: - action @@ -132035,10 +132073,10 @@ webhooks: type: string enum: - removed - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories_added: *727 + organization: *708 + repositories_added: *728 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -132065,9 +132103,9 @@ webhooks: - name - full_name - private - repository: *708 - repository_selection: *728 - requester: *725 + repository: *709 + repository_selection: *729 + requester: *726 sender: *4 required: - action @@ -132146,11 +132184,11 @@ webhooks: type: string enum: - suspend - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -132332,10 +132370,10 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 target_type: type: string @@ -132414,11 +132452,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -132584,7 +132622,7 @@ webhooks: pin: anyOf: - type: 'null' - - *543 + - *544 user: title: User type: @@ -132670,8 +132708,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133483,8 +133521,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133501,7 +133539,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -133845,8 +133883,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -133926,7 +133964,7 @@ webhooks: type: string enum: - deleted - comment: &729 + comment: &730 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -134083,7 +134121,7 @@ webhooks: pin: anyOf: - type: 'null' - - *543 + - *544 required: - url - html_url @@ -134097,8 +134135,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -134906,8 +134944,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134924,7 +134962,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -135270,8 +135308,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -135351,7 +135389,7 @@ webhooks: type: string enum: - edited - changes: &753 + changes: &754 description: The changes to the comment. type: object properties: @@ -135363,9 +135401,9 @@ webhooks: type: string required: - from - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136176,8 +136214,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136194,7 +136232,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -136538,8 +136576,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -136620,9 +136658,9 @@ webhooks: type: string enum: - pinned - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -137435,8 +137473,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137453,7 +137491,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -137799,8 +137837,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -137880,9 +137918,9 @@ webhooks: type: string enum: - unpinned - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -138695,8 +138733,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138713,7 +138751,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -139059,8 +139097,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139149,9 +139187,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139240,9 +139278,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139330,9 +139368,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139421,9 +139459,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139503,10 +139541,10 @@ webhooks: type: string enum: - assigned - assignee: *725 - enterprise: *705 - installation: *706 - issue: &732 + assignee: *726 + enterprise: *706 + installation: *707 + issue: &733 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -140317,11 +140355,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140338,7 +140376,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -140441,8 +140479,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -140522,8 +140560,8 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -141339,11 +141377,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141360,7 +141398,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -141606,8 +141644,8 @@ webhooks: required: - state - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -141686,8 +141724,8 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142494,11 +142532,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142515,7 +142553,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -142617,8 +142655,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -142697,8 +142735,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143528,11 +143566,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143549,7 +143587,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -143630,7 +143668,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &730 + milestone: &731 title: Milestone description: A collection of related issues and pull requests. type: object @@ -143773,8 +143811,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -143873,8 +143911,8 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144685,11 +144723,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144703,7 +144741,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -144809,9 +144847,9 @@ webhooks: - active_lock_reason - body - reactions - label: *724 - organization: *707 - repository: *708 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -144891,8 +144929,8 @@ webhooks: type: string enum: - labeled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145702,11 +145740,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145720,7 +145758,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -145826,9 +145864,9 @@ webhooks: - active_lock_reason - body - reactions - label: *724 - organization: *707 - repository: *708 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -145908,8 +145946,8 @@ webhooks: type: string enum: - locked - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146744,11 +146782,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146762,7 +146800,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -146845,8 +146883,8 @@ webhooks: format: uri user_view_type: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -146925,8 +146963,8 @@ webhooks: type: string enum: - milestoned - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147755,11 +147793,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147776,7 +147814,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -147856,9 +147894,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *730 - organization: *707 - repository: *708 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -148745,11 +148783,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148849,7 +148887,7 @@ webhooks: required: - login - id - type: *229 + type: *230 required: - id - number @@ -149341,8 +149379,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150149,11 +150187,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150170,7 +150208,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -150276,8 +150314,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -150357,9 +150395,9 @@ webhooks: type: string enum: - pinned - enterprise: *705 - installation: *706 - issue: &731 + enterprise: *706 + installation: *707 + issue: &732 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -151164,11 +151202,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151185,7 +151223,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -151287,8 +151325,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -151367,8 +151405,8 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152201,11 +152239,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152302,9 +152340,9 @@ webhooks: format: uri user_view_type: type: string - type: *229 - organization: *707 - repository: *708 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -153192,11 +153230,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153213,7 +153251,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -153806,11 +153844,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *705 - installation: *706 - issue: *731 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *732 + organization: *708 + repository: *709 sender: *4 required: - action @@ -153890,12 +153928,12 @@ webhooks: type: string enum: - typed - enterprise: *705 - installation: *706 - issue: *732 - type: *229 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -153976,7 +154014,7 @@ webhooks: type: string enum: - unassigned - assignee: &756 + assignee: &757 title: User type: - object @@ -154048,11 +154086,11 @@ webhooks: required: - login - id - enterprise: *705 - installation: *706 - issue: *732 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154131,12 +154169,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *705 - installation: *706 - issue: *732 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154216,8 +154254,8 @@ webhooks: type: string enum: - unlocked - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155050,11 +155088,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155071,7 +155109,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -155151,8 +155189,8 @@ webhooks: format: uri user_view_type: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155232,11 +155270,11 @@ webhooks: type: string enum: - unpinned - enterprise: *705 - installation: *706 - issue: *731 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *732 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155315,12 +155353,12 @@ webhooks: type: string enum: - untyped - enterprise: *705 - installation: *706 - issue: *732 - type: *229 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155400,11 +155438,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155482,11 +155520,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155596,11 +155634,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155682,9 +155720,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: &733 + enterprise: *706 + installation: *707 + marketplace_purchase: &734 title: Marketplace Purchase type: object required: @@ -155772,8 +155810,8 @@ webhooks: type: integer unit_count: type: integer - organization: *707 - previous_marketplace_purchase: &734 + organization: *708 + previous_marketplace_purchase: &735 title: Marketplace Purchase type: object properties: @@ -155857,7 +155895,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -155937,10 +155975,10 @@ webhooks: - changed effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -156028,7 +156066,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -156110,10 +156148,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -156199,7 +156237,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -156280,8 +156318,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 marketplace_purchase: title: Marketplace Purchase type: object @@ -156367,9 +156405,9 @@ webhooks: type: integer unit_count: type: integer - organization: *707 - previous_marketplace_purchase: *734 - repository: *708 + organization: *708 + previous_marketplace_purchase: *735 + repository: *709 sender: *4 required: - action @@ -156449,12 +156487,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 - previous_marketplace_purchase: *734 - repository: *708 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 + previous_marketplace_purchase: *735 + repository: *709 sender: *4 required: - action @@ -156556,11 +156594,11 @@ webhooks: type: string required: - to - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156662,11 +156700,11 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156745,11 +156783,11 @@ webhooks: type: string enum: - removed - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156827,11 +156865,11 @@ webhooks: type: string enum: - added - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 scope: description: The scope of the membership. Currently, can only be `team`. @@ -156909,7 +156947,7 @@ webhooks: required: - login - id - team: &735 + team: &736 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -157139,11 +157177,11 @@ webhooks: type: string enum: - removed - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 scope: description: The scope of the membership. Currently, can only be `team`. @@ -157222,7 +157260,7 @@ webhooks: required: - login - id - team: *735 + team: *736 required: - action - scope @@ -157304,8 +157342,8 @@ webhooks: type: string enum: - checks_requested - installation: *706 - merge_group: &736 + installation: *707 + merge_group: &737 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -157324,15 +157362,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *405 + head_commit: *406 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157418,10 +157456,10 @@ webhooks: - merged - invalidated - dequeued - installation: *706 - merge_group: *736 - organization: *707 - repository: *708 + installation: *707 + merge_group: *737 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157494,7 +157532,7 @@ webhooks: type: string enum: - deleted - enterprise: *705 + enterprise: *706 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -157603,12 +157641,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *706 - organization: *707 + installation: *707 + organization: *708 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -157688,11 +157726,11 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157771,9 +157809,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - milestone: &737 + enterprise: *706 + installation: *707 + milestone: &738 title: Milestone description: A collection of related issues and pull requests. type: object @@ -157915,8 +157953,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157995,11 +158033,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158109,11 +158147,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158193,11 +158231,11 @@ webhooks: type: string enum: - opened - enterprise: *705 - installation: *706 - milestone: *737 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *738 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158276,11 +158314,11 @@ webhooks: type: string enum: - blocked - blocked_user: *725 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + blocked_user: *726 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158359,11 +158397,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *725 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + blocked_user: *726 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158442,9 +158480,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - membership: &738 + enterprise: *706 + installation: *707 + membership: &739 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -158554,8 +158592,8 @@ webhooks: - role - organization_url - user - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158633,11 +158671,11 @@ webhooks: type: string enum: - member_added - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158716,8 +158754,8 @@ webhooks: type: string enum: - member_invited - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -158839,10 +158877,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 - user: *725 + user: *726 required: - action - invitation @@ -158920,11 +158958,11 @@ webhooks: type: string enum: - member_removed - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159011,11 +159049,11 @@ webhooks: properties: from: type: string - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159092,9 +159130,9 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 package: description: Information about the package. type: object @@ -159617,7 +159655,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &739 + items: &740 title: Ruby Gems metadata type: object properties: @@ -159714,7 +159752,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -159790,9 +159828,9 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 package: description: Information about the package. type: object @@ -160154,7 +160192,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *739 + items: *740 source_url: type: string format: uri @@ -160225,7 +160263,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -160405,12 +160443,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *705 + enterprise: *706 id: type: integer - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - id @@ -160487,7 +160525,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &740 + personal_access_token_request: &741 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -160637,10 +160675,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *705 - organization: *707 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -160717,11 +160755,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *740 - enterprise: *705 - organization: *707 + personal_access_token_request: *741 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -160797,11 +160835,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *740 - enterprise: *705 - organization: *707 + personal_access_token_request: *741 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -160876,11 +160914,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *740 - organization: *707 - enterprise: *705 + personal_access_token_request: *741 + organization: *708 + enterprise: *706 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -160985,7 +161023,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *741 + last_response: *742 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -161017,8 +161055,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 zen: description: Random string of GitHub zen. @@ -161263,10 +161301,10 @@ webhooks: - from required: - note - enterprise: *705 - installation: *706 - organization: *707 - project_card: &742 + enterprise: *706 + installation: *707 + organization: *708 + project_card: &743 title: Project Card type: object properties: @@ -161389,7 +161427,7 @@ webhooks: - creator - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -161470,11 +161508,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project_card: *742 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_card: *743 + repository: *709 sender: *4 required: - action @@ -161554,9 +161592,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 project_card: title: Project Card type: object @@ -161686,7 +161724,7 @@ webhooks: repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -161780,11 +161818,11 @@ webhooks: - from required: - note - enterprise: *705 - installation: *706 - organization: *707 - project_card: *742 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_card: *743 + repository: *709 sender: *4 required: - action @@ -161878,9 +161916,9 @@ webhooks: - from required: - column_id - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 project_card: allOf: - title: Project Card @@ -162077,7 +162115,7 @@ webhooks: type: string required: - after_id - repository: *708 + repository: *709 sender: *4 required: - action @@ -162157,10 +162195,10 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - organization: *707 - project: &744 + enterprise: *706 + installation: *707 + organization: *708 + project: &745 title: Project type: object properties: @@ -162287,7 +162325,7 @@ webhooks: - creator - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -162367,10 +162405,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project_column: &743 + enterprise: *706 + installation: *707 + organization: *708 + project_column: &744 title: Project Column type: object properties: @@ -162410,7 +162448,7 @@ webhooks: - name - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -162489,14 +162527,14 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -162585,11 +162623,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 + repository: *709 sender: *4 required: - action @@ -162669,11 +162707,11 @@ webhooks: type: string enum: - moved - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 + repository: *709 sender: *4 required: - action @@ -162753,11 +162791,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -162837,14 +162875,14 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - project: *744 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -162945,11 +162983,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -163028,11 +163066,11 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -163113,9 +163151,9 @@ webhooks: type: string enum: - closed - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163196,9 +163234,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163279,9 +163317,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163402,9 +163440,9 @@ webhooks: type: string to: type: string - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163487,7 +163525,7 @@ webhooks: type: string enum: - archived - changes: &748 + changes: &749 type: object properties: archived_at: @@ -163503,9 +163541,9 @@ webhooks: - string - 'null' format: date-time - installation: *706 - organization: *707 - projects_v2_item: &745 + installation: *707 + organization: *708 + projects_v2_item: &746 title: Projects v2 Item description: An item belonging to a project type: object @@ -163523,7 +163561,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *268 + content_type: *269 creator: *4 created_at: type: string @@ -163645,9 +163683,9 @@ webhooks: - 'null' to: type: string - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -163729,9 +163767,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -163812,9 +163850,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -163919,7 +163957,7 @@ webhooks: oneOf: - type: string - type: integer - - &746 + - &747 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -163943,7 +163981,7 @@ webhooks: required: - id - name - - &747 + - &748 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -163983,8 +164021,8 @@ webhooks: oneOf: - type: string - type: integer - - *746 - *747 + - *748 type: - 'null' - string @@ -164007,9 +164045,9 @@ webhooks: - 'null' required: - body - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164106,9 +164144,9 @@ webhooks: type: - string - 'null' - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164191,10 +164229,10 @@ webhooks: type: string enum: - restored - changes: *748 - installation: *706 - organization: *707 - projects_v2_item: *745 + changes: *749 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164276,9 +164314,9 @@ webhooks: type: string enum: - reopened - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -164359,9 +164397,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -164442,9 +164480,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -164590,9 +164628,9 @@ webhooks: - string - 'null' format: date - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -164663,10 +164701,10 @@ webhooks: title: public event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - repository @@ -164743,13 +164781,13 @@ webhooks: type: string enum: - assigned - assignee: *725 - enterprise: *705 - installation: *706 - number: &750 + assignee: *726 + enterprise: *706 + installation: *707 + number: &751 description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -167101,7 +167139,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -167183,11 +167221,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -169532,7 +169570,7 @@ webhooks: - draft reason: type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -169614,11 +169652,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -171963,7 +172001,7 @@ webhooks: - draft reason: type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -172045,13 +172083,13 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: &751 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: &752 allOf: - - *564 + - *565 - type: object properties: allow_auto_merge: @@ -172113,7 +172151,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *708 + repository: *709 sender: *4 required: - action @@ -172194,12 +172232,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -172279,11 +172317,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *705 - milestone: *265 - number: *750 - organization: *707 - pull_request: &752 + enterprise: *706 + milestone: *266 + number: *751 + organization: *708 + pull_request: &753 title: Pull Request type: object properties: @@ -174627,7 +174665,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -174706,11 +174744,11 @@ webhooks: type: string enum: - dequeued - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -177073,7 +177111,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *708 + repository: *709 sender: *4 required: - action @@ -177197,12 +177235,12 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -177282,11 +177320,11 @@ webhooks: type: string enum: - enqueued - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -179634,7 +179672,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -179714,11 +179752,11 @@ webhooks: type: string enum: - labeled - enterprise: *705 - installation: *706 - label: *724 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + label: *725 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -182069,7 +182107,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -182150,10 +182188,10 @@ webhooks: type: string enum: - locked - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -184502,7 +184540,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -184582,12 +184620,12 @@ webhooks: type: string enum: - milestoned - enterprise: *705 - milestone: *265 - number: *750 - organization: *707 - pull_request: *752 - repository: *708 + enterprise: *706 + milestone: *266 + number: *751 + organization: *708 + pull_request: *753 + repository: *709 sender: *4 required: - action @@ -184666,12 +184704,12 @@ webhooks: type: string enum: - opened - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -184752,12 +184790,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -184837,12 +184875,12 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -185217,9 +185255,9 @@ webhooks: - start_side - side - reactions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -187452,7 +187490,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -187532,7 +187570,7 @@ webhooks: type: string enum: - deleted - comment: &754 + comment: &755 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -187825,9 +187863,9 @@ webhooks: - start_side - side - reactions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -190048,7 +190086,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -190128,11 +190166,11 @@ webhooks: type: string enum: - edited - changes: *753 - comment: *754 - enterprise: *705 - installation: *706 - organization: *707 + changes: *754 + comment: *755 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -192356,7 +192394,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -192437,9 +192475,9 @@ webhooks: type: string enum: - dismissed - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -194675,7 +194713,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 review: description: The review that was affected. type: object @@ -194926,9 +194964,9 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -197037,8 +197075,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 - review: &755 + repository: *709 + review: &756 description: The review that was affected. type: object properties: @@ -197276,12 +197314,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -199631,7 +199669,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_reviewer: title: User type: @@ -199717,12 +199755,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -202079,7 +202117,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_team: title: Team description: Groups of organization members that gives permissions @@ -202274,12 +202312,12 @@ webhooks: type: string enum: - review_requested - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -204631,7 +204669,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_reviewer: title: User type: @@ -204718,12 +204756,12 @@ webhooks: type: string enum: - review_requested - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -207066,7 +207104,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_team: title: Team description: Groups of organization members that gives permissions @@ -207250,9 +207288,9 @@ webhooks: type: string enum: - submitted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -209491,8 +209529,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 - review: *755 + repository: *709 + review: *756 sender: *4 required: - action @@ -209572,9 +209610,9 @@ webhooks: type: string enum: - resolved - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -211722,7 +211760,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 sender: *4 thread: type: object @@ -212119,9 +212157,9 @@ webhooks: type: string enum: - unresolved - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -214252,7 +214290,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 sender: *4 thread: type: object @@ -214651,10 +214689,10 @@ webhooks: type: string before: type: string - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -216992,7 +217030,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -217074,11 +217112,11 @@ webhooks: type: string enum: - unassigned - assignee: *756 - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + assignee: *757 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -219431,7 +219469,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -219510,11 +219548,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *705 - installation: *706 - label: *724 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + label: *725 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -221856,7 +221894,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -221937,10 +221975,10 @@ webhooks: type: string enum: - unlocked - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -224272,7 +224310,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -224475,7 +224513,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *705 + enterprise: *706 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -224570,8 +224608,8 @@ webhooks: - url - author - committer - installation: *706 - organization: *707 + installation: *707 + organization: *708 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -225170,9 +225208,9 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 registry_package: type: object properties: @@ -225649,7 +225687,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *739 + items: *740 summary: type: string tag_name: @@ -225705,7 +225743,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -225783,9 +225821,9 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 registry_package: type: object properties: @@ -226097,7 +226135,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *739 + items: *740 summary: type: string tag_name: @@ -226147,7 +226185,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -226224,10 +226262,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - release: &757 + enterprise: *706 + installation: *707 + organization: *708 + release: &758 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -226558,7 +226596,7 @@ webhooks: - updated_at - zipball_url - body - repository: *708 + repository: *709 sender: *4 required: - action @@ -226635,11 +226673,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -226756,11 +226794,11 @@ webhooks: type: boolean required: - to - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -226838,9 +226876,9 @@ webhooks: type: string enum: - prereleased - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -227176,7 +227214,7 @@ webhooks: - string - 'null' format: uri - repository: *708 + repository: *709 sender: *4 required: - action @@ -227252,10 +227290,10 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - release: &758 + enterprise: *706 + installation: *707 + organization: *708 + release: &759 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -227588,7 +227626,7 @@ webhooks: - string - 'null' format: uri - repository: *708 + repository: *709 sender: *4 required: - action @@ -227664,11 +227702,11 @@ webhooks: type: string enum: - released - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -227744,11 +227782,11 @@ webhooks: type: string enum: - unpublished - enterprise: *705 - installation: *706 - organization: *707 - release: *758 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *759 + repository: *709 sender: *4 required: - action @@ -227824,11 +227862,11 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_advisory: *628 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_advisory: *629 sender: *4 required: - action @@ -227904,11 +227942,11 @@ webhooks: type: string enum: - reported - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_advisory: *628 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_advisory: *629 sender: *4 required: - action @@ -227984,10 +228022,10 @@ webhooks: type: string enum: - archived - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228064,10 +228102,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228145,10 +228183,10 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228233,10 +228271,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228351,10 +228389,10 @@ webhooks: - 'null' items: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228426,10 +228464,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 status: type: string @@ -228510,10 +228548,10 @@ webhooks: type: string enum: - privatized - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228590,10 +228628,10 @@ webhooks: type: string enum: - publicized - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228687,10 +228725,10 @@ webhooks: - name required: - repository - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228770,11 +228808,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 sender: *4 required: - action @@ -228852,11 +228890,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 sender: *4 required: - action @@ -228934,11 +228972,11 @@ webhooks: type: string enum: - edited - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 changes: type: object properties: @@ -228957,16 +228995,16 @@ webhooks: properties: added: type: array - items: *281 + items: *282 deleted: type: array - items: *281 + items: *282 updated: type: array items: type: object properties: - condition: *281 + condition: *282 changes: type: object properties: @@ -228999,16 +229037,16 @@ webhooks: properties: added: type: array - items: *584 + items: *585 deleted: type: array - items: *584 + items: *585 updated: type: array items: type: object properties: - rule: *584 + rule: *585 changes: type: object properties: @@ -229245,10 +229283,10 @@ webhooks: - from required: - owner - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229326,10 +229364,10 @@ webhooks: type: string enum: - unarchived - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229407,7 +229445,7 @@ webhooks: type: string enum: - create - alert: &759 + alert: &760 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -229532,10 +229570,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229745,10 +229783,10 @@ webhooks: type: string enum: - dismissed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229826,11 +229864,11 @@ webhooks: type: string enum: - reopen - alert: *759 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *760 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230032,10 +230070,10 @@ webhooks: enum: - fixed - open - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230113,7 +230151,7 @@ webhooks: type: string enum: - assigned - alert: &760 + alert: &761 type: object properties: number: *170 @@ -230242,10 +230280,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230323,11 +230361,11 @@ webhooks: type: string enum: - created - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230408,11 +230446,11 @@ webhooks: type: string enum: - created - alert: *760 - installation: *706 - location: *761 - organization: *707 - repository: *708 + alert: *761 + installation: *707 + location: *762 + organization: *708 + repository: *709 sender: *4 required: - location @@ -230650,11 +230688,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230732,11 +230770,11 @@ webhooks: type: string enum: - reopened - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230814,11 +230852,11 @@ webhooks: type: string enum: - resolved - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230896,12 +230934,12 @@ webhooks: type: string enum: - unassigned - alert: *760 + alert: *761 assignee: *4 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230979,11 +231017,11 @@ webhooks: type: string enum: - validated - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231113,10 +231151,10 @@ webhooks: - organization - enterprise - - repository: *708 - enterprise: *705 - installation: *706 - organization: *707 + repository: *709 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -231194,11 +231232,11 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - security_advisory: &762 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + security_advisory: &763 description: The details of the security advisory, including summary, description, and severity. type: object @@ -231371,11 +231409,11 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - security_advisory: *762 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + security_advisory: *763 sender: *4 required: - action @@ -231448,10 +231486,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -231624,11 +231662,11 @@ webhooks: from: type: object properties: - security_and_analysis: *280 - enterprise: *705 - installation: *706 - organization: *707 - repository: *327 + security_and_analysis: *281 + enterprise: *706 + installation: *707 + organization: *708 + repository: *328 sender: *4 required: - changes @@ -231706,12 +231744,12 @@ webhooks: type: string enum: - cancelled - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: &763 + sponsorship: &764 type: object properties: created_at: @@ -232016,12 +232054,12 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - sponsorship @@ -232109,12 +232147,12 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -232191,17 +232229,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &764 + effective_date: &765 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - sponsorship @@ -232275,7 +232313,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &765 + changes: &766 type: object properties: tier: @@ -232319,13 +232357,13 @@ webhooks: - from required: - tier - effective_date: *764 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + effective_date: *765 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -232402,13 +232440,13 @@ webhooks: type: string enum: - tier_changed - changes: *765 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + changes: *766 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -232482,10 +232520,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -232569,10 +232607,10 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -233006,15 +233044,15 @@ webhooks: type: - string - 'null' - enterprise: *705 + enterprise: *706 id: description: The unique identifier of the status. type: integer - installation: *706 + installation: *707 name: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 sha: description: The Commit SHA. @@ -233130,9 +233168,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -233222,9 +233260,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -233314,9 +233352,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -233406,9 +233444,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -233485,12 +233523,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - team: &766 + team: &767 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -233720,9 +233758,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -234192,7 +234230,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -234268,9 +234306,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -234740,7 +234778,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -234817,9 +234855,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -235289,7 +235327,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -235433,9 +235471,9 @@ webhooks: - from required: - permissions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -235905,7 +235943,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - changes @@ -235983,9 +236021,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -236455,7 +236493,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -236531,10 +236569,10 @@ webhooks: type: string enum: - started - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -236607,17 +236645,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *705 + enterprise: *706 inputs: type: - object - 'null' additionalProperties: true - installation: *706 - organization: *707 + installation: *707 + organization: *708 ref: type: string - repository: *708 + repository: *709 sender: *4 workflow: type: string @@ -236699,10 +236737,10 @@ webhooks: type: string enum: - completed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: allOf: @@ -236958,7 +236996,7 @@ webhooks: type: string required: - conclusion - deployment: *480 + deployment: *481 required: - action - repository @@ -237037,10 +237075,10 @@ webhooks: type: string enum: - in_progress - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: allOf: @@ -237322,7 +237360,7 @@ webhooks: required: - status - steps - deployment: *480 + deployment: *481 required: - action - repository @@ -237401,10 +237439,10 @@ webhooks: type: string enum: - queued - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: type: object @@ -237550,7 +237588,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *480 + deployment: *481 required: - action - repository @@ -237629,10 +237667,10 @@ webhooks: type: string enum: - waiting - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: type: object @@ -237779,7 +237817,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *480 + deployment: *481 required: - action - repository @@ -237859,12 +237897,12 @@ webhooks: type: string enum: - completed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object @@ -238883,12 +238921,12 @@ webhooks: type: string enum: - in_progress - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object @@ -239892,12 +239930,12 @@ webhooks: type: string enum: - requested - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 8c889c4cca..8b9355745f 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -2335,7 +2335,7 @@ "/agents/repos/{owner}/{repo}/tasks": { "get": { "summary": "List tasks for repository", - "description": "Returns a list of tasks for a specific repository", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a list of tasks for a specific repository\n", "tags": [ "agent-tasks" ], @@ -2428,9 +2428,10 @@ "name": "is_archived", "in": "query", "schema": { - "type": "boolean" + "type": "boolean", + "default": false }, - "description": "Filter by archived status. When `true`, returns only archived tasks. When `false`, returns only non-archived tasks." + "description": "Filter by archived status. When `true`, returns only archived tasks. When `false` or omitted, returns only non-archived tasks. Defaults to `false`." }, { "name": "since", @@ -2995,7 +2996,7 @@ }, "post": { "summary": "Create a task", - "description": "Creates a new task for a repository", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates a new task for a repository\n", "tags": [ "agent-tasks" ], @@ -3055,7 +3056,7 @@ }, "model": { "type": "string", - "description": "Model identifier" + "description": "The model to use for this task. The allowed models may change over time and depend on the user's GitHub Copilot plan and organization policies. Currently supported values: `claude-sonnet-4.6`, `claude-opus-4.6`, `gpt-5.2-codex`, `gpt-5.3-codex`, `gpt-5.4`, `claude-sonnet-4.5`, `claude-opus-4.5`" }, "custom_agent": { "type": "string", @@ -3068,21 +3069,6 @@ "base_ref": { "type": "string", "description": "Base ref for new branch/PR" - }, - "event_type": { - "type": "string", - "description": "Type of event" - }, - "event_url": { - "type": "string", - "description": "URL of the triggering event" - }, - "event_identifiers": { - "type": "array", - "items": { - "type": "string" - }, - "description": "Identifiers for tracking" } } }, @@ -3547,7 +3533,7 @@ "/agents/repos/{owner}/{repo}/tasks/{task_id}": { "get": { "summary": "Get a task by repo", - "description": "Returns a task by ID scoped to an owner/repo path", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a task by ID scoped to an owner/repo path\n", "tags": [ "agent-tasks" ], @@ -4306,7 +4292,7 @@ "/agents/tasks": { "get": { "summary": "List tasks", - "description": "Returns a list of tasks for the authenticated user", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a list of tasks for the authenticated user\n", "tags": [ "agent-tasks" ], @@ -4381,9 +4367,10 @@ "name": "is_archived", "in": "query", "schema": { - "type": "boolean" + "type": "boolean", + "default": false }, - "description": "Filter by archived status. When `true`, returns only archived tasks. When `false`, returns only non-archived tasks." + "description": "Filter by archived status. When `true`, returns only archived tasks. When `false` or omitted, returns only non-archived tasks. Defaults to `false`." }, { "name": "since", @@ -4886,7 +4873,7 @@ "/agents/tasks/{task_id}": { "get": { "summary": "Get a task by ID", - "description": "Returns a task by ID with its associated sessions", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nReturns a task by ID with its associated sessions\n", "tags": [ "agent-tasks" ], @@ -28224,6 +28211,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -28566,6 +28561,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -135576,6 +135580,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -135943,6 +135955,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -390255,6 +390276,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -390605,6 +390634,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -392118,6 +392156,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -393460,6 +393507,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -675952,7 +676008,7 @@ "/search/code": { "get": { "summary": "Search code", - "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", + "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\n> [!NOTE]\n> `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", "tags": [ "search" ], @@ -945164,6 +945220,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -948199,6 +948264,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -951234,6 +951308,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -954269,6 +954352,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -957304,6 +957396,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -960339,6 +960440,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -963374,6 +963484,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -966409,6 +966528,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index a5db10646a..f037f7f2dc 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -931,7 +931,7 @@ paths: - subscriptions_url - type - url - type: &313 + type: &314 type: string description: The type of credit the user is receiving. enum: @@ -1124,7 +1124,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &630 + - &631 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1217,7 +1217,11 @@ paths: "/agents/repos/{owner}/{repo}/tasks": get: summary: List tasks for repository - description: Returns a list of tasks for a specific repository + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a list of tasks for a specific repository tags: - agent-tasks operationId: agent-tasks/list-tasks-for-repo @@ -1286,8 +1290,10 @@ paths: in: query schema: type: boolean + default: false description: Filter by archived status. When `true`, returns only archived - tasks. When `false`, returns only non-archived tasks. + tasks. When `false` or omitted, returns only non-archived tasks. Defaults + to `false`. - name: since in: query schema: @@ -1724,7 +1730,11 @@ paths: description: URL to relevant API documentation post: summary: Create a task - description: Creates a new task for a repository + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Creates a new task for a repository tags: - agent-tasks operationId: agent-tasks/create-task @@ -1770,7 +1780,11 @@ paths: description: User's written prompt model: type: string - description: Model identifier + description: 'The model to use for this task. The allowed models + may change over time and depend on the user''s GitHub Copilot + plan and organization policies. Currently supported values: `claude-sonnet-4.6`, + `claude-opus-4.6`, `gpt-5.2-codex`, `gpt-5.3-codex`, `gpt-5.4`, + `claude-sonnet-4.5`, `claude-opus-4.5`' custom_agent: type: string description: Custom agent identifier @@ -1780,17 +1794,6 @@ paths: base_ref: type: string description: Base ref for new branch/PR - event_type: - type: string - description: Type of event - event_url: - type: string - description: URL of the triggering event - event_identifiers: - type: array - items: - type: string - description: Identifiers for tracking examples: default: value: @@ -2143,7 +2146,11 @@ paths: "/agents/repos/{owner}/{repo}/tasks/{task_id}": get: summary: Get a task by repo - description: Returns a task by ID scoped to an owner/repo path + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a task by ID scoped to an owner/repo path tags: - agent-tasks operationId: agent-tasks/get-task-by-repo-and-id @@ -2722,7 +2729,11 @@ paths: "/agents/tasks": get: summary: List tasks - description: Returns a list of tasks for the authenticated user + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a list of tasks for the authenticated user tags: - agent-tasks operationId: agent-tasks/list-tasks @@ -2779,8 +2790,10 @@ paths: in: query schema: type: boolean + default: false description: Filter by archived status. When `true`, returns only archived - tasks. When `false`, returns only non-archived tasks. + tasks. When `false` or omitted, returns only non-archived tasks. Defaults + to `false`. - name: since in: query schema: @@ -3165,7 +3178,11 @@ paths: "/agents/tasks/{task_id}": get: summary: Get a task by ID - description: Returns a task by ID with its associated sessions + description: | + > [!NOTE] + > This endpoint is in public preview and is subject to change. + + Returns a task by ID with its associated sessions tags: - agent-tasks operationId: agent-tasks/get-task-by-id @@ -4224,7 +4241,7 @@ paths: schema: type: integer default: 30 - - &203 + - &204 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -4233,7 +4250,7 @@ paths: required: false schema: type: string - - &204 + - &205 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4253,7 +4270,7 @@ paths: application/json: schema: type: array - items: &205 + items: &206 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4349,7 +4366,7 @@ paths: - installation_id - repository_id examples: - default: &206 + default: &207 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4484,7 +4501,7 @@ paths: description: Response content: application/json: - schema: &207 + schema: &208 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4619,7 +4636,7 @@ paths: - request - response examples: - default: &208 + default: &209 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -12203,6 +12220,15 @@ paths: parameters: - *38 - &189 + name: classification + in: query + description: |- + A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned. + + Can be: `malware`, `general` + schema: + type: string + - &190 name: state in: query description: |- @@ -12211,7 +12237,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &190 + - &191 name: severity in: query description: |- @@ -12220,7 +12246,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &191 + - &192 name: ecosystem in: query description: |- @@ -12229,14 +12255,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &192 + - &193 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &193 + - &194 name: epss_percentage in: query description: |- @@ -12248,7 +12274,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &470 + - &471 name: has in: query description: |- @@ -12262,7 +12288,7 @@ paths: type: string enum: - patch - - &194 + - &195 name: assignee in: query description: |- @@ -12271,7 +12297,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &195 + - &196 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -12281,7 +12307,7 @@ paths: enum: - development - runtime - - &196 + - &197 name: sort in: query description: |- @@ -12307,7 +12333,7 @@ paths: application/json: schema: type: array - items: &197 + items: &198 type: object description: A Dependabot alert. properties: @@ -12378,7 +12404,7 @@ paths: - transitive - inconclusive - - security_advisory: &471 + security_advisory: &472 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12461,6 +12487,13 @@ paths: - medium - high - critical + classification: + type: string + description: The classification of the advisory. + readOnly: true + enum: + - general + - malware cvss: type: object description: Details for the advisory pertaining to the @@ -12665,7 +12698,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &472 + auto_dismissed_at: &473 type: - string - 'null' @@ -12673,7 +12706,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &473 + dismissal_request: &474 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12736,7 +12769,7 @@ paths: - repository additionalProperties: false examples: - default: &198 + default: &199 value: - number: 2 state: dismissed @@ -14100,7 +14133,7 @@ paths: properties: action: type: string - discussion: &721 + discussion: &722 title: Discussion description: A Discussion in a repository. type: object @@ -14601,7 +14634,7 @@ paths: milestone: anyOf: - type: 'null' - - &265 + - &266 title: Milestone description: A collection of related issues and pull requests. @@ -14773,7 +14806,7 @@ paths: timeline_url: type: string format: uri - type: &229 + type: &230 title: Issue Type description: The type of issue. type: @@ -14884,7 +14917,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &642 + sub_issues_summary: &643 title: Sub-issues Summary type: object properties: @@ -14968,7 +15001,7 @@ paths: pin: anyOf: - type: 'null' - - &543 + - &544 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -14995,7 +15028,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &643 + issue_dependencies_summary: &644 title: Issue Dependencies Summary type: object properties: @@ -15014,7 +15047,7 @@ paths: - total_blocking issue_field_values: type: array - items: &528 + items: &529 title: Issue Field Value description: A value assigned to an issue field type: object @@ -15838,7 +15871,7 @@ paths: type: string release: allOf: - - &575 + - &576 title: Release description: A release. type: object @@ -15920,7 +15953,7 @@ paths: author: *4 assets: type: array - items: &576 + items: &577 title: Release Asset description: Data related to a release. type: object @@ -16552,7 +16585,7 @@ paths: url: type: string format: uri - user: &649 + user: &650 title: Public User description: Public User type: object @@ -18457,7 +18490,7 @@ paths: - closed - all default: open - - &232 + - &233 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -18508,7 +18541,7 @@ paths: type: array items: *81 examples: - default: &233 + default: &234 value: - id: 1 node_id: MDU6SXNzdWUx @@ -19920,14 +19953,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &324 + - &325 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &325 + - &326 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -19989,7 +20022,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &328 + '301': &329 description: Moved permanently content: application/json: @@ -20011,7 +20044,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &551 + - &552 name: all description: If `true`, show notifications marked as read. in: query @@ -20019,7 +20052,7 @@ paths: schema: type: boolean default: false - - &552 + - &553 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20029,7 +20062,7 @@ paths: type: boolean default: false - *86 - - &553 + - &554 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -20411,7 +20444,7 @@ paths: type: boolean examples: - false - security_and_analysis: &280 + security_and_analysis: &281 type: - object - 'null' @@ -20621,7 +20654,7 @@ paths: - url - subscription_url examples: - default: &554 + default: &555 value: - id: '1' repository: @@ -22191,7 +22224,7 @@ paths: required: false schema: type: string - - &698 + - &699 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -22337,7 +22370,7 @@ paths: parameters: - *73 - *115 - - &699 + - &700 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -22449,7 +22482,7 @@ paths: - *115 - *117 - *116 - - &700 + - &701 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22457,7 +22490,7 @@ paths: schema: type: string - *118 - - &701 + - &702 name: sku description: The SKU to query for usage. in: query @@ -23464,7 +23497,7 @@ paths: type: integer repository_cache_usages: type: array - items: &335 + items: &336 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -24826,7 +24859,7 @@ paths: - all - local_only - selected - selected_actions_url: &341 + selected_actions_url: &342 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -24909,7 +24942,7 @@ paths: description: Response content: application/json: - schema: &345 + schema: &346 type: object properties: days: @@ -24951,7 +24984,7 @@ paths: required: true content: application/json: - schema: &346 + schema: &347 type: object properties: days: @@ -25008,7 +25041,7 @@ paths: required: - approval_policy examples: - default: &347 + default: &348 value: approval_policy: first_time_contributors '404': *6 @@ -25067,7 +25100,7 @@ paths: description: Response content: application/json: - schema: &348 + schema: &349 type: object required: - run_workflows_from_fork_pull_requests @@ -25121,7 +25154,7 @@ paths: required: true content: application/json: - schema: &349 + schema: &350 type: object required: - run_workflows_from_fork_pull_requests @@ -25756,7 +25789,7 @@ paths: description: Response content: application/json: - schema: &350 + schema: &351 type: object properties: default_workflow_permissions: &145 @@ -25807,7 +25840,7 @@ paths: required: false content: application/json: - schema: &351 + schema: &352 type: object properties: default_workflow_permissions: *145 @@ -26947,7 +26980,7 @@ paths: application/json: schema: type: array - items: &352 + items: &353 title: Runner Application description: Runner Application type: object @@ -26972,7 +27005,7 @@ paths: - download_url - filename examples: - default: &353 + default: &354 value: - os: osx architecture: x64 @@ -27058,7 +27091,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &354 + '201': &355 description: Response content: application/json: @@ -27173,7 +27206,7 @@ paths: - token - expires_at examples: - default: &355 + default: &356 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -27212,7 +27245,7 @@ paths: application/json: schema: *156 examples: - default: &356 + default: &357 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -27246,7 +27279,7 @@ paths: application/json: schema: *154 examples: - default: &357 + default: &358 value: id: 23 name: MBP @@ -27472,7 +27505,7 @@ paths: - *73 - *153 responses: - '200': &358 + '200': &359 description: Response content: application/json: @@ -27529,7 +27562,7 @@ paths: parameters: - *73 - *153 - - &359 + - &360 name: name description: The name of a self-hosted runner's custom label. in: path @@ -27661,7 +27694,7 @@ paths: description: Response content: application/json: - schema: &371 + schema: &372 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -27696,7 +27729,7 @@ paths: - key_id - key examples: - default: &372 + default: &373 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -28109,7 +28142,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *73 - - &340 + - &341 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -29330,12 +29363,12 @@ paths: required: - subject_digests examples: - default: &680 + default: &681 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &681 + withPredicateType: &682 value: subject_digests: - sha256:abc123 @@ -29394,7 +29427,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &682 + default: &683 value: attestations_subject_digests: - sha256:abc: @@ -29760,7 +29793,7 @@ paths: initiator: type: string examples: - default: &385 + default: &386 value: attestations: - bundle: @@ -30127,7 +30160,7 @@ paths: parent: anyOf: - type: 'null' - - &244 + - &245 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -30730,7 +30763,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *73 - - &409 + - &410 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -30740,7 +30773,7 @@ paths: schema: &177 type: string description: The name of the tool used to generate the code scanning analysis. - - &410 + - &411 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -30764,7 +30797,7 @@ paths: be returned. in: query required: false - schema: &412 + schema: &413 type: string description: State of a code scanning alert. enum: @@ -30787,7 +30820,7 @@ paths: be returned. in: query required: false - schema: &413 + schema: &414 type: string description: Severity of a code scanning alert. enum: @@ -30821,7 +30854,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: &414 + instances_url: &415 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -30843,7 +30876,7 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: &415 + dismissed_reason: &416 type: - string - 'null' @@ -30854,14 +30887,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &416 + dismissed_comment: &417 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &417 + rule: &418 type: object properties: id: @@ -30922,7 +30955,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &418 + tool: &419 type: object properties: name: *177 @@ -30933,26 +30966,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *178 - most_recent_instance: &419 + most_recent_instance: &420 type: object properties: - ref: &411 + ref: &412 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &429 + analysis_key: &430 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &430 + environment: &431 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &431 + category: &432 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -30972,7 +31005,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &432 + location: &433 type: object description: Describe a region within a file for the alert. properties: @@ -30993,7 +31026,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &433 + items: &434 type: - string - 'null' @@ -32283,7 +32316,7 @@ paths: type: integer codespaces: type: array - items: &234 + items: &235 type: object title: Codespace description: A codespace. @@ -32318,7 +32351,7 @@ paths: machine: anyOf: - type: 'null' - - &445 + - &446 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -32605,7 +32638,7 @@ paths: - pulls_url - recent_folders examples: - default: &235 + default: &236 value: total_count: 3 codespaces: @@ -33270,7 +33303,7 @@ paths: - updated_at - visibility examples: - default: &446 + default: &447 value: total_count: 2 secrets: @@ -33308,7 +33341,7 @@ paths: description: Response content: application/json: - schema: &447 + schema: &448 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -33343,7 +33376,7 @@ paths: - key_id - key examples: - default: &448 + default: &449 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -33375,7 +33408,7 @@ paths: application/json: schema: *186 examples: - default: &450 + default: &451 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -33842,7 +33875,7 @@ paths: currently being billed. seats: type: array - items: &237 + items: &238 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -34813,7 +34846,7 @@ paths: application/json: schema: type: array - items: &317 + items: &318 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -35128,7 +35161,7 @@ paths: - date additionalProperties: true examples: - default: &318 + default: &319 value: - date: '2024-06-24' total_active_users: 24 @@ -35230,7 +35263,7 @@ paths: '500': *53 '403': *27 '404': *6 - '422': &319 + '422': &320 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -35415,6 +35448,7 @@ paths: - *191 - *192 - *193 + - *194 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -35444,7 +35478,7 @@ paths: enum: - patch - deployment - - *194 + - *195 - name: runtime_risk in: query description: |- @@ -35453,8 +35487,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *195 - *196 + - *197 - *59 - *45 - *46 @@ -35466,9 +35500,9 @@ paths: application/json: schema: type: array - items: *197 + items: *198 examples: - default: *198 + default: *199 '304': *35 '400': *14 '403': *27 @@ -35512,7 +35546,7 @@ paths: type: integer secrets: type: array - items: &199 + items: &200 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -35591,7 +35625,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &477 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -35610,7 +35644,7 @@ paths: - key_id - key examples: - default: &477 + default: &478 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -35640,7 +35674,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *200 examples: default: value: @@ -35947,7 +35981,7 @@ paths: application/json: schema: type: array - items: &246 + items: &247 title: Package description: A software package type: object @@ -36018,7 +36052,7 @@ paths: - created_at - updated_at examples: - default: &247 + default: &248 value: - id: 197 name: hello_docker @@ -36188,7 +36222,7 @@ paths: application/json: schema: type: array - items: &223 + items: &224 title: Organization Invitation description: Organization Invitation type: object @@ -36242,7 +36276,7 @@ paths: - invitation_teams_url - node_id examples: - default: &224 + default: &225 value: - id: 1 login: monalisa @@ -36309,7 +36343,7 @@ paths: application/json: schema: type: array - items: &200 + items: &201 title: Org Hook description: Org Hook type: object @@ -36494,9 +36528,9 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: - default: &201 + default: &202 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -36544,7 +36578,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *73 - - &202 + - &203 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -36557,9 +36591,9 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: - default: *201 + default: *202 '404': *6 x-github: githubCloudOnly: false @@ -36587,7 +36621,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *73 - - *202 + - *203 requestBody: required: false content: @@ -36633,7 +36667,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: default: value: @@ -36675,7 +36709,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *73 - - *202 + - *203 responses: '204': description: Response @@ -36703,7 +36737,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *73 - - *202 + - *203 responses: '200': description: Response @@ -36734,7 +36768,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *73 - - *202 + - *203 requestBody: required: false content: @@ -36785,10 +36819,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *73 - - *202 - - *17 - *203 + - *17 - *204 + - *205 responses: '200': description: Response @@ -36796,9 +36830,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *206 + default: *207 '400': *14 '422': *15 x-github: @@ -36824,16 +36858,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *73 - - *202 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *207 + schema: *208 examples: - default: *208 + default: *209 '400': *14 '422': *15 x-github: @@ -36859,7 +36893,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *73 - - *202 + - *203 - *16 responses: '202': *37 @@ -36889,7 +36923,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *73 - - *202 + - *203 responses: '204': description: Response @@ -36912,7 +36946,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *73 - - &213 + - &214 name: actor_type in: path description: The type of the actor @@ -36925,14 +36959,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &214 + - &215 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &209 + - &210 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -36940,7 +36974,7 @@ paths: required: true schema: type: string - - &210 + - &211 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -37035,12 +37069,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *73 - - *209 - *210 + - *211 - *19 - *17 - *59 - - &219 + - &220 name: sort description: The property to sort the results by. in: query @@ -37119,14 +37153,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *73 - - *209 - *210 + - *211 responses: '200': description: Response content: application/json: - schema: &211 + schema: &212 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -37142,7 +37176,7 @@ paths: type: integer format: int64 examples: - default: &212 + default: &213 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -37163,23 +37197,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *73 - - &215 + - &216 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *209 - *210 + - *211 responses: '200': description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: *212 + default: *213 x-github: enabledForGitHubApps: true category: orgs @@ -37198,18 +37232,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *73 - - *209 - *210 - - *213 + - *211 - *214 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: *212 + default: *213 x-github: enabledForGitHubApps: true category: orgs @@ -37227,9 +37261,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *73 - - *209 - *210 - - &216 + - *211 + - &217 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -37242,7 +37276,7 @@ paths: description: Response content: application/json: - schema: &217 + schema: &218 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -37258,7 +37292,7 @@ paths: type: integer format: int64 examples: - default: &218 + default: &219 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -37295,18 +37329,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *73 - - *215 - - *209 - - *210 - *216 + - *210 + - *211 + - *217 responses: '200': description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 x-github: enabledForGitHubApps: true category: orgs @@ -37324,19 +37358,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *73 - - *213 - *214 - - *209 + - *215 - *210 - - *216 + - *211 + - *217 responses: '200': description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 x-github: enabledForGitHubApps: true category: orgs @@ -37354,13 +37388,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *73 - - *215 - - *209 + - *216 - *210 + - *211 - *19 - *17 - *59 - - *219 + - *220 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -37444,7 +37478,7 @@ paths: application/json: schema: *20 examples: - default: &515 + default: &516 value: id: 1 account: @@ -37610,12 +37644,12 @@ paths: application/json: schema: anyOf: - - &221 + - &222 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &220 + limit: &221 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -37643,7 +37677,7 @@ paths: properties: {} additionalProperties: false examples: - default: &222 + default: &223 value: limit: collaborators_only origin: organization @@ -37672,13 +37706,13 @@ paths: required: true content: application/json: - schema: &516 + schema: &517 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *220 + limit: *221 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -37703,9 +37737,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *222 + default: *223 '422': *15 x-github: githubCloudOnly: false @@ -37781,9 +37815,9 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 '404': *6 @@ -37860,7 +37894,7 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: default: value: @@ -37915,7 +37949,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *73 - - &225 + - &226 name: invitation_id description: The unique identifier of the invitation. in: path @@ -37946,7 +37980,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *73 - - *225 + - *226 - *17 - *19 responses: @@ -37958,7 +37992,7 @@ paths: type: array items: *187 examples: - default: &245 + default: &246 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -38001,7 +38035,7 @@ paths: application/json: schema: type: array - items: &226 + items: &227 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -38244,9 +38278,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: - default: &227 + default: &228 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -38302,7 +38336,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *73 - - &228 + - &229 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -38403,9 +38437,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: - default: *227 + default: *228 '404': *6 '422': *7 x-github: @@ -38430,7 +38464,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *73 - - *228 + - *229 responses: '204': *183 '404': *6 @@ -38460,7 +38494,7 @@ paths: application/json: schema: type: array - items: *229 + items: *230 examples: default: value: @@ -38548,9 +38582,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: &230 + default: &231 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -38583,7 +38617,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *73 - - &231 + - &232 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -38639,9 +38673,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 '404': *6 '422': *7 x-github: @@ -38666,7 +38700,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *73 - - *231 + - *232 responses: '204': description: Response @@ -38729,7 +38763,7 @@ paths: - closed - all default: open - - *232 + - *233 - name: type description: Can be the name of an issue type. in: query @@ -38760,7 +38794,7 @@ paths: type: array items: *81 examples: - default: *233 + default: *234 headers: Link: *65 '404': *6 @@ -38925,9 +38959,9 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '304': *35 '500': *53 '401': *23 @@ -38954,7 +38988,7 @@ paths: parameters: - *73 - *69 - - &236 + - &237 name: codespace_name in: path required: true @@ -38989,15 +39023,15 @@ paths: parameters: - *73 - *69 - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: &444 + default: &445 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -39177,7 +39211,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *237 + schema: *238 examples: default: value: @@ -39253,7 +39287,7 @@ paths: description: Response content: application/json: - schema: &238 + schema: &239 title: Org Membership description: Org Membership type: object @@ -39322,7 +39356,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &239 + response-if-user-has-an-active-admin-membership-with-organization: &240 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -39423,9 +39457,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - response-if-user-already-had-membership-with-organization: *239 + response-if-user-already-had-membership-with-organization: *240 '422': *15 '403': *27 x-github: @@ -39503,7 +39537,7 @@ paths: application/json: schema: type: array - items: &240 + items: &241 title: Migration description: A migration. type: object @@ -39852,7 +39886,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -40031,7 +40065,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *73 - - &241 + - &242 name: migration_id description: The unique identifier of the migration. in: path @@ -40059,7 +40093,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -40229,7 +40263,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *73 - - *241 + - *242 responses: '302': description: Response @@ -40251,7 +40285,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *73 - - *241 + - *242 responses: '204': description: Response @@ -40275,8 +40309,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *73 - - *241 - - &663 + - *242 + - &664 name: repo_name description: repo_name parameter in: path @@ -40304,7 +40338,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *73 - - *241 + - *242 - *17 - *19 responses: @@ -40316,7 +40350,7 @@ paths: type: array items: *152 examples: - default: &252 + default: &253 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -40489,7 +40523,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &243 + items: &244 title: Organization Role description: Organization roles type: object @@ -40666,7 +40700,7 @@ paths: parameters: - *73 - *75 - - &242 + - &243 name: role_id description: The unique identifier of the role. in: path @@ -40703,7 +40737,7 @@ paths: parameters: - *73 - *75 - - *242 + - *243 responses: '204': description: Response @@ -40756,7 +40790,7 @@ paths: parameters: - *73 - *69 - - *242 + - *243 responses: '204': description: Response @@ -40788,7 +40822,7 @@ paths: parameters: - *73 - *69 - - *242 + - *243 responses: '204': description: Response @@ -40817,13 +40851,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *73 - - *242 + - *243 responses: '200': description: Response content: application/json: - schema: *243 + schema: *244 examples: default: value: @@ -40874,7 +40908,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *73 - - *242 + - *243 - *17 - *19 responses: @@ -40953,7 +40987,7 @@ paths: parent: anyOf: - type: 'null' - - *244 + - *245 type: description: The ownership type of the team type: string @@ -40986,7 +41020,7 @@ paths: - type - parent examples: - default: *245 + default: *246 headers: Link: *65 '404': @@ -41016,7 +41050,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *73 - - *242 + - *243 - *17 - *19 responses: @@ -41045,7 +41079,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *244 + items: *245 name: type: - string @@ -41355,7 +41389,7 @@ paths: - nuget - container - *73 - - &664 + - &665 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -41391,12 +41425,12 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *247 + default: *248 '403': *27 '401': *23 - '400': &666 + '400': &667 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -41418,7 +41452,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &248 + - &249 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -41436,7 +41470,7 @@ paths: - docker - nuget - container - - &249 + - &250 name: package_name description: The name of the package. in: path @@ -41449,7 +41483,7 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: default: value: @@ -41501,8 +41535,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *248 - *249 + - *250 - *73 responses: '204': @@ -41535,8 +41569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - name: token description: package token @@ -41569,8 +41603,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *248 - *249 + - *250 - *73 - *19 - *17 @@ -41591,7 +41625,7 @@ paths: application/json: schema: type: array - items: &250 + items: &251 title: Package Version description: A version of a software package type: object @@ -41726,10 +41760,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - &251 + - &252 name: package_version_id description: Unique identifier of the package version. in: path @@ -41741,7 +41775,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -41777,10 +41811,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - *251 + - *252 responses: '204': description: Response @@ -41812,10 +41846,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - *251 + - *252 responses: '204': description: Response @@ -41845,7 +41879,7 @@ paths: - *73 - *17 - *19 - - &253 + - &254 name: sort description: The property by which to sort the results. in: query @@ -41856,7 +41890,7 @@ paths: - created_at default: created_at - *59 - - &254 + - &255 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -41868,7 +41902,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &255 + - &256 name: repository description: The name of the repository to use to filter the results. in: query @@ -41877,7 +41911,7 @@ paths: type: string examples: - Hello-World - - &256 + - &257 name: permission description: The permission to use to filter the results. in: query @@ -41886,7 +41920,7 @@ paths: type: string examples: - issues_read - - &257 + - &258 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -41896,7 +41930,7 @@ paths: schema: type: string format: date-time - - &258 + - &259 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -41906,7 +41940,7 @@ paths: schema: type: string format: date-time - - &259 + - &260 name: token_id description: The ID of the token in: query @@ -42225,7 +42259,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -42251,14 +42285,14 @@ paths: - *73 - *17 - *19 - - *253 - - *59 - *254 + - *59 - *255 - *256 - *257 - *258 - *259 + - *260 responses: '500': *53 '422': *15 @@ -42542,7 +42576,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -42584,7 +42618,7 @@ paths: type: integer configurations: type: array - items: &260 + items: &261 title: Organization private registry description: Private registry configuration for an organization type: object @@ -43018,7 +43052,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &261 + org-private-registry-with-selected-visibility: &262 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -43116,9 +43150,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *260 + schema: *261 examples: - default: *261 + default: *262 '404': *6 x-github: githubCloudOnly: false @@ -43346,7 +43380,7 @@ paths: application/json: schema: type: array - items: &262 + items: &263 title: Projects v2 Project description: A projects v2 project type: object @@ -43420,7 +43454,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &749 + - &750 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -43505,7 +43539,7 @@ paths: - deleted_at - deleted_by examples: - default: &263 + default: &264 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -43608,7 +43642,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &264 + - &265 name: project_number description: The project's number. in: path @@ -43621,9 +43655,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -43646,7 +43680,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true description: Details of the draft item to create in the project. @@ -43680,7 +43714,7 @@ paths: description: Response content: application/json: - schema: &269 + schema: &270 title: Projects v2 Item description: An item belonging to a project type: object @@ -43694,7 +43728,7 @@ paths: content: oneOf: - *81 - - &459 + - &460 title: Pull Request Simple description: Pull Request Simple type: object @@ -43814,7 +43848,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 active_lock_reason: type: - string @@ -43907,7 +43941,7 @@ paths: _links: type: object properties: - comments: &266 + comments: &267 title: Link description: Hypermedia Link type: object @@ -43916,13 +43950,13 @@ paths: type: string required: - href - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + commits: *267 + statuses: *267 + html: *267 + issue: *267 + review_comments: *267 + review_comment: *267 + self: *267 required: - comments - commits @@ -43933,7 +43967,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: &561 + auto_merge: &562 title: Auto merge description: The status of auto merging a pull request. type: @@ -44107,7 +44141,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &268 + content_type: &269 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -44151,7 +44185,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &270 + draft_issue: &271 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -44225,7 +44259,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *264 + - *265 - *73 - *17 - *45 @@ -44237,7 +44271,7 @@ paths: application/json: schema: type: array - items: &267 + items: &268 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -44390,7 +44424,7 @@ paths: - updated_at - project_url examples: - default: &685 + default: &686 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -44520,7 +44554,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *264 + - *265 - *73 requestBody: required: true @@ -44567,7 +44601,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &686 + items: &687 type: object properties: name: @@ -44604,7 +44638,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &687 + iteration_configuration: &688 type: object description: The configuration for iteration fields. properties: @@ -44654,7 +44688,7 @@ paths: value: name: Due date data_type: date - single_select_field: &688 + single_select_field: &689 summary: Create a single select field value: name: Priority @@ -44681,7 +44715,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &689 + iteration_field: &690 summary: Create an iteration field value: name: Sprint @@ -44705,9 +44739,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *267 + schema: *268 examples: - text_field: &690 + text_field: &691 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -44716,7 +44750,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &691 + number_field: &692 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -44725,7 +44759,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &692 + date_field: &693 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -44734,7 +44768,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &693 + single_select_field: &694 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -44768,7 +44802,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &694 + iteration_field: &695 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -44813,8 +44847,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *264 - - &695 + - *265 + - &696 name: field_id description: The unique identifier of the field. in: path @@ -44827,9 +44861,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: - default: &696 + default: &697 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -44885,7 +44919,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *264 + - *265 - *73 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -44918,7 +44952,7 @@ paths: application/json: schema: type: array - items: &271 + items: &272 title: Projects v2 Item description: An item belonging to a project type: object @@ -44935,7 +44969,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *268 + content_type: *269 content: type: - object @@ -44985,7 +45019,7 @@ paths: - updated_at - archived_at examples: - default: &272 + default: &273 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -45683,7 +45717,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -45753,22 +45787,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *271 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *271 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *271 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *271 '304': *35 '403': *27 '401': *23 @@ -45788,9 +45822,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *264 + - *265 - *73 - - &273 + - &274 name: item_id description: The unique identifier of the project item. in: path @@ -45816,9 +45850,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -45839,9 +45873,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *264 + - *265 - *73 - - *273 + - *274 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -45914,13 +45948,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *273 + number_field: *273 + date_field: *273 + single_select_field: *273 + iteration_field: *273 '401': *23 '403': *27 '404': *6 @@ -45940,9 +45974,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *264 + - *265 - *73 - - *273 + - *274 responses: '204': description: Response @@ -45966,7 +46000,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true content: @@ -46040,7 +46074,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &677 + schema: &678 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -46144,7 +46178,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &274 + value: &275 value: id: 1 number: 1 @@ -46190,10 +46224,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *274 + value: *275 roadmap_view: summary: Response for creating a roadmap view - value: *274 + value: *275 '304': *35 '403': *27 '401': *23 @@ -46221,9 +46255,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *264 + - *265 - *73 - - &697 + - &698 name: view_number description: The number that identifies the project view. in: path @@ -46255,9 +46289,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -46290,7 +46324,7 @@ paths: application/json: schema: type: array - items: &275 + items: &276 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -46368,7 +46402,7 @@ paths: - property_name - value_type examples: - default: &276 + default: &277 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -46428,7 +46462,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *275 + items: *276 minItems: 1 maxItems: 100 required: @@ -46458,9 +46492,9 @@ paths: application/json: schema: type: array - items: *275 + items: *276 examples: - default: *276 + default: *277 '403': *27 '404': *6 x-github: @@ -46482,7 +46516,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *73 - - &277 + - &278 name: custom_property_name description: The custom property name in: path @@ -46494,9 +46528,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: &278 + default: &279 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -46531,7 +46565,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *73 - - *277 + - *278 requestBody: required: true content: @@ -46611,9 +46645,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: *278 + default: *279 '403': *27 '404': *6 x-github: @@ -46637,7 +46671,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *73 - - *277 + - *278 responses: '204': *183 '403': *27 @@ -46701,7 +46735,7 @@ paths: - octocat/Hello-World properties: type: array - items: &279 + items: &280 title: Custom Property Value description: Custom property name and associated value type: object @@ -46791,7 +46825,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *279 + items: *280 required: - repository_names - properties @@ -46983,7 +47017,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -47186,7 +47220,7 @@ paths: description: Response content: application/json: - schema: &327 + schema: &328 title: Full Repository description: Full Repository type: object @@ -47664,7 +47698,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &464 + code_of_conduct: &465 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -47694,7 +47728,7 @@ paths: - key - name - html_url - security_and_analysis: *280 + security_and_analysis: *281 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -47789,7 +47823,7 @@ paths: has_downloads: version: '2026-03-10' examples: - default: &329 + default: &330 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -48316,7 +48350,7 @@ paths: - *73 - *17 - *19 - - &583 + - &584 name: targets description: | A comma-separated list of rule targets to filter by. @@ -48335,7 +48369,7 @@ paths: application/json: schema: type: array - items: &307 + items: &308 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -48370,7 +48404,7 @@ paths: source: type: string description: The name of the source - enforcement: &283 + enforcement: &284 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -48383,7 +48417,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &284 + items: &285 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -48454,7 +48488,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &281 + - &282 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -48478,7 +48512,7 @@ paths: match. items: type: string - - &285 + - &286 title: Organization ruleset conditions type: object description: |- @@ -48492,7 +48526,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -48526,7 +48560,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -48548,7 +48582,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -48561,7 +48595,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &282 + items: &283 title: Repository ruleset property targeting definition type: object @@ -48594,7 +48628,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *282 + items: *283 required: - repository_property type: @@ -48602,12 +48636,12 @@ paths: - object rules: type: array - items: &584 + items: &585 title: Repository Rule type: object description: A repository rule. oneOf: - - &286 + - &287 title: creation description: Only allow users with bypass permission to create matching refs. @@ -48619,7 +48653,7 @@ paths: type: string enum: - creation - - &287 + - &288 title: update description: Only allow users with bypass permission to update matching refs. @@ -48640,7 +48674,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &288 + - &289 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -48652,7 +48686,7 @@ paths: type: string enum: - deletion - - &289 + - &290 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -48664,7 +48698,7 @@ paths: type: string enum: - required_linear_history - - &582 + - &583 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -48742,7 +48776,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &290 + - &291 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -48766,7 +48800,7 @@ paths: type: string required: - required_deployment_environments - - &291 + - &292 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -48778,7 +48812,7 @@ paths: type: string enum: - required_signatures - - &292 + - &293 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -48884,7 +48918,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &293 + - &294 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -48932,7 +48966,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &294 + - &295 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -48944,7 +48978,7 @@ paths: type: string enum: - non_fast_forward - - &295 + - &296 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -48981,7 +49015,7 @@ paths: required: - operator - pattern - - &296 + - &297 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -49018,7 +49052,7 @@ paths: required: - operator - pattern - - &297 + - &298 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -49055,7 +49089,7 @@ paths: required: - operator - pattern - - &298 + - &299 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -49092,7 +49126,7 @@ paths: required: - operator - pattern - - &299 + - &300 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -49129,7 +49163,7 @@ paths: required: - operator - pattern - - &300 + - &301 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -49154,7 +49188,7 @@ paths: type: string required: - restricted_file_paths - - &301 + - &302 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -49178,7 +49212,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &302 + - &303 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -49201,7 +49235,7 @@ paths: type: string required: - restricted_file_extensions - - &303 + - &304 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -49226,7 +49260,7 @@ paths: maximum: 100 required: - max_file_size - - &304 + - &305 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -49276,7 +49310,7 @@ paths: - repository_id required: - workflows - - &305 + - &306 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -49337,7 +49371,7 @@ paths: - tool required: - code_scanning_tools - - &306 + - &307 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -49436,21 +49470,20 @@ paths: - push - repository default: branch - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *285 + items: *285 + conditions: *286 rules: type: array description: An array of rules within the ruleset. - items: &309 + items: &310 title: Repository Rule type: object description: A repository rule. oneOf: - - *286 - *287 - *288 - *289 @@ -49471,6 +49504,7 @@ paths: - *304 - *305 - *306 + - *307 required: - name - enforcement @@ -49508,9 +49542,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &308 + default: &309 value: id: 21 name: super cool ruleset @@ -49566,7 +49600,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *73 - - &585 + - &586 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -49581,7 +49615,7 @@ paths: in: query schema: type: string - - &586 + - &587 name: time_period description: |- The time period to filter by. @@ -49597,14 +49631,14 @@ paths: - week - month default: day - - &587 + - &588 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &588 + - &589 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -49624,7 +49658,7 @@ paths: description: Response content: application/json: - schema: &589 + schema: &590 title: Rule Suites description: Response type: array @@ -49680,7 +49714,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &590 + default: &591 value: - id: 21 actor_id: 12 @@ -49724,7 +49758,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *73 - - &591 + - &592 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -49740,7 +49774,7 @@ paths: description: Response content: application/json: - schema: &592 + schema: &593 title: Rule Suite description: Response type: object @@ -49847,7 +49881,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &593 + default: &594 value: id: 21 actor_id: 12 @@ -49920,9 +49954,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *308 + default: *309 '404': *6 '500': *53 put: @@ -49966,16 +50000,16 @@ paths: - tag - push - repository - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *285 + items: *285 + conditions: *286 rules: description: An array of rules within the ruleset. type: array - items: *309 + items: *310 examples: default: value: @@ -50010,9 +50044,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *308 + default: *309 '404': *6 '422': *15 '500': *53 @@ -50070,7 +50104,7 @@ paths: application/json: schema: type: array - items: &310 + items: &311 title: Ruleset version type: object description: The historical version of a ruleset @@ -50094,7 +50128,7 @@ paths: type: string format: date-time examples: - default: &595 + default: &596 value: - version_id: 3 actor: @@ -50147,9 +50181,9 @@ paths: description: Response content: application/json: - schema: &596 + schema: &597 allOf: - - *310 + - *311 - type: object required: - state @@ -50219,7 +50253,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *73 - - &597 + - &598 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -50230,7 +50264,7 @@ paths: enum: - open - resolved - - &598 + - &599 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -50240,7 +50274,7 @@ paths: required: false schema: type: string - - &599 + - &600 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -50249,7 +50283,7 @@ paths: required: false schema: type: string - - &600 + - &601 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -50268,7 +50302,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &601 + - &602 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -50283,7 +50317,7 @@ paths: - *59 - *19 - *17 - - &602 + - &603 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -50293,7 +50327,7 @@ paths: required: false schema: type: string - - &603 + - &604 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -50303,7 +50337,7 @@ paths: required: false schema: type: string - - &604 + - &605 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -50312,7 +50346,7 @@ paths: required: false schema: type: string - - &605 + - &606 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -50321,7 +50355,7 @@ paths: schema: type: boolean default: false - - &606 + - &607 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -50330,7 +50364,7 @@ paths: schema: type: boolean default: false - - &607 + - &608 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -50362,14 +50396,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &608 + state: &609 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &609 + resolution: &610 type: - string - 'null' @@ -50476,14 +50510,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &610 + - &611 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &612 + - &613 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -50547,7 +50581,7 @@ paths: - blob_url - commit_sha - commit_url - - &613 + - &614 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -50608,7 +50642,7 @@ paths: - page_url - commit_sha - commit_url - - &614 + - &615 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -50630,7 +50664,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &615 + - &616 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -50652,7 +50686,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &616 + - &617 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -50674,7 +50708,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &617 + - &618 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -50689,7 +50723,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &618 + - &619 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -50704,7 +50738,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &619 + - &620 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -50719,7 +50753,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &620 + - &621 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -50741,7 +50775,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &621 + - &622 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -50763,7 +50797,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &622 + - &623 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -50785,7 +50819,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &623 + - &624 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -50807,7 +50841,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &624 + - &625 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull @@ -51068,7 +51102,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &312 + pattern_config_version: &313 type: - string - 'null' @@ -51078,7 +51112,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &311 + items: &312 type: object properties: token_type: @@ -51147,7 +51181,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *311 + items: *312 examples: default: value: @@ -51204,7 +51238,7 @@ paths: schema: type: object properties: - pattern_config_version: *312 + pattern_config_version: *313 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -51230,7 +51264,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *312 + custom_pattern_version: *313 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -51328,7 +51362,7 @@ paths: application/json: schema: type: array - items: &628 + items: &629 description: A repository security advisory. type: object properties: @@ -51572,7 +51606,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 credits_detailed: type: - array @@ -51583,7 +51617,7 @@ paths: type: object properties: user: *4 - type: *313 + type: *314 state: type: string description: The state of the user's acceptance of the @@ -51679,7 +51713,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &629 + default: &630 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -52066,7 +52100,7 @@ paths: application/json: schema: type: array - items: *244 + items: *245 examples: default: value: @@ -52421,7 +52455,7 @@ paths: type: integer network_configurations: type: array - items: &314 + items: &315 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -52574,9 +52608,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: &315 + default: &316 value: id: 123456789ABCDEF name: My network configuration @@ -52605,7 +52639,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *73 - - &316 + - &317 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -52617,9 +52651,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: *315 + default: *316 headers: Link: *65 x-github: @@ -52641,7 +52675,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *73 - - *316 + - *317 requestBody: required: true content: @@ -52694,9 +52728,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: *315 + default: *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52716,7 +52750,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *73 - - *316 + - *317 responses: '204': description: Response @@ -52861,13 +52895,13 @@ paths: application/json: schema: type: array - items: *317 + items: *318 examples: - default: *318 + default: *319 '500': *53 '403': *27 '404': *6 - '422': *319 + '422': *320 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52909,7 +52943,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 headers: Link: *65 '403': *27 @@ -53003,7 +53037,7 @@ paths: description: Response content: application/json: - schema: &320 + schema: &321 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -53077,7 +53111,7 @@ paths: parent: anyOf: - type: 'null' - - *244 + - *245 members_count: type: integer examples: @@ -53402,7 +53436,7 @@ paths: - repos_count - organization examples: - default: &321 + default: &322 value: id: 1 node_id: MDQ6VGVhbTE= @@ -53490,9 +53524,9 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 x-github: githubCloudOnly: false @@ -53577,16 +53611,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '201': description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 '422': *15 '403': *27 @@ -53616,7 +53650,7 @@ paths: responses: '204': description: Response - '422': &322 + '422': &323 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -53650,12 +53684,12 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 - '422': *322 + '422': *323 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53737,7 +53771,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &324 title: Team Membership description: Team Membership type: object @@ -53765,7 +53799,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &645 + response-if-user-is-a-team-maintainer: &646 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -53828,9 +53862,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: &646 + response-if-users-membership-with-team-is-now-pending: &647 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -53906,7 +53940,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -53937,14 +53971,14 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &647 + schema: &648 title: Team Repository description: A team's access to a repository. type: object @@ -54666,8 +54700,8 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 requestBody: required: false content: @@ -54714,8 +54748,8 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 responses: '204': description: Response @@ -54752,7 +54786,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: &648 + response-if-child-teams-exist: &649 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -54906,7 +54940,7 @@ paths: resources: type: object properties: - core: &326 + core: &327 title: Rate Limit type: object properties: @@ -54923,21 +54957,21 @@ paths: - remaining - reset - used - graphql: *326 - search: *326 - code_search: *326 - source_import: *326 - integration_manifest: *326 - code_scanning_upload: *326 - actions_runner_registration: *326 - scim: *326 - dependency_snapshots: *326 - dependency_sbom: *326 - code_scanning_autofix: *326 + graphql: *327 + search: *327 + code_search: *327 + source_import: *327 + integration_manifest: *327 + code_scanning_upload: *327 + actions_runner_registration: *327 + scim: *327 + dependency_snapshots: *327 + dependency_sbom: *327 + code_scanning_autofix: *327 required: - core - search - rate: *326 + rate: *327 required: - rate - resources @@ -55050,14 +55084,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *327 + schema: *328 examples: default-response: summary: Default response @@ -55562,7 +55596,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *328 + '301': *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55580,8 +55614,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -55873,10 +55907,10 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 - '307': &330 + default: *330 + '307': &331 description: Temporary Redirect content: application/json: @@ -55905,8 +55939,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -55928,7 +55962,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *330 + '307': *331 '404': *6 '409': *52 x-github: @@ -55952,11 +55986,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 - - &363 + - &364 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -55979,7 +56013,7 @@ paths: type: integer artifacts: type: array - items: &331 + items: &332 title: Artifact description: An artifact type: object @@ -56074,7 +56108,7 @@ paths: - expires_at - updated_at examples: - default: &364 + default: &365 value: total_count: 2 artifacts: @@ -56135,9 +56169,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *324 - *325 - - &332 + - *326 + - &333 name: artifact_id description: The unique identifier of the artifact. in: path @@ -56149,7 +56183,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -56187,9 +56221,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *324 - *325 - - *332 + - *326 + - *333 responses: '204': description: Response @@ -56213,9 +56247,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *324 - *325 - - *332 + - *326 + - *333 - name: archive_format in: path required: true @@ -56229,7 +56263,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &519 + '410': &520 description: Gone content: application/json: @@ -56254,14 +56288,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &333 + schema: &334 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -56295,13 +56329,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *333 + schema: *334 examples: selected_actions: *40 responses: @@ -56330,14 +56364,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &334 + schema: &335 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -56371,13 +56405,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *334 + schema: *335 examples: selected_actions: *42 responses: @@ -56408,14 +56442,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *335 + schema: *336 examples: default: value: @@ -56441,11 +56475,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 - - &336 + - &337 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -56479,7 +56513,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &338 title: Repository actions caches description: Repository actions caches type: object @@ -56529,7 +56563,7 @@ paths: - total_count - actions_caches examples: - default: &338 + default: &339 value: total_count: 1 actions_caches: @@ -56561,23 +56595,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *324 - *325 + - *326 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *336 + - *337 responses: '200': description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56597,8 +56631,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *324 - *325 + - *326 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -56629,9 +56663,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *324 - *325 - - &339 + - *326 + - &340 name: job_id description: The unique identifier of the job. in: path @@ -56643,7 +56677,7 @@ paths: description: Response content: application/json: - schema: &367 + schema: &368 title: Job description: Information of a job execution in a workflow run type: object @@ -56990,9 +57024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *324 - *325 - - *339 + - *326 + - *340 responses: '302': description: Response @@ -57020,9 +57054,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *324 - *325 - - *339 + - *326 + - *340 requestBody: required: false content: @@ -57068,8 +57102,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Status response @@ -57119,8 +57153,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -57183,8 +57217,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -57202,7 +57236,7 @@ paths: type: integer secrets: type: array - items: &369 + items: &370 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -57223,7 +57257,7 @@ paths: - created_at - updated_at examples: - default: &370 + default: &371 value: total_count: 2 secrets: @@ -57256,9 +57290,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *324 - *325 - - *340 + - *326 + - *341 - *19 responses: '200': @@ -57275,7 +57309,7 @@ paths: type: integer variables: type: array - items: &373 + items: &374 title: Actions Variable type: object properties: @@ -57309,7 +57343,7 @@ paths: - created_at - updated_at examples: - default: &374 + default: &375 value: total_count: 2 variables: @@ -57342,8 +57376,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -57352,11 +57386,11 @@ paths: schema: type: object properties: - enabled: &342 + enabled: &343 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *137 - selected_actions_url: *341 + selected_actions_url: *342 sha_pinning_required: *138 required: - enabled @@ -57385,8 +57419,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -57397,7 +57431,7 @@ paths: schema: type: object properties: - enabled: *342 + enabled: *343 allowed_actions: *137 sha_pinning_required: *138 required: @@ -57429,14 +57463,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &343 + schema: &344 type: object properties: access_level: @@ -57453,7 +57487,7 @@ paths: required: - access_level examples: - default: &344 + default: &345 value: access_level: organization x-github: @@ -57477,15 +57511,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *343 + schema: *344 examples: - default: *344 + default: *345 responses: '204': description: Response @@ -57509,14 +57543,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *345 + schema: *346 examples: default: value: @@ -57540,8 +57574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Empty response for successful settings update @@ -57551,7 +57585,7 @@ paths: required: true content: application/json: - schema: *346 + schema: *347 examples: default: summary: Set retention days @@ -57575,8 +57609,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -57584,7 +57618,7 @@ paths: application/json: schema: *139 examples: - default: *347 + default: *348 '404': *6 x-github: enabledForGitHubApps: true @@ -57603,8 +57637,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -57638,14 +57672,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *348 + schema: *349 examples: default: *140 '403': *27 @@ -57667,13 +57701,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *349 + schema: *350 examples: default: *140 responses: @@ -57699,8 +57733,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -57727,8 +57761,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -57760,14 +57794,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *350 + schema: *351 examples: default: *147 x-github: @@ -57790,8 +57824,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Success response @@ -57802,7 +57836,7 @@ paths: required: true content: application/json: - schema: *351 + schema: *352 examples: default: *147 x-github: @@ -57831,8 +57865,8 @@ paths: in: query schema: type: string - - *324 - *325 + - *326 - *17 - *19 responses: @@ -57876,8 +57910,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -57885,9 +57919,9 @@ paths: application/json: schema: type: array - items: *352 + items: *353 examples: - default: *353 + default: *354 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57909,8 +57943,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -57953,7 +57987,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *354 + '201': *355 '404': *6 '422': *7 '409': *52 @@ -57984,8 +58018,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -57993,7 +58027,7 @@ paths: application/json: schema: *156 examples: - default: *355 + default: *356 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58021,8 +58055,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -58030,7 +58064,7 @@ paths: application/json: schema: *156 examples: - default: *356 + default: *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58052,8 +58086,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '200': @@ -58062,7 +58096,7 @@ paths: application/json: schema: *154 examples: - default: *357 + default: *358 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58083,8 +58117,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '204': @@ -58111,8 +58145,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '200': *158 @@ -58137,8 +58171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 requestBody: required: true @@ -58187,8 +58221,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 requestBody: required: true @@ -58238,11 +58272,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: - '200': *358 + '200': *359 '404': *6 x-github: githubCloudOnly: false @@ -58269,10 +58303,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 - - *359 + - *360 responses: '200': *158 '404': *6 @@ -58300,9 +58334,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *324 - *325 - - &377 + - *326 + - &378 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -58310,7 +58344,7 @@ paths: required: false schema: type: string - - &378 + - &379 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -58318,7 +58352,7 @@ paths: required: false schema: type: string - - &379 + - &380 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -58327,7 +58361,7 @@ paths: required: false schema: type: string - - &380 + - &381 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -58354,7 +58388,7 @@ paths: - pending - *17 - *19 - - &381 + - &382 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -58363,7 +58397,7 @@ paths: schema: type: string format: date-time - - &360 + - &361 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -58372,13 +58406,13 @@ paths: schema: type: boolean default: false - - &382 + - &383 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &383 + - &384 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -58401,7 +58435,7 @@ paths: type: integer workflow_runs: type: array - items: &361 + items: &362 title: Workflow Run description: An invocation of a workflow type: object @@ -58579,7 +58613,7 @@ paths: head_commit: anyOf: - type: 'null' - - &405 + - &406 title: Simple Commit description: A commit. type: object @@ -58694,7 +58728,7 @@ paths: - workflow_url - pull_requests examples: - default: &384 + default: &385 value: total_count: 1 workflow_runs: @@ -58930,24 +58964,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *324 - *325 - - &362 + - *326 + - &363 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: &365 + default: &366 value: id: 30433642 name: Build @@ -59188,9 +59222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '204': description: Response @@ -59213,9 +59247,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -59343,9 +59377,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '201': description: Response @@ -59378,12 +59412,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *324 - *325 - - *362 + - *326 + - *363 - *17 - *19 - - *363 + - *364 - *59 responses: '200': @@ -59400,9 +59434,9 @@ paths: type: integer artifacts: type: array - items: *331 + items: *332 examples: - default: *364 + default: *365 headers: Link: *65 x-github: @@ -59426,25 +59460,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *324 - *325 - - *362 - - &366 + - *326 + - *363 + - &367 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: *365 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59467,10 +59501,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *324 - *325 - - *362 - - *366 + - *326 + - *363 + - *367 - *17 - *19 responses: @@ -59488,9 +59522,9 @@ paths: type: integer jobs: type: array - items: *367 + items: *368 examples: - default: &368 + default: &369 value: total_count: 1 jobs: @@ -59603,10 +59637,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *324 - *325 - - *362 - - *366 + - *326 + - *363 + - *367 responses: '302': description: Response @@ -59634,9 +59668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '202': description: Response @@ -59669,9 +59703,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: true content: @@ -59738,9 +59772,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '202': description: Response @@ -59773,9 +59807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -59805,9 +59839,9 @@ paths: type: integer jobs: type: array - items: *367 + items: *368 examples: - default: *368 + default: *369 headers: Link: *65 x-github: @@ -59832,9 +59866,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '302': description: Response @@ -59861,9 +59895,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '204': description: Response @@ -59890,9 +59924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -59961,7 +59995,7 @@ paths: items: type: object properties: - type: &485 + type: &486 type: string description: The type of reviewer. enum: @@ -60047,9 +60081,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: true content: @@ -60099,7 +60133,7 @@ paths: application/json: schema: type: array - items: &480 + items: &481 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -60211,7 +60245,7 @@ paths: - created_at - updated_at examples: - default: &481 + default: &482 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -60267,9 +60301,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: false content: @@ -60314,9 +60348,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: false content: @@ -60370,9 +60404,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -60509,8 +60543,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -60528,9 +60562,9 @@ paths: type: integer secrets: type: array - items: *369 + items: *370 examples: - default: *370 + default: *371 headers: Link: *65 x-github: @@ -60555,16 +60589,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60586,17 +60620,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *369 + schema: *370 examples: - default: &498 + default: &499 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -60622,8 +60656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -60681,8 +60715,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -60708,9 +60742,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *324 - *325 - - *340 + - *326 + - *341 - *19 responses: '200': @@ -60727,9 +60761,9 @@ paths: type: integer variables: type: array - items: *373 + items: *374 examples: - default: *374 + default: *375 headers: Link: *65 x-github: @@ -60752,8 +60786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -60805,17 +60839,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: &499 + default: &500 value: name: USERNAME value: octocat @@ -60841,8 +60875,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 requestBody: required: true @@ -60885,8 +60919,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 responses: '204': @@ -60912,8 +60946,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -60931,7 +60965,7 @@ paths: type: integer workflows: type: array - items: &375 + items: &376 title: Workflow description: A GitHub Actions workflow type: object @@ -61049,9 +61083,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *324 - *325 - - &376 + - *326 + - &377 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -61066,7 +61100,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *376 examples: default: value: @@ -61099,9 +61133,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Response @@ -61126,9 +61160,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -61223,9 +61257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Response @@ -61252,19 +61286,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *324 - *325 - - *376 + - *326 - *377 - *378 - *379 - *380 + - *381 - *17 - *19 - - *381 - - *360 - *382 + - *361 - *383 + - *384 responses: '200': description: Response @@ -61280,9 +61314,9 @@ paths: type: integer workflow_runs: type: array - items: *361 + items: *362 examples: - default: *384 + default: *385 headers: Link: *65 x-github: @@ -61314,9 +61348,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '200': description: Response @@ -61377,8 +61411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *324 - *325 + - *326 - *59 - *17 - *45 @@ -61546,8 +61580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -61584,8 +61618,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *324 - *325 + - *326 - name: assignee in: path required: true @@ -61621,8 +61655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -61732,8 +61766,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *324 - *325 + - *326 - *17 - *45 - *46 @@ -61790,7 +61824,7 @@ paths: initiator: type: string examples: - default: *385 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61824,8 +61858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -61833,7 +61867,7 @@ paths: application/json: schema: type: array - items: &386 + items: &387 title: Autolink reference description: An autolink reference. type: object @@ -61892,8 +61926,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -61932,9 +61966,9 @@ paths: description: response content: application/json: - schema: *386 + schema: *387 examples: - default: &387 + default: &388 value: id: 1 key_prefix: TICKET- @@ -61965,9 +61999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *324 - *325 - - &388 + - *326 + - &389 name: autolink_id description: The unique identifier of the autolink. in: path @@ -61979,9 +62013,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *387 + default: *388 '404': *6 x-github: githubCloudOnly: false @@ -62001,9 +62035,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *324 - *325 - - *388 + - *326 + - *389 responses: '204': description: Response @@ -62027,8 +62061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response if Dependabot is enabled @@ -62078,8 +62112,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -62100,8 +62134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -62121,8 +62155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *324 - *325 + - *326 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -62160,7 +62194,7 @@ paths: - url protected: type: boolean - protection: &390 + protection: &391 title: Branch Protection description: Branch Protection type: object @@ -62203,7 +62237,7 @@ paths: required: - contexts - checks - enforce_admins: &393 + enforce_admins: &394 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -62220,7 +62254,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &395 + required_pull_request_reviews: &396 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -62304,7 +62338,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &392 + restrictions: &393 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -62597,9 +62631,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *324 - *325 - - &391 + - *326 + - &392 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -62613,14 +62647,14 @@ paths: description: Response content: application/json: - schema: &401 + schema: &402 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &455 + commit: &456 title: Commit description: Commit type: object @@ -62659,7 +62693,7 @@ paths: author: anyOf: - type: 'null' - - &389 + - &390 title: Git User description: Metaproperties for Git author/committer information. @@ -62681,7 +62715,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 message: type: string examples: @@ -62705,7 +62739,7 @@ paths: required: - sha - url - verification: &505 + verification: &506 title: Verification type: object properties: @@ -62785,7 +62819,7 @@ paths: type: integer files: type: array - items: &466 + items: &467 title: Diff Entry description: Diff Entry type: object @@ -62881,7 +62915,7 @@ paths: - self protected: type: boolean - protection: *390 + protection: *391 protection_url: type: string format: uri @@ -62990,7 +63024,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *328 + '301': *329 '404': *6 x-github: githubCloudOnly: false @@ -63012,15 +63046,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *390 + schema: *391 examples: default: value: @@ -63214,9 +63248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -63476,7 +63510,7 @@ paths: url: type: string format: uri - required_status_checks: &398 + required_status_checks: &399 title: Status Check Policy description: Status Check Policy type: object @@ -63635,7 +63669,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *392 + restrictions: *393 required_conversation_resolution: type: object properties: @@ -63747,9 +63781,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63774,17 +63808,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &394 + default: &395 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -63806,17 +63840,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *394 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63835,9 +63869,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63862,17 +63896,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: &396 + default: &397 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -63968,9 +64002,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -64068,9 +64102,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: *396 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -64091,9 +64125,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -64120,17 +64154,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &397 + default: &398 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -64153,17 +64187,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *397 + default: *398 '404': *6 x-github: githubCloudOnly: false @@ -64183,9 +64217,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -64210,17 +64244,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *398 + schema: *399 examples: - default: &399 + default: &400 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -64246,9 +64280,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -64300,9 +64334,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: - default: *399 + default: *400 '404': *6 '422': *15 x-github: @@ -64324,9 +64358,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -64350,9 +64384,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -64386,9 +64420,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -64455,9 +64489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -64521,9 +64555,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: content: application/json: @@ -64589,15 +64623,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *392 + schema: *393 examples: default: value: @@ -64688,9 +64722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -64713,9 +64747,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -64725,7 +64759,7 @@ paths: type: array items: *5 examples: - default: &400 + default: &401 value: - id: 1 slug: octoapp @@ -64782,9 +64816,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64818,7 +64852,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -64839,9 +64873,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64875,7 +64909,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -64896,9 +64930,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64932,7 +64966,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -64954,9 +64988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -64966,7 +65000,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '404': *6 x-github: githubCloudOnly: false @@ -64986,9 +65020,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -65026,7 +65060,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -65047,9 +65081,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -65087,7 +65121,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -65108,9 +65142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: content: application/json: @@ -65147,7 +65181,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -65169,9 +65203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -65205,9 +65239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -65265,9 +65299,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -65325,9 +65359,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -65387,9 +65421,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -65411,7 +65445,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: default: value: @@ -65527,8 +65561,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -65807,7 +65841,7 @@ paths: description: Response content: application/json: - schema: &402 + schema: &403 title: CheckRun description: A check performed on the code of a given code change type: object @@ -65943,7 +65977,7 @@ paths: check. type: array items: *84 - deployment: &710 + deployment: &711 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -66230,9 +66264,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *324 - *325 - - &403 + - *326 + - &404 name: check_run_id description: The unique identifier of the check run. in: path @@ -66244,9 +66278,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *403 examples: - default: &404 + default: &405 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -66346,9 +66380,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *324 - *325 - - *403 + - *326 + - *404 requestBody: required: true content: @@ -66588,9 +66622,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *403 examples: - default: *404 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66610,9 +66644,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *324 - *325 - - *403 + - *326 + - *404 - *17 - *19 responses: @@ -66722,9 +66756,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *324 - *325 - - *403 + - *326 + - *404 responses: '201': description: Response @@ -66768,8 +66802,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -66791,7 +66825,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &406 + schema: &407 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -66889,7 +66923,7 @@ paths: - string - 'null' format: date-time - head_commit: *405 + head_commit: *406 latest_check_runs_count: type: integer check_runs_url: @@ -66917,7 +66951,7 @@ paths: - check_runs_url - pull_requests examples: - default: &407 + default: &408 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -67208,9 +67242,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *406 + schema: *407 examples: - default: *407 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67229,8 +67263,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -67539,9 +67573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *324 - *325 - - &408 + - *326 + - &409 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -67553,9 +67587,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *407 examples: - default: *407 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67578,17 +67612,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *324 - *325 - - *408 - - &461 + - *326 + - *409 + - &462 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &462 + - &463 name: status description: Returns check runs with the specified `status`. in: query @@ -67627,9 +67661,9 @@ paths: type: integer check_runs: type: array - items: *402 + items: *403 examples: - default: &463 + default: &464 value: total_count: 1 check_runs: @@ -67731,9 +67765,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *324 - *325 - - *408 + - *326 + - *409 responses: '201': description: Response @@ -67766,21 +67800,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *324 - *325 - - *409 + - *326 - *410 + - *411 - *19 - *17 - - &427 + - &428 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *411 - - &428 + schema: *412 + - &429 name: pr description: The number of the pull request for the results you want to list. in: query @@ -67805,13 +67839,13 @@ paths: be returned. in: query required: false - schema: *412 + schema: *413 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *413 + schema: *414 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -67835,7 +67869,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: *414 + instances_url: *415 state: *179 fixed_at: *175 dismissed_by: @@ -67843,11 +67877,11 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: *415 - dismissed_comment: *416 - rule: *417 - tool: *418 - most_recent_instance: *419 + dismissed_reason: *416 + dismissed_comment: *417 + rule: *418 + tool: *419 + most_recent_instance: *420 dismissal_approved_by: anyOf: - type: 'null' @@ -67970,7 +68004,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &420 + '403': &421 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -67997,9 +68031,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *324 - *325 - - &421 + - *326 + - &422 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -68013,7 +68047,7 @@ paths: description: Response content: application/json: - schema: &422 + schema: &423 type: object properties: number: *170 @@ -68021,7 +68055,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: *414 + instances_url: *415 state: *179 fixed_at: *175 dismissed_by: @@ -68029,8 +68063,8 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: *415 - dismissed_comment: *416 + dismissed_reason: *416 + dismissed_comment: *417 rule: type: object properties: @@ -68092,8 +68126,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *418 - most_recent_instance: *419 + tool: *419 + most_recent_instance: *420 dismissal_approved_by: anyOf: - type: 'null' @@ -68189,7 +68223,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68209,9 +68243,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: true content: @@ -68226,8 +68260,8 @@ paths: enum: - open - dismissed - dismissed_reason: *415 - dismissed_comment: *416 + dismissed_reason: *416 + dismissed_comment: *417 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -68255,7 +68289,7 @@ paths: description: Response content: application/json: - schema: *422 + schema: *423 examples: default: value: @@ -68331,7 +68365,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &426 + '403': &427 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -68358,15 +68392,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 responses: '200': description: Response content: application/json: - schema: &423 + schema: &424 type: object properties: status: @@ -68393,13 +68427,13 @@ paths: - description - started_at examples: - default: &424 + default: &425 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &425 + '400': &426 description: Bad Request content: application/json: @@ -68410,7 +68444,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68435,29 +68469,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 responses: '200': description: OK content: application/json: - schema: *423 + schema: *424 examples: - default: *424 + default: *425 '202': description: Accepted content: application/json: - schema: *423 + schema: *424 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *425 + '400': *426 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -68489,9 +68523,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: false content: @@ -68537,8 +68571,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *425 - '403': *426 + '400': *426 + '403': *427 '404': *6 '422': description: Unprocessable Entity @@ -68562,13 +68596,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 - *19 - *17 - - *427 - *428 + - *429 responses: '200': description: Response @@ -68579,10 +68613,10 @@ paths: items: type: object properties: - ref: *411 - analysis_key: *429 - environment: *430 - category: *431 + ref: *412 + analysis_key: *430 + environment: *431 + category: *432 state: type: - string @@ -68599,7 +68633,7 @@ paths: properties: text: type: string - location: *432 + location: *433 html_url: type: string classifications: @@ -68607,7 +68641,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *433 + items: *434 examples: default: value: @@ -68644,7 +68678,7 @@ paths: end_column: 50 classifications: - source - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68678,25 +68712,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *324 - *325 - - *409 + - *326 - *410 + - *411 - *19 - *17 - - *428 + - *429 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *411 + schema: *412 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &434 + schema: &435 type: string description: An identifier for the upload. examples: @@ -68718,23 +68752,23 @@ paths: application/json: schema: type: array - items: &435 + items: &436 type: object properties: - ref: *411 - commit_sha: &443 + ref: *412 + commit_sha: &444 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *429 + analysis_key: *430 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *431 + category: *432 error: type: string examples: @@ -68759,8 +68793,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *434 - tool: *418 + sarif_id: *435 + tool: *419 deletable: type: boolean warning: @@ -68822,7 +68856,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68858,8 +68892,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *324 - *325 + - *326 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -68872,7 +68906,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *436 examples: response: summary: application/json response @@ -68926,7 +68960,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *420 + '403': *421 '404': *6 '422': description: Response if analysis could not be processed @@ -69013,8 +69047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *324 - *325 + - *326 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -69070,7 +69104,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *426 + '403': *427 '404': *6 '503': *113 x-github: @@ -69092,8 +69126,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -69101,7 +69135,7 @@ paths: application/json: schema: type: array - items: &436 + items: &437 title: CodeQL Database description: A CodeQL database. type: object @@ -69213,7 +69247,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -69242,8 +69276,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *324 - *325 + - *326 - name: language in: path description: The language of the CodeQL database. @@ -69255,7 +69289,7 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: default: value: @@ -69287,9 +69321,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &468 + '302': &469 description: Found - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -69311,8 +69345,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *324 - *325 + - *326 - name: language in: path description: The language of the CodeQL database. @@ -69322,7 +69356,7 @@ paths: responses: '204': description: Response - '403': *426 + '403': *427 '404': *6 '503': *113 x-github: @@ -69350,8 +69384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -69360,7 +69394,7 @@ paths: type: object additionalProperties: false properties: - language: &437 + language: &438 type: string description: The language targeted by the CodeQL query enum: @@ -69440,7 +69474,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &441 + schema: &442 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -69450,7 +69484,7 @@ paths: description: The ID of the variant analysis. controller_repo: *64 actor: *4 - query_language: *437 + query_language: *438 query_pack_url: type: string description: The download url for the query pack. @@ -69498,7 +69532,7 @@ paths: items: type: object properties: - repository: &438 + repository: &439 title: Repository Identifier description: Repository Identifier type: object @@ -69540,7 +69574,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &442 + analysis_status: &443 type: string description: The new status of the CodeQL variant analysis repository task. @@ -69572,7 +69606,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &439 + access_mismatch_repos: &440 type: object properties: repository_count: @@ -69587,7 +69621,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *438 + items: *439 required: - repository_count - repositories @@ -69610,8 +69644,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *439 - over_limit_repos: *439 + no_codeql_db_repos: *440 + over_limit_repos: *440 required: - access_mismatch_repos - not_found_repos @@ -69627,7 +69661,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &440 + value: &441 summary: Default response value: id: 1 @@ -69773,10 +69807,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *440 + value: *441 repository_lists: summary: Response for a successful variant analysis submission - value: *440 + value: *441 '404': *6 '422': description: Unable to process variant analysis submission @@ -69804,8 +69838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *324 - *325 + - *326 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -69817,9 +69851,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *442 examples: - default: *440 + default: *441 '404': *6 '503': *113 x-github: @@ -69842,7 +69876,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *324 + - *325 - name: repo in: path description: The name of the controller repository. @@ -69877,7 +69911,7 @@ paths: type: object properties: repository: *64 - analysis_status: *442 + analysis_status: *443 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -70002,8 +70036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -70113,7 +70147,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -70134,8 +70168,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -70229,7 +70263,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *426 + '403': *427 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -70300,8 +70334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -70309,7 +70343,7 @@ paths: schema: type: object properties: - commit_sha: *443 + commit_sha: *444 ref: type: string description: |- @@ -70369,7 +70403,7 @@ paths: schema: type: object properties: - id: *434 + id: *435 url: type: string description: The REST API URL for checking the status of the upload. @@ -70383,7 +70417,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *426 + '403': *427 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -70406,8 +70440,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *324 - *325 + - *326 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -70455,7 +70489,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *420 + '403': *421 '404': description: Not Found if the sarif id does not match any upload '503': *113 @@ -70480,8 +70514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -70562,8 +70596,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *324 - *325 + - *326 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -70691,8 +70725,8 @@ paths: parameters: - *17 - *19 - - *324 - *325 + - *326 responses: '200': description: Response @@ -70708,7 +70742,7 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: default: value: @@ -71006,8 +71040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -71071,17 +71105,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '400': *14 '401': *23 '403': *27 @@ -71110,8 +71144,8 @@ paths: parameters: - *17 - *19 - - *324 - *325 + - *326 responses: '200': description: Response @@ -71175,8 +71209,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *324 - *325 + - *326 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -71213,9 +71247,9 @@ paths: type: integer machines: type: array - items: *445 + items: *446 examples: - default: &654 + default: &655 value: total_count: 2 machines: @@ -71255,8 +71289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *324 - *325 + - *326 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -71343,8 +71377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *324 - *325 + - *326 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -71413,8 +71447,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -71432,7 +71466,7 @@ paths: type: integer secrets: type: array - items: &449 + items: &450 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -71453,7 +71487,7 @@ paths: - created_at - updated_at examples: - default: *446 + default: *447 headers: Link: *65 x-github: @@ -71476,16 +71510,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *447 + schema: *448 examples: - default: *448 + default: *449 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -71505,17 +71539,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *449 + schema: *450 examples: - default: *450 + default: *451 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71535,8 +71569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -71589,8 +71623,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -71619,8 +71653,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *324 - *325 + - *326 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -71658,7 +71692,7 @@ paths: application/json: schema: type: array - items: &451 + items: &452 title: Collaborator description: Collaborator type: object @@ -71851,8 +71885,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 responses: '204': @@ -71899,8 +71933,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 requestBody: required: false @@ -71927,7 +71961,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &518 + schema: &519 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -72155,8 +72189,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 responses: '204': @@ -72188,8 +72222,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *324 - *325 + - *326 - *69 responses: '200': @@ -72210,7 +72244,7 @@ paths: user: anyOf: - type: 'null' - - *451 + - *452 required: - permission - role_name @@ -72264,8 +72298,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -72275,7 +72309,7 @@ paths: application/json: schema: type: array - items: &452 + items: &453 title: Commit Comment description: Commit Comment type: object @@ -72333,7 +72367,7 @@ paths: - created_at - updated_at examples: - default: &457 + default: &458 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -72392,17 +72426,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: &458 + default: &459 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -72459,8 +72493,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -72483,7 +72517,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: default: value: @@ -72534,8 +72568,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -72557,8 +72591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -72585,7 +72619,7 @@ paths: application/json: schema: type: array - items: &453 + items: &454 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -72629,7 +72663,7 @@ paths: - content - created_at examples: - default: &521 + default: &522 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -72674,8 +72708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -72708,9 +72742,9 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: &454 + default: &455 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -72739,9 +72773,9 @@ paths: description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -72763,10 +72797,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - &522 + - &523 name: reaction_id description: The unique identifier of the reaction. in: path @@ -72821,8 +72855,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *324 - *325 + - *326 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -72878,9 +72912,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: &568 + default: &569 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -72974,9 +73008,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *324 - *325 - - &456 + - *326 + - &457 name: commit_sha description: The SHA of the commit. in: path @@ -73048,9 +73082,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *324 - *325 - - *456 + - *326 + - *457 - *17 - *19 responses: @@ -73060,9 +73094,9 @@ paths: application/json: schema: type: array - items: *452 + items: *453 examples: - default: *457 + default: *458 headers: Link: *65 x-github: @@ -73090,9 +73124,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *324 - *325 - - *456 + - *326 + - *457 requestBody: required: true content: @@ -73127,9 +73161,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: *458 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -73157,9 +73191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *324 - *325 - - *456 + - *326 + - *457 - *17 - *19 responses: @@ -73169,9 +73203,9 @@ paths: application/json: schema: type: array - items: *459 + items: *460 examples: - default: &560 + default: &561 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -73708,11 +73742,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *324 - *325 + - *326 - *19 - *17 - - &460 + - &461 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -73727,9 +73761,9 @@ paths: description: Response content: application/json: - schema: *455 + schema: *456 examples: - default: &548 + default: &549 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -73842,11 +73876,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *324 - *325 - - *460 + - *326 - *461 - *462 + - *463 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -73880,9 +73914,9 @@ paths: type: integer check_runs: type: array - items: *402 + items: *403 examples: - default: *463 + default: *464 headers: Link: *65 x-github: @@ -73907,9 +73941,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -73917,7 +73951,7 @@ paths: schema: type: integer example: 1 - - *461 + - *462 - *17 - *19 responses: @@ -73935,7 +73969,7 @@ paths: type: integer check_suites: type: array - items: *406 + items: *407 examples: default: value: @@ -74135,9 +74169,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - *17 - *19 responses: @@ -74339,9 +74373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - *17 - *19 responses: @@ -74351,7 +74385,7 @@ paths: application/json: schema: type: array - items: &633 + items: &634 title: Status description: The status of a commit. type: object @@ -74432,7 +74466,7 @@ paths: site_admin: false headers: Link: *65 - '301': *328 + '301': *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74460,8 +74494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -74494,11 +74528,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *464 + - *465 code_of_conduct_file: anyOf: - type: 'null' - - &465 + - &466 title: Community Health File type: object properties: @@ -74518,19 +74552,19 @@ paths: contributing: anyOf: - type: 'null' - - *465 + - *466 readme: anyOf: - type: 'null' - - *465 + - *466 issue_template: anyOf: - type: 'null' - - *465 + - *466 pull_request_template: anyOf: - type: 'null' - - *465 + - *466 required: - code_of_conduct - code_of_conduct_file @@ -74659,8 +74693,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *324 - *325 + - *326 - *19 - *17 - name: basehead @@ -74708,8 +74742,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *455 - merge_base_commit: *455 + base_commit: *456 + merge_base_commit: *456 status: type: string enum: @@ -74733,10 +74767,10 @@ paths: - 6 commits: type: array - items: *455 + items: *456 files: type: array - items: *466 + items: *467 required: - url - html_url @@ -75022,8 +75056,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -75193,7 +75227,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &467 + response-if-content-is-a-file-github-object: &468 summary: Response if content is a file value: type: file @@ -75330,7 +75364,7 @@ paths: - size - type - url - - &573 + - &574 title: Content File description: Content File type: object @@ -75548,7 +75582,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *467 + response-if-content-is-a-file: *468 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -75617,7 +75651,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *468 + '302': *469 '304': *35 x-github: githubCloudOnly: false @@ -75670,8 +75704,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -75766,7 +75800,7 @@ paths: description: Response content: application/json: - schema: &469 + schema: &470 title: File Commit description: File Commit type: object @@ -75922,7 +75956,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *470 examples: example-for-creating-a-file: value: @@ -75976,7 +76010,7 @@ paths: schema: oneOf: - *3 - - &500 + - &501 description: Repository rule violation was detected type: object properties: @@ -75997,7 +76031,7 @@ paths: items: type: object properties: - placeholder_id: &625 + placeholder_id: &626 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -76029,8 +76063,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -76091,7 +76125,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *470 examples: default: value: @@ -76146,8 +76180,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *324 - *325 + - *326 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -76271,23 +76305,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *324 - *325 + - *326 - *189 - *190 - *191 - *192 + - *193 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *193 - - *470 - *194 + - *471 - *195 - *196 + - *197 - *59 - *45 - *46 @@ -76299,7 +76334,7 @@ paths: application/json: schema: type: array - items: &474 + items: &475 type: object description: A Dependabot alert. properties: @@ -76350,7 +76385,7 @@ paths: - transitive - inconclusive - - security_advisory: *471 + security_advisory: *472 security_vulnerability: *63 url: *173 html_url: *174 @@ -76381,8 +76416,8 @@ paths: dismissal. maxLength: 280 fixed_at: *175 - auto_dismissed_at: *472 - dismissal_request: *473 + auto_dismissed_at: *473 + dismissal_request: *474 assignees: type: array description: The users assigned to this alert. @@ -76637,9 +76672,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *324 - *325 - - &475 + - *326 + - &476 name: alert_number in: path description: |- @@ -76654,7 +76689,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: default: value: @@ -76786,9 +76821,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *324 - *325 - - *475 + - *326 + - *476 requestBody: required: true content: @@ -76844,7 +76879,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: default: value: @@ -76974,8 +77009,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -76993,7 +77028,7 @@ paths: type: integer secrets: type: array - items: &478 + items: &479 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -77047,16 +77082,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *477 + default: *478 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77076,15 +77111,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *478 + schema: *479 examples: default: value: @@ -77110,8 +77145,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -77164,8 +77199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -77188,8 +77223,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *324 - *325 + - *326 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -77363,8 +77398,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -77624,8 +77659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -77708,7 +77743,7 @@ paths: - version - url additionalProperties: false - metadata: &479 + metadata: &480 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -77747,7 +77782,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *479 + metadata: *480 resolved: type: object description: A collection of resolved package dependencies. @@ -77761,7 +77796,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *479 + metadata: *480 relationship: type: string description: A notation of whether a dependency is requested @@ -77894,8 +77929,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *324 - *325 + - *326 - name: sha description: The SHA recorded at creation time. in: query @@ -77936,9 +77971,9 @@ paths: application/json: schema: type: array - items: *480 + items: *481 examples: - default: *481 + default: *482 headers: Link: *65 x-github: @@ -78004,8 +78039,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -78087,7 +78122,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: simple-example: summary: Simple example @@ -78160,9 +78195,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *324 - *325 - - &482 + - *326 + - &483 name: deployment_id description: deployment_id parameter in: path @@ -78174,7 +78209,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: default: value: @@ -78239,9 +78274,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *324 - *325 - - *482 + - *326 + - *483 responses: '204': description: Response @@ -78263,9 +78298,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *324 - *325 - - *482 + - *326 + - *483 - *17 - *19 responses: @@ -78275,7 +78310,7 @@ paths: application/json: schema: type: array - items: &483 + items: &484 title: Deployment Status description: The status of a deployment. type: object @@ -78439,9 +78474,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *324 - *325 - - *482 + - *326 + - *483 requestBody: required: true content: @@ -78516,9 +78551,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: - default: &484 + default: &485 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -78574,9 +78609,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *324 - *325 - - *482 + - *326 + - *483 - name: status_id in: path required: true @@ -78587,9 +78622,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: - default: *484 + default: *485 '404': *6 x-github: githubCloudOnly: false @@ -78614,8 +78649,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -78672,8 +78707,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -78691,7 +78726,7 @@ paths: - 5 environments: type: array - items: &486 + items: &487 title: Environment description: Details of a deployment environment type: object @@ -78753,7 +78788,7 @@ paths: type: string examples: - wait_timer - wait_timer: &488 + wait_timer: &489 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -78795,7 +78830,7 @@ paths: items: type: object properties: - type: *485 + type: *486 reviewer: anyOf: - *4 @@ -78822,7 +78857,7 @@ paths: - id - node_id - type - deployment_branch_policy: &489 + deployment_branch_policy: &490 type: - object - 'null' @@ -78939,9 +78974,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *324 - *325 - - &487 + - *326 + - &488 name: environment_name in: path required: true @@ -78954,9 +78989,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: &490 + default: &491 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -79040,9 +79075,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: false content: @@ -79052,7 +79087,7 @@ paths: - object - 'null' properties: - wait_timer: *488 + wait_timer: *489 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -79071,14 +79106,14 @@ paths: items: type: object properties: - type: *485 + type: *486 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *489 + deployment_branch_policy: *490 additionalProperties: false examples: default: @@ -79098,9 +79133,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: *490 + default: *491 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -79124,9 +79159,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *324 - *325 - - *487 + - *326 + - *488 responses: '204': description: Default response @@ -79151,9 +79186,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *17 - *19 responses: @@ -79172,7 +79207,7 @@ paths: - 2 branch_policies: type: array - items: &491 + items: &492 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -79233,9 +79268,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: true content: @@ -79283,9 +79318,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - example-wildcard: &492 + example-wildcard: &493 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -79327,10 +79362,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - &493 + - *326 + - *488 + - &494 name: branch_policy_id in: path required: true @@ -79342,9 +79377,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79363,10 +79398,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - *493 + - *326 + - *488 + - *494 requestBody: required: true content: @@ -79395,9 +79430,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79416,10 +79451,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - *493 + - *326 + - *488 + - *494 responses: '204': description: Response @@ -79444,9 +79479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 responses: '200': description: List of deployment protection rules @@ -79463,7 +79498,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &494 + items: &495 title: Deployment protection rule description: Deployment protection rule type: object @@ -79485,7 +79520,7 @@ paths: for the environment. examples: - true - app: &495 + app: &496 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -79588,9 +79623,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 requestBody: content: application/json: @@ -79611,9 +79646,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *494 + schema: *495 examples: - default: &496 + default: &497 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -79648,9 +79683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 - *19 - *17 responses: @@ -79670,7 +79705,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *495 + items: *496 examples: default: value: @@ -79705,10 +79740,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *324 - *325 - - *487 - - &497 + - *326 + - *488 + - &498 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -79720,9 +79755,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - default: *496 + default: *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79743,10 +79778,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 - - *497 + - *498 responses: '204': description: Response @@ -79772,9 +79807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *17 - *19 responses: @@ -79792,9 +79827,9 @@ paths: type: integer secrets: type: array - items: *369 + items: *370 examples: - default: *370 + default: *371 headers: Link: *65 x-github: @@ -79819,17 +79854,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *324 - *325 - - *487 + - *326 + - *488 responses: '200': description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79851,18 +79886,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 responses: '200': description: Response content: application/json: - schema: *369 + schema: *370 examples: - default: *498 + default: *499 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79884,9 +79919,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 requestBody: required: true @@ -79944,9 +79979,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 responses: '204': @@ -79972,10 +80007,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *324 - *325 - - *487 - - *340 + - *326 + - *488 + - *341 - *19 responses: '200': @@ -79992,9 +80027,9 @@ paths: type: integer variables: type: array - items: *373 + items: *374 examples: - default: *374 + default: *375 headers: Link: *65 x-github: @@ -80017,9 +80052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: true content: @@ -80071,18 +80106,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *163 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: *499 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80103,10 +80138,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *324 - *325 + - *326 - *163 - - *487 + - *488 requestBody: required: true content: @@ -80148,10 +80183,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *324 - *325 + - *326 - *163 - - *487 + - *488 responses: '204': description: Response @@ -80173,8 +80208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -80242,8 +80277,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *324 - *325 + - *326 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -80402,8 +80437,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -80436,9 +80471,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 '400': *14 '422': *15 '403': *27 @@ -80459,8 +80494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80520,7 +80555,7 @@ paths: schema: oneOf: - *121 - - *500 + - *501 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80545,8 +80580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *324 - *325 + - *326 - name: file_sha in: path required: true @@ -80646,8 +80681,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80756,7 +80791,7 @@ paths: description: Response content: application/json: - schema: &501 + schema: &502 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -80983,15 +81018,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *324 - *325 - - *456 + - *326 + - *457 responses: '200': description: Response content: application/json: - schema: *501 + schema: *502 examples: default: value: @@ -81047,9 +81082,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *324 - *325 - - &502 + - *326 + - &503 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -81066,7 +81101,7 @@ paths: application/json: schema: type: array - items: &503 + items: &504 title: Git Reference description: Git references within a repository type: object @@ -81142,17 +81177,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 responses: '200': description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: &504 + default: &505 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -81181,8 +81216,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -81211,9 +81246,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -81239,9 +81274,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 requestBody: required: true content: @@ -81270,9 +81305,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 '422': *15 '409': *52 x-github: @@ -81290,9 +81325,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 responses: '204': description: Response @@ -81347,8 +81382,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -81415,7 +81450,7 @@ paths: description: Response content: application/json: - schema: &506 + schema: &507 title: Git Tag description: Metadata for a Git tag type: object @@ -81471,7 +81506,7 @@ paths: - sha - type - url - verification: *505 + verification: *506 required: - sha - url @@ -81481,7 +81516,7 @@ paths: - tag - message examples: - default: &507 + default: &508 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -81554,8 +81589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *324 - *325 + - *326 - name: tag_sha in: path required: true @@ -81566,9 +81601,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *507 + default: *508 '404': *6 '409': *52 x-github: @@ -81592,8 +81627,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -81667,7 +81702,7 @@ paths: description: Response content: application/json: - schema: &508 + schema: &509 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -81769,8 +81804,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *324 - *325 + - *326 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -81793,7 +81828,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: default-response: summary: Default response @@ -81852,8 +81887,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -81863,7 +81898,7 @@ paths: application/json: schema: type: array - items: &509 + items: &510 title: Webhook description: Webhooks for repositories. type: object @@ -81926,7 +81961,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &741 + last_response: &742 title: Hook Response type: object properties: @@ -82003,8 +82038,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -82057,9 +82092,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: &510 + default: &511 value: type: Repository id: 12345678 @@ -82107,17 +82142,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '200': description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '404': *6 x-github: githubCloudOnly: false @@ -82137,9 +82172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 requestBody: required: true content: @@ -82184,9 +82219,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '422': *15 '404': *6 x-github: @@ -82207,9 +82242,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -82233,9 +82268,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '200': description: Response @@ -82262,9 +82297,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *324 - *325 - - *202 + - *326 + - *203 requestBody: required: false content: @@ -82308,12 +82343,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *324 - *325 - - *202 - - *17 + - *326 - *203 + - *17 - *204 + - *205 responses: '200': description: Response @@ -82321,9 +82356,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *206 + default: *207 '400': *14 '422': *15 x-github: @@ -82342,18 +82377,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *207 + schema: *208 examples: - default: *208 + default: *209 '400': *14 '422': *15 x-github: @@ -82372,9 +82407,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 - *16 responses: '202': *37 @@ -82397,9 +82432,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -82424,9 +82459,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -82449,8 +82484,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response if immutable releases are enabled @@ -82498,8 +82533,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *324 - *325 + - *326 responses: '204': *183 '409': *52 @@ -82519,8 +82554,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *324 - *325 + - *326 responses: '204': *183 '409': *52 @@ -82577,14 +82612,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &511 + schema: &512 title: Import description: A repository import from an external source. type: object @@ -82691,7 +82726,7 @@ paths: - html_url - authors_url examples: - default: &514 + default: &515 value: vcs: subversion use_lfs: true @@ -82707,7 +82742,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &512 + '503': &513 description: Unavailable due to service under maintenance. content: application/json: @@ -82736,8 +82771,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -82785,7 +82820,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: default: value: @@ -82810,7 +82845,7 @@ paths: type: string '422': *15 '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82838,8 +82873,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -82891,7 +82926,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: example-1: summary: Example 1 @@ -82939,7 +82974,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82962,12 +82997,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *324 - *325 + - *326 responses: '204': description: Response - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82993,9 +83028,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *324 - *325 - - &675 + - *326 + - &676 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -83009,7 +83044,7 @@ paths: application/json: schema: type: array - items: &513 + items: &514 title: Porter Author description: Porter Author type: object @@ -83063,7 +83098,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83088,8 +83123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *324 - *325 + - *326 - name: author_id in: path required: true @@ -83119,7 +83154,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: default: value: @@ -83132,7 +83167,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83156,8 +83191,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -83198,7 +83233,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83226,8 +83261,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -83254,11 +83289,11 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *514 + default: *515 '422': *15 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83281,8 +83316,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -83290,8 +83325,8 @@ paths: application/json: schema: *20 examples: - default: *515 - '301': *328 + default: *516 + '301': *329 '404': *6 x-github: githubCloudOnly: false @@ -83311,8 +83346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -83320,12 +83355,12 @@ paths: application/json: schema: anyOf: - - *221 + - *222 - type: object properties: {} additionalProperties: false examples: - default: &517 + default: &518 value: limit: collaborators_only origin: repository @@ -83350,13 +83385,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *516 + schema: *517 examples: default: summary: Example request body @@ -83368,9 +83403,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *517 + default: *518 '409': description: Response x-github: @@ -83392,8 +83427,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -83416,8 +83451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -83427,9 +83462,9 @@ paths: application/json: schema: type: array - items: *518 + items: *519 examples: - default: &668 + default: &669 value: - id: 1 repository: @@ -83560,9 +83595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *324 - *325 - - *225 + - *326 + - *226 requestBody: required: false content: @@ -83591,7 +83626,7 @@ paths: description: Response content: application/json: - schema: *518 + schema: *519 examples: default: value: @@ -83722,9 +83757,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *324 - *325 - - *225 + - *326 + - *226 responses: '204': description: Response @@ -83755,8 +83790,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *324 - *325 + - *326 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -83804,7 +83839,7 @@ paths: required: false schema: type: string - - *232 + - *233 - name: sort description: What to sort results by. in: query @@ -83829,7 +83864,7 @@ paths: type: array items: *81 examples: - default: &527 + default: &528 value: - id: 1 node_id: MDU6SXNzdWUx @@ -83978,7 +84013,7 @@ paths: state_reason: completed headers: Link: *65 - '301': *328 + '301': *329 '422': *15 '404': *6 x-github: @@ -84007,8 +84042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -84100,7 +84135,7 @@ paths: application/json: schema: *81 examples: - default: &524 + default: &525 value: id: 1 node_id: MDU6SXNzdWUx @@ -84257,7 +84292,7 @@ paths: '422': *15 '503': *113 '404': *6 - '410': *519 + '410': *520 x-github: triggersNotification: true githubCloudOnly: false @@ -84295,8 +84330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *324 - *325 + - *326 - *103 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -84319,7 +84354,7 @@ paths: type: array items: *82 examples: - default: &526 + default: &527 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -84377,8 +84412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': @@ -84387,7 +84422,7 @@ paths: application/json: schema: *82 examples: - default: &520 + default: &521 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -84442,8 +84477,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -84468,7 +84503,7 @@ paths: application/json: schema: *82 examples: - default: *520 + default: *521 '422': *15 x-github: githubCloudOnly: false @@ -84486,8 +84521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -84516,8 +84551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': @@ -84580,7 +84615,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -84597,8 +84632,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -84606,7 +84641,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 '503': *113 x-github: githubCloudOnly: false @@ -84624,8 +84659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -84652,9 +84687,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -84675,8 +84710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -84709,16 +84744,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -84740,10 +84775,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - *522 + - *523 responses: '204': description: Response @@ -84763,8 +84798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -84774,7 +84809,7 @@ paths: application/json: schema: type: array - items: &523 + items: &524 title: Issue Event description: Issue Event type: object @@ -85114,8 +85149,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *324 - *325 + - *326 - name: event_id in: path required: true @@ -85126,7 +85161,7 @@ paths: description: Response content: application/json: - schema: *523 + schema: *524 examples: default: value: @@ -85319,7 +85354,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *519 + '410': *520 '403': *27 x-github: githubCloudOnly: false @@ -85353,9 +85388,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *324 - *325 - - &525 + - *326 + - &526 name: issue_number description: The number that identifies the issue. in: path @@ -85371,7 +85406,7 @@ paths: examples: default: summary: Issue - value: *524 + value: *525 pinned_comment: summary: Issue with pinned comment value: @@ -85570,9 +85605,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 '304': *35 x-github: githubCloudOnly: false @@ -85597,9 +85632,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -85740,13 +85775,13 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 '422': *15 '503': *113 '403': *27 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85774,9 +85809,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -85804,7 +85839,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85820,9 +85855,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: content: application/json: @@ -85849,7 +85884,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85871,9 +85906,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: assignee in: path required: true @@ -85913,9 +85948,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *86 - *17 - *19 @@ -85928,11 +85963,11 @@ paths: type: array items: *82 examples: - default: *526 + default: *527 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85961,9 +85996,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -85987,14 +86022,14 @@ paths: application/json: schema: *82 examples: - default: *520 + default: *521 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -86022,9 +86057,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -86036,12 +86071,12 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86069,9 +86104,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86095,15 +86130,15 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *328 + '301': *329 '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -86134,9 +86169,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -86150,13 +86185,13 @@ paths: application/json: schema: *81 examples: - default: *524 - '301': *328 + default: *525 + '301': *329 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 x-github: triggersNotification: true githubCloudOnly: false @@ -86182,9 +86217,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -86196,12 +86231,12 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86218,9 +86253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -86234,7 +86269,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &530 + - &531 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -86283,7 +86318,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &531 + - &532 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -86411,7 +86446,7 @@ paths: - performed_via_github_app - assignee - assigner - - &532 + - &533 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -86457,7 +86492,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &533 + - &534 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -86503,7 +86538,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &534 + - &535 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -86552,7 +86587,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &535 + - &536 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -86594,7 +86629,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &536 + - &537 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -86636,7 +86671,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &537 + - &538 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -86692,7 +86727,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &538 + - &539 title: Locked Issue Event description: Locked Issue Event type: object @@ -86737,7 +86772,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &539 + - &540 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -86798,7 +86833,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &540 + - &541 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -86859,7 +86894,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &541 + - &542 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -86920,7 +86955,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &542 + - &543 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -87013,7 +87048,7 @@ paths: color: red headers: Link: *65 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87030,9 +87065,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -87042,9 +87077,9 @@ paths: application/json: schema: type: array - items: *528 + items: *529 examples: - default: &639 + default: &640 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -87068,9 +87103,9 @@ paths: value: '2025-12-25' headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87087,9 +87122,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -87101,7 +87136,7 @@ paths: type: array items: *80 examples: - default: &529 + default: &530 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -87119,9 +87154,9 @@ paths: default: false headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87137,9 +87172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -87184,10 +87219,10 @@ paths: type: array items: *80 examples: - default: *529 - '301': *328 + default: *530 + '301': *329 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -87204,9 +87239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -87268,10 +87303,10 @@ paths: type: array items: *80 examples: - default: *529 - '301': *328 + default: *530 + '301': *329 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -87288,15 +87323,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '204': description: Response - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87315,9 +87350,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: name in: path required: true @@ -87341,9 +87376,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87363,9 +87398,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -87394,7 +87429,7 @@ paths: '204': description: Response '403': *27 - '410': *519 + '410': *520 '404': *6 '422': *15 x-github: @@ -87412,9 +87447,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '204': description: Response @@ -87444,9 +87479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '200': description: Response @@ -87454,10 +87489,10 @@ paths: application/json: schema: *81 examples: - default: *524 - '301': *328 + default: *525 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87474,9 +87509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -87502,13 +87537,13 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87526,9 +87561,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -87560,16 +87595,16 @@ paths: description: Response content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Response content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -87591,10 +87626,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *324 - *325 - - *525 - - *522 + - *326 + - *526 + - *523 responses: '204': description: Response @@ -87623,9 +87658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -87649,7 +87684,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -87682,9 +87717,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -87696,11 +87731,11 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87728,9 +87763,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -87759,14 +87794,14 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -87786,9 +87821,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -87821,7 +87856,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 '403': *27 '404': *6 '422': *7 @@ -87843,9 +87878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -87860,7 +87895,6 @@ paths: description: Timeline Event type: object anyOf: - - *530 - *531 - *532 - *533 @@ -87873,6 +87907,7 @@ paths: - *540 - *541 - *542 + - *543 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -87929,7 +87964,7 @@ paths: pin: anyOf: - type: 'null' - - *543 + - *544 required: - event - actor @@ -88205,7 +88240,7 @@ paths: type: string comments: type: array - items: &562 + items: &563 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -88446,7 +88481,7 @@ paths: type: string comments: type: array - items: *452 + items: *453 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -88721,7 +88756,7 @@ paths: headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88738,8 +88773,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -88749,7 +88784,7 @@ paths: application/json: schema: type: array - items: &544 + items: &545 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -88817,8 +88852,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88854,9 +88889,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: &545 + default: &546 value: id: 1 key: ssh-rsa AAA... @@ -88890,9 +88925,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *324 - *325 - - &546 + - *326 + - &547 name: key_id description: The unique identifier of the key. in: path @@ -88904,9 +88939,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: *545 + default: *546 '404': *6 x-github: githubCloudOnly: false @@ -88924,9 +88959,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *324 - *325 - - *546 + - *326 + - *547 responses: '204': description: Response @@ -88946,8 +88981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -88959,7 +88994,7 @@ paths: type: array items: *80 examples: - default: *529 + default: *530 headers: Link: *65 '404': *6 @@ -88980,8 +89015,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89019,7 +89054,7 @@ paths: application/json: schema: *80 examples: - default: &547 + default: &548 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -89051,8 +89086,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -89065,7 +89100,7 @@ paths: application/json: schema: *80 examples: - default: *547 + default: *548 '404': *6 x-github: githubCloudOnly: false @@ -89082,8 +89117,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -89148,8 +89183,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -89175,8 +89210,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -89215,9 +89250,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *324 - *325 - - *427 + - *326 + - *428 responses: '200': description: Response @@ -89364,8 +89399,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89430,8 +89465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89465,9 +89500,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *455 + schema: *456 examples: - default: *548 + default: *549 '204': description: Response when already merged '404': @@ -89492,8 +89527,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *324 - *325 + - *326 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -89534,7 +89569,7 @@ paths: application/json: schema: type: array - items: *265 + items: *266 examples: default: value: @@ -89590,8 +89625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89631,9 +89666,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: &549 + default: &550 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -89692,9 +89727,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *324 - *325 - - &550 + - *326 + - &551 name: milestone_number description: The number that identifies the milestone. in: path @@ -89706,9 +89741,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *549 + default: *550 '404': *6 x-github: githubCloudOnly: false @@ -89725,9 +89760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 requestBody: required: false content: @@ -89765,9 +89800,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *549 + default: *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89783,9 +89818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 responses: '204': description: Response @@ -89806,9 +89841,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 - *17 - *19 responses: @@ -89820,7 +89855,7 @@ paths: type: array items: *80 examples: - default: *529 + default: *530 headers: Link: *65 x-github: @@ -89839,12 +89874,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *324 - *325 - - *551 + - *326 - *552 - - *86 - *553 + - *86 + - *554 - *17 - *19 responses: @@ -89856,7 +89891,7 @@ paths: type: array items: *106 examples: - default: *554 + default: *555 headers: Link: *65 x-github: @@ -89880,8 +89915,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -89939,14 +89974,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &555 + schema: &556 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -90090,7 +90125,7 @@ paths: - custom_404 - public examples: - default: &556 + default: &557 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -90131,8 +90166,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90187,9 +90222,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *556 examples: - default: *556 + default: *557 '422': *15 '409': *52 x-github: @@ -90212,8 +90247,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90313,8 +90348,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -90340,8 +90375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -90351,7 +90386,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: Page Build description: Page Build type: object @@ -90443,8 +90478,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -90491,16 +90526,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: &558 + default: &559 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -90548,8 +90583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *324 - *325 + - *326 - name: build_id in: path required: true @@ -90560,9 +90595,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90582,8 +90617,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90691,9 +90726,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *324 - *325 - - &559 + - *326 + - &560 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -90751,9 +90786,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *324 - *325 - - *559 + - *326 + - *560 responses: '204': *183 '404': *6 @@ -90780,8 +90815,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -91076,8 +91111,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Private vulnerability reporting status @@ -91114,8 +91149,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': *183 '422': *14 @@ -91136,8 +91171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': *183 '422': *14 @@ -91159,8 +91194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -91168,7 +91203,7 @@ paths: application/json: schema: type: array - items: *279 + items: *280 examples: default: value: @@ -91199,8 +91234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -91212,7 +91247,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *279 + items: *280 required: - properties examples: @@ -91262,8 +91297,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *324 - *325 + - *326 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -91323,9 +91358,9 @@ paths: application/json: schema: type: array - items: *459 + items: *460 examples: - default: *560 + default: *561 headers: Link: *65 '304': *35 @@ -91357,8 +91392,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -91425,7 +91460,7 @@ paths: description: Response content: application/json: - schema: &564 + schema: &565 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -91554,7 +91589,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 active_lock_reason: type: - string @@ -91603,7 +91638,7 @@ paths: items: *4 requested_teams: type: array - items: *244 + items: *245 head: type: object properties: @@ -91641,14 +91676,14 @@ paths: _links: type: object properties: - comments: *266 - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + comments: *267 + commits: *267 + statuses: *267 + html: *267 + issue: *267 + review_comments: *267 + review_comment: *267 + self: *267 required: - comments - commits @@ -91659,7 +91694,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: *561 + auto_merge: *562 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -91855,7 +91890,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &565 + default: &566 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -92382,8 +92417,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *324 - *325 + - *326 - name: sort in: query required: false @@ -92412,9 +92447,9 @@ paths: application/json: schema: type: array - items: *562 + items: *563 examples: - default: &567 + default: &568 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -92491,17 +92526,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 responses: '200': description: Response content: application/json: - schema: *562 + schema: *563 examples: - default: &563 + default: &564 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -92576,8 +92611,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -92600,9 +92635,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: - default: *563 + default: *564 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92618,8 +92653,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -92641,8 +92676,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -92669,9 +92704,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -92692,8 +92727,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -92726,16 +92761,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -92757,10 +92792,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - *522 + - *523 responses: '204': description: Response @@ -92803,9 +92838,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *324 - *325 - - &566 + - *326 + - &567 name: pull_number description: The number that identifies the pull request. in: path @@ -92818,9 +92853,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *564 + schema: *565 examples: - default: *565 + default: *566 '304': *35 '404': *6 '406': @@ -92855,9 +92890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -92899,9 +92934,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: *565 + default: *566 '422': *15 '403': *27 x-github: @@ -92923,9 +92958,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -92986,17 +93021,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -93026,9 +93061,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -93049,9 +93084,9 @@ paths: application/json: schema: type: array - items: *562 + items: *563 examples: - default: *567 + default: *568 headers: Link: *65 x-github: @@ -93084,9 +93119,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -93192,7 +93227,7 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: example-for-a-multi-line-comment: value: @@ -93280,9 +93315,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *95 requestBody: required: true @@ -93305,7 +93340,7 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: default: value: @@ -93391,9 +93426,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -93403,9 +93438,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: *568 + default: *569 headers: Link: *65 x-github: @@ -93435,9 +93470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -93447,7 +93482,7 @@ paths: application/json: schema: type: array - items: *466 + items: *467 examples: default: value: @@ -93485,9 +93520,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *324 - *325 - - *566 + - *326 + - *567 responses: '204': description: Response if pull request has been merged @@ -93510,9 +93545,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -93624,9 +93659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 responses: '200': description: Response @@ -93701,9 +93736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -93740,7 +93775,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: default: value: @@ -94276,9 +94311,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -94312,7 +94347,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: default: value: @@ -94817,9 +94852,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -94829,7 +94864,7 @@ paths: application/json: schema: type: array - items: &569 + items: &570 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -94985,9 +95020,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -95077,9 +95112,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: &571 + default: &572 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -95142,10 +95177,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - &570 + - *326 + - *567 + - &571 name: review_id description: The unique identifier of the review. in: path @@ -95157,9 +95192,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: &572 + default: &573 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -95218,10 +95253,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -95244,7 +95279,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: default: value: @@ -95306,18 +95341,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 responses: '200': description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *571 + default: *572 '422': *7 '404': *6 x-github: @@ -95344,10 +95379,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 - *17 - *19 responses: @@ -95445,9 +95480,9 @@ paths: _links: type: object properties: - self: *266 - html: *266 - pull_request: *266 + self: *267 + html: *267 + pull_request: *267 required: - self - html @@ -95605,10 +95640,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -95637,7 +95672,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: default: value: @@ -95700,10 +95735,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -95738,9 +95773,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *572 + default: *573 '404': *6 '422': *7 '403': *27 @@ -95762,9 +95797,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -95828,8 +95863,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *324 - *325 + - *326 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -95842,9 +95877,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: &574 + default: &575 value: type: file encoding: base64 @@ -95886,8 +95921,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *324 - *325 + - *326 - name: dir description: The alternate path to look for a README file in: path @@ -95907,9 +95942,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *574 + default: *575 '404': *6 '422': *15 x-github: @@ -95931,8 +95966,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -95942,7 +95977,7 @@ paths: application/json: schema: type: array - items: *575 + items: *576 examples: default: value: @@ -96036,8 +96071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -96113,9 +96148,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: &579 + default: &580 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -96220,9 +96255,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *324 - *325 - - &577 + - *326 + - &578 name: asset_id description: The unique identifier of the asset. in: path @@ -96234,9 +96269,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: &578 + default: &579 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -96271,7 +96306,7 @@ paths: type: User site_admin: false '404': *6 - '302': *468 + '302': *469 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96287,9 +96322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *324 - *325 - - *577 + - *326 + - *578 requestBody: required: false content: @@ -96318,9 +96353,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: *578 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96336,9 +96371,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *324 - *325 - - *577 + - *326 + - *578 responses: '204': description: Response @@ -96363,8 +96398,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -96450,16 +96485,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -96477,8 +96512,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *324 - *325 + - *326 - name: tag description: tag parameter in: path @@ -96491,9 +96526,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -96515,9 +96550,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *324 - *325 - - &580 + - *326 + - &581 name: release_id description: The unique identifier of the release. in: path @@ -96531,9 +96566,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '401': description: Unauthorized x-github: @@ -96551,9 +96586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 requestBody: required: false content: @@ -96617,9 +96652,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': description: Not Found if the discussion category name is invalid content: @@ -96640,9 +96675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 responses: '204': description: Response @@ -96663,9 +96698,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *324 - *325 - - *580 + - *326 + - *581 - *17 - *19 responses: @@ -96675,7 +96710,7 @@ paths: application/json: schema: type: array - items: *576 + items: *577 examples: default: value: @@ -96756,9 +96791,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *324 - *325 - - *580 + - *326 + - *581 - name: name in: query required: true @@ -96784,7 +96819,7 @@ paths: description: Response for successful upload content: application/json: - schema: *576 + schema: *577 examples: response-for-successful-upload: value: @@ -96839,9 +96874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -96865,9 +96900,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -96888,9 +96923,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 requestBody: required: true content: @@ -96920,16 +96955,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -96951,10 +96986,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *324 - *325 - - *580 - - *522 + - *326 + - *581 + - *523 responses: '204': description: Response @@ -96978,9 +97013,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 - *17 - *19 responses: @@ -96996,8 +97031,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *286 - - &581 + - *287 + - &582 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -97016,69 +97051,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *287 - - *581 - allOf: - *288 - - *581 + - *582 - allOf: - *289 - - *581 - - allOf: - *582 - - *581 - allOf: - *290 - - *581 + - *582 + - allOf: + - *583 + - *582 - allOf: - *291 - - *581 + - *582 - allOf: - *292 - - *581 + - *582 - allOf: - *293 - - *581 + - *582 - allOf: - *294 - - *581 + - *582 - allOf: - *295 - - *581 + - *582 - allOf: - *296 - - *581 + - *582 - allOf: - *297 - - *581 + - *582 - allOf: - *298 - - *581 + - *582 - allOf: - *299 - - *581 + - *582 - allOf: - *300 - - *581 + - *582 - allOf: - *301 - - *581 + - *582 - allOf: - *302 - - *581 + - *582 - allOf: - *303 - - *581 + - *582 - allOf: - *304 - - *581 + - *582 - allOf: - *305 - - *581 + - *582 - allOf: - *306 - - *581 + - *582 + - allOf: + - *307 + - *582 examples: default: value: @@ -97117,8 +97152,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - *17 - *19 - name: includes_parents @@ -97129,7 +97164,7 @@ paths: schema: type: boolean default: true - - *583 + - *584 responses: '200': description: Response @@ -97137,7 +97172,7 @@ paths: application/json: schema: type: array - items: *307 + items: *308 examples: default: value: @@ -97184,8 +97219,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 requestBody: description: Request body required: true @@ -97205,16 +97240,16 @@ paths: - tag - push default: branch - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *281 + items: *285 + conditions: *282 rules: type: array description: An array of rules within the ruleset. - items: *584 + items: *585 required: - name - enforcement @@ -97245,9 +97280,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &594 + default: &595 value: id: 42 name: super cool ruleset @@ -97295,12 +97330,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *324 - *325 - - *585 + - *326 - *586 - *587 - *588 + - *589 - *17 - *19 responses: @@ -97308,9 +97343,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 '404': *6 '500': *53 x-github: @@ -97331,17 +97366,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *324 - *325 - - *591 + - *326 + - *592 responses: '200': description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '404': *6 '500': *53 x-github: @@ -97369,8 +97404,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -97390,9 +97425,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *594 + default: *595 '404': *6 '500': *53 put: @@ -97410,8 +97445,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -97436,16 +97471,16 @@ paths: - branch - tag - push - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *281 + items: *285 + conditions: *282 rules: description: An array of rules within the ruleset. type: array - items: *584 + items: *585 examples: default: value: @@ -97473,9 +97508,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *594 + default: *595 '404': *6 '422': *15 '500': *53 @@ -97494,8 +97529,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -97518,8 +97553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *324 - *325 + - *326 - *17 - *19 - name: ruleset_id @@ -97535,9 +97570,9 @@ paths: application/json: schema: type: array - items: *310 + items: *311 examples: - default: *595 + default: *596 '404': *6 '500': *53 x-github: @@ -97556,8 +97591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -97575,7 +97610,7 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: default: value: @@ -97630,22 +97665,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *324 - *325 - - *597 + - *326 - *598 - *599 - *600 - *601 + - *602 - *59 - *19 - *17 - - *602 - *603 - *604 - *605 - *606 - *607 + - *608 responses: '200': description: Response @@ -97653,7 +97688,7 @@ paths: application/json: schema: type: array - items: &611 + items: &612 type: object properties: number: *170 @@ -97669,8 +97704,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *608 - resolution: *609 + state: *609 + resolution: *610 resolved_at: type: - string @@ -97764,7 +97799,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *610 + - *611 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -97923,16 +97958,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 - - *607 + - *326 + - *422 + - *608 responses: '200': description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -97986,9 +98021,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: true content: @@ -97996,8 +98031,8 @@ paths: schema: type: object properties: - state: *608 - resolution: *609 + state: *609 + resolution: *610 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -98035,7 +98070,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -98130,9 +98165,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 - *19 - *17 responses: @@ -98143,7 +98178,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &761 + items: &762 type: object properties: type: @@ -98170,7 +98205,6 @@ paths: - commit details: oneOf: - - *612 - *613 - *614 - *615 @@ -98183,6 +98217,7 @@ paths: - *622 - *623 - *624 + - *625 examples: default: value: @@ -98268,8 +98303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -98277,14 +98312,14 @@ paths: schema: type: object properties: - reason: &626 + reason: &627 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *625 + placeholder_id: *626 required: - reason - placeholder_id @@ -98301,7 +98336,7 @@ paths: schema: type: object properties: - reason: *626 + reason: *627 expire_at: type: - string @@ -98348,8 +98383,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *324 - *325 + - *326 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -98364,7 +98399,7 @@ paths: properties: incremental_scans: type: array - items: &627 + items: &628 description: Information on a single scan performed by secret scanning on the repository type: object @@ -98392,15 +98427,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *627 + items: *628 backfill_scans: type: array - items: *627 + items: *628 custom_pattern_backfill_scans: type: array items: allOf: - - *627 + - *628 - type: object properties: pattern_name: @@ -98470,8 +98505,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *324 - *325 + - *326 - *59 - name: sort description: The property to sort the results by. @@ -98515,9 +98550,9 @@ paths: application/json: schema: type: array - items: *628 + items: *629 examples: - default: *629 + default: *630 '400': *14 '404': *6 x-github: @@ -98540,8 +98575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -98621,7 +98656,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 required: - login - type @@ -98711,9 +98746,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: &631 + default: &632 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -98946,8 +98981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -99060,7 +99095,7 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: default: value: @@ -99207,17 +99242,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '200': description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: *631 + default: *632 '403': *27 '404': *6 x-github: @@ -99241,9 +99276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 requestBody: required: true content: @@ -99323,7 +99358,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 required: - login - type @@ -99414,10 +99449,10 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: *631 - add_credit: *631 + default: *632 + add_credit: *632 '403': *27 '404': *6 '422': @@ -99455,9 +99490,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '202': *37 '400': *14 @@ -99484,17 +99519,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '202': description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 '400': *14 '422': *15 '403': *27 @@ -99520,8 +99555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -99617,8 +99652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -99627,7 +99662,7 @@ paths: application/json: schema: type: array - items: &632 + items: &633 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -99660,8 +99695,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -99739,8 +99774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -99834,8 +99869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *324 - *325 + - *326 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -99989,8 +100024,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *324 - *325 + - *326 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -100000,7 +100035,7 @@ paths: application/json: schema: type: array - items: *632 + items: *633 examples: default: value: @@ -100033,8 +100068,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *324 - *325 + - *326 - name: sha in: path required: true @@ -100090,7 +100125,7 @@ paths: description: Response content: application/json: - schema: *633 + schema: *634 examples: default: value: @@ -100144,8 +100179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -100177,14 +100212,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *324 - *325 + - *326 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &634 + schema: &635 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -100257,8 +100292,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -100284,7 +100319,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -100311,8 +100346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -100332,8 +100367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -100415,8 +100450,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *324 - *325 + - *326 - name: ref in: path required: true @@ -100452,8 +100487,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -100465,7 +100500,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 headers: Link: *65 '404': *6 @@ -100485,8 +100520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *324 - *325 + - *326 - *19 - *17 responses: @@ -100494,7 +100529,7 @@ paths: description: Response content: application/json: - schema: &635 + schema: &636 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -100506,7 +100541,7 @@ paths: required: - names examples: - default: &636 + default: &637 value: names: - octocat @@ -100529,8 +100564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -100561,9 +100596,9 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: - default: *636 + default: *637 '404': *6 '422': *7 x-github: @@ -100584,9 +100619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *324 - *325 - - &637 + - *326 + - &638 name: per description: The time frame to display results for. in: query @@ -100617,7 +100652,7 @@ paths: - 128 clones: type: array - items: &638 + items: &639 title: Traffic type: object properties: @@ -100704,8 +100739,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -100799,8 +100834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -100863,9 +100898,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *324 - *325 - - *637 + - *326 + - *638 responses: '200': description: Response @@ -100886,7 +100921,7 @@ paths: - 3782 views: type: array - items: *638 + items: *639 required: - uniques - count @@ -100963,8 +100998,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -101238,8 +101273,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -101262,8 +101297,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -101285,8 +101320,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -101312,8 +101347,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *324 - *325 + - *326 - name: ref in: path required: true @@ -101405,9 +101440,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -101555,7 +101590,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *141 - - *525 + - *526 requestBody: required: true content: @@ -101621,9 +101656,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *528 + items: *529 examples: - default: *639 + default: *640 '400': *14 '403': *27 '404': *6 @@ -101660,7 +101695,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *141 - - *525 + - *526 requestBody: required: true content: @@ -101727,9 +101762,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *528 + items: *529 examples: - default: *639 + default: *640 '400': *14 '403': *27 '404': *6 @@ -101761,8 +101796,8 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *141 - - *525 - - *228 + - *526 + - *229 responses: '204': description: Issue field value deleted successfully @@ -101799,6 +101834,9 @@ paths: * You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is. + > [!NOTE] + > `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata. + This endpoint requires you to authenticate and limits you to 10 requests per minute. tags: - search @@ -101902,7 +101940,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &640 + text_matches: &641 title: Search Result Text Matches type: array items: @@ -102065,7 +102103,7 @@ paths: enum: - author-date - committer-date - - &641 + - &642 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -102134,7 +102172,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 comment_count: type: integer message: @@ -102153,7 +102191,7 @@ paths: url: type: string format: uri - verification: *505 + verification: *506 required: - author - committer @@ -102168,7 +102206,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 parents: type: array items: @@ -102185,7 +102223,7 @@ paths: type: number node_id: type: string - text_matches: *640 + text_matches: *641 required: - sha - node_id @@ -102377,7 +102415,7 @@ paths: - interactions - created - updated - - *641 + - *642 - *17 - *19 - name: advanced_search @@ -102491,11 +102529,11 @@ paths: type: - string - 'null' - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: type: string state_reason: @@ -102509,7 +102547,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 comments: type: integer created_at: @@ -102523,7 +102561,7 @@ paths: - string - 'null' format: date-time - text_matches: *640 + text_matches: *641 pull_request: type: object properties: @@ -102572,7 +102610,7 @@ paths: timeline_url: type: string format: uri - type: *229 + type: *230 performed_via_github_app: anyOf: - type: 'null' @@ -102817,7 +102855,7 @@ paths: enum: - created - updated - - *641 + - *642 - *17 - *19 responses: @@ -102862,7 +102900,7 @@ paths: - 'null' score: type: number - text_matches: *640 + text_matches: *641 required: - id - node_id @@ -102947,7 +102985,7 @@ paths: - forks - help-wanted-issues - updated - - *641 + - *642 - *17 - *19 responses: @@ -103193,7 +103231,7 @@ paths: - admin - pull - push - text_matches: *640 + text_matches: *641 temp_clone_token: type: string allow_merge_commit: @@ -103501,7 +103539,7 @@ paths: - string - 'null' format: uri - text_matches: *640 + text_matches: *641 related: type: - array @@ -103694,7 +103732,7 @@ paths: - followers - repositories - joined - - *641 + - *642 - *17 - *19 responses: @@ -103804,7 +103842,7 @@ paths: type: - boolean - 'null' - text_matches: *640 + text_matches: *641 blog: type: - string @@ -103886,7 +103924,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &644 + - &645 name: team_id description: The unique identifier of the team. in: path @@ -103898,9 +103936,9 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 x-github: githubCloudOnly: false @@ -103927,7 +103965,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *644 + - *645 requestBody: required: true content: @@ -103991,16 +104029,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '201': description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 '422': *15 '403': *27 @@ -104028,7 +104066,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *644 + - *645 responses: '204': description: Response @@ -104057,7 +104095,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -104067,9 +104105,9 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 x-github: @@ -104095,7 +104133,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *644 + - *645 - name: role description: Filters members returned by their role in the team. in: query @@ -104146,7 +104184,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -104183,7 +104221,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -104223,7 +104261,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -104260,16 +104298,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 responses: '200': description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-user-is-a-team-maintainer: *645 + response-if-user-is-a-team-maintainer: *646 '404': *6 x-github: githubCloudOnly: false @@ -104302,7 +104340,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 requestBody: required: false @@ -104328,9 +104366,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: *646 + response-if-users-membership-with-team-is-now-pending: *647 '403': description: Forbidden if team synchronization is set up '422': @@ -104364,7 +104402,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -104392,7 +104430,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -104404,7 +104442,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 '404': *6 @@ -104434,15 +104472,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *647 + schema: *648 examples: alternative-response-with-extra-repository-information: value: @@ -104593,9 +104631,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 requestBody: required: false content: @@ -104645,9 +104683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 responses: '204': description: Response @@ -104672,7 +104710,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -104684,7 +104722,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: *648 + response-if-child-teams-exist: *649 headers: Link: *65 '404': *6 @@ -104717,7 +104755,7 @@ paths: application/json: schema: oneOf: - - &650 + - &651 title: Private User description: Private User type: object @@ -104967,7 +105005,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *649 + - *650 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -105127,7 +105165,7 @@ paths: description: Response content: application/json: - schema: *650 + schema: *651 examples: default: value: @@ -105330,9 +105368,9 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '304': *35 '500': *53 '401': *23 @@ -105471,17 +105509,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -105525,7 +105563,7 @@ paths: type: integer secrets: type: array - items: &651 + items: &652 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -105567,7 +105605,7 @@ paths: - visibility - selected_repositories_url examples: - default: *446 + default: *447 headers: Link: *65 x-github: @@ -105645,7 +105683,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: default: value: @@ -105935,15 +105973,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '304': *35 '500': *53 '401': *23 @@ -105969,7 +106007,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 requestBody: required: false content: @@ -105999,9 +106037,9 @@ paths: description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -106023,7 +106061,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '202': *37 '304': *35 @@ -106052,13 +106090,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '202': description: Response content: application/json: - schema: &652 + schema: &653 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -106111,7 +106149,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &653 + default: &654 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -106143,7 +106181,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *236 + - *237 - name: export_id in: path required: true @@ -106156,9 +106194,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: *653 + default: *654 '404': *6 x-github: githubCloudOnly: false @@ -106179,7 +106217,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *236 + - *237 responses: '200': description: Response @@ -106195,9 +106233,9 @@ paths: type: integer machines: type: array - items: *445 + items: *446 examples: - default: *654 + default: *655 '304': *35 '500': *53 '401': *23 @@ -106226,7 +106264,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *236 + - *237 requestBody: required: true content: @@ -106282,11 +106320,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *327 + repository: *328 machine: anyOf: - type: 'null' - - *445 + - *446 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -107083,15 +107121,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '304': *35 '500': *53 '400': *14 @@ -107123,15 +107161,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '500': *53 '401': *23 '403': *27 @@ -107161,9 +107199,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: &665 + default: &666 value: - id: 197 name: hello_docker @@ -107264,7 +107302,7 @@ paths: application/json: schema: type: array - items: &655 + items: &656 title: Email description: Email type: object @@ -107334,9 +107372,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: &667 + default: &668 value: - email: octocat@github.com verified: true @@ -107413,7 +107451,7 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: default: value: @@ -107671,7 +107709,7 @@ paths: application/json: schema: type: array - items: &656 + items: &657 title: GPG Key description: A unique encryption key type: object @@ -107816,7 +107854,7 @@ paths: - subkeys - revoked examples: - default: &683 + default: &684 value: - id: 3 name: Octocat's GPG Key @@ -107901,9 +107939,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: &657 + default: &658 value: id: 3 name: Octocat's GPG Key @@ -107960,7 +107998,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &658 + - &659 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -107972,9 +108010,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: *657 + default: *658 '404': *6 '304': *35 '403': *27 @@ -107997,7 +108035,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *658 + - *659 responses: '204': description: Response @@ -108276,12 +108314,12 @@ paths: application/json: schema: anyOf: - - *221 + - *222 - type: object properties: {} additionalProperties: false examples: - default: *222 + default: *223 '204': description: Response when there are no restrictions x-github: @@ -108305,7 +108343,7 @@ paths: required: true content: application/json: - schema: *516 + schema: *517 examples: default: value: @@ -108316,7 +108354,7 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: default: value: @@ -108397,7 +108435,7 @@ paths: - closed - all default: open - - *232 + - *233 - name: sort description: What to sort results by. in: query @@ -108422,7 +108460,7 @@ paths: type: array items: *81 examples: - default: *233 + default: *234 headers: Link: *65 '404': *6 @@ -108455,7 +108493,7 @@ paths: application/json: schema: type: array - items: &659 + items: &660 title: Key description: Key type: object @@ -108558,9 +108596,9 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: &660 + default: &661 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -108593,15 +108631,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *546 + - *547 responses: '200': description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: *660 + default: *661 '404': *6 '304': *35 '403': *27 @@ -108624,7 +108662,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *546 + - *547 responses: '204': description: Response @@ -108657,7 +108695,7 @@ paths: application/json: schema: type: array - items: &661 + items: &662 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -108736,7 +108774,7 @@ paths: - account - plan examples: - default: &662 + default: &663 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -108798,9 +108836,9 @@ paths: application/json: schema: type: array - items: *661 + items: *662 examples: - default: *662 + default: *663 headers: Link: *65 '304': *35 @@ -108840,7 +108878,7 @@ paths: application/json: schema: type: array - items: *238 + items: *239 examples: default: value: @@ -108954,7 +108992,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -109041,7 +109079,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -109113,7 +109151,7 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: default: value: @@ -109375,7 +109413,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -109555,7 +109593,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *241 + - *242 - name: exclude in: query required: false @@ -109568,7 +109606,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -109762,7 +109800,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *241 + - *242 responses: '302': description: Response @@ -109788,7 +109826,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *241 + - *242 responses: '204': description: Response @@ -109817,8 +109855,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *241 - - *663 + - *242 + - *664 responses: '204': description: Response @@ -109842,7 +109880,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *241 + - *242 - *17 - *19 responses: @@ -109854,7 +109892,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 '404': *6 @@ -109951,7 +109989,7 @@ paths: - docker - nuget - container - - *664 + - *665 - *19 - *17 responses: @@ -109961,10 +109999,10 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *665 - '400': *666 + default: *666 + '400': *667 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109984,16 +110022,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: &684 + default: &685 value: id: 40201 name: octo-name @@ -110106,8 +110144,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 responses: '204': description: Response @@ -110137,8 +110175,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 - name: token description: package token schema: @@ -110170,8 +110208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *248 - *249 + - *250 - *19 - *17 - name: state @@ -110191,7 +110229,7 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: default: value: @@ -110240,15 +110278,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -110284,9 +110322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '204': description: Response @@ -110316,9 +110354,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '204': description: Response @@ -110355,9 +110393,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: *667 + default: *668 headers: Link: *65 '304': *35 @@ -110470,7 +110508,7 @@ paths: type: array items: *77 examples: - default: &674 + default: &675 summary: Default response value: - id: 1296269 @@ -110788,9 +110826,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -110834,9 +110872,9 @@ paths: application/json: schema: type: array - items: *518 + items: *519 examples: - default: *668 + default: *669 headers: Link: *65 '304': *35 @@ -110859,7 +110897,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *225 + - *226 responses: '204': description: Response @@ -110888,7 +110926,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *225 + - *226 responses: '204': description: Response @@ -110921,7 +110959,7 @@ paths: application/json: schema: type: array - items: &669 + items: &670 title: Social account description: Social media account type: object @@ -110938,7 +110976,7 @@ paths: - provider - url examples: - default: &670 + default: &671 value: - provider: twitter url: https://twitter.com/github @@ -111001,9 +111039,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: *670 + default: *671 '422': *15 '304': *35 '404': *6 @@ -111091,7 +111129,7 @@ paths: application/json: schema: type: array - items: &671 + items: &672 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -111111,7 +111149,7 @@ paths: - title - created_at examples: - default: &702 + default: &703 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -111176,9 +111214,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: &672 + default: &673 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -111208,7 +111246,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &673 + - &674 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -111220,9 +111258,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 '404': *6 '304': *35 '403': *27 @@ -111245,7 +111283,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *673 + - *674 responses: '204': description: Response @@ -111274,7 +111312,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &703 + - &704 name: sort description: The property to sort the results by. `created` means when the repository was starred. `updated` means when the repository was last pushed @@ -111299,11 +111337,11 @@ paths: type: array items: *77 examples: - default-response: *674 + default-response: *675 application/vnd.github.v3.star+json: schema: type: array - items: &704 + items: &705 title: Starred Repository description: Starred Repository type: object @@ -111459,8 +111497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response if this repository is starred by you @@ -111488,8 +111526,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -111513,8 +111551,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -111549,7 +111587,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 '304': *35 @@ -111586,7 +111624,7 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: default: value: @@ -111672,10 +111710,10 @@ paths: application/json: schema: oneOf: + - *651 - *650 - - *649 examples: - default-response: &678 + default-response: &679 summary: Default response value: login: octocat @@ -111710,7 +111748,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &679 + response-with-git-hub-plan-information: &680 summary: Response with GitHub plan information value: login: octocat @@ -111767,14 +111805,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &676 + - &677 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *264 + - *265 requestBody: required: true description: Details of the draft item to create in the project. @@ -111808,9 +111846,9 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: - draft_issue: *270 + draft_issue: *271 '304': *35 '403': *27 '401': *23 @@ -111833,7 +111871,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *675 + - *676 - *17 responses: '200': @@ -111868,8 +111906,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *676 - - *264 + - *677 + - *265 requestBody: required: true content: @@ -111943,17 +111981,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *677 + schema: *678 examples: table_view: summary: Response for creating a table view - value: *274 + value: *275 board_view: summary: Response for creating a board view with filter - value: *274 + value: *275 roadmap_view: summary: Response for creating a roadmap view - value: *274 + value: *275 '304': *35 '403': *27 '401': *23 @@ -111995,11 +112033,11 @@ paths: application/json: schema: oneOf: + - *651 - *650 - - *649 examples: - default-response: *678 - response-with-git-hub-plan-information: *679 + default-response: *679 + response-with-git-hub-plan-information: *680 '404': *6 x-github: githubCloudOnly: false @@ -112049,8 +112087,8 @@ paths: required: - subject_digests examples: - default: *680 - withPredicateType: *681 + default: *681 + withPredicateType: *682 responses: '200': description: Response @@ -112104,7 +112142,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *682 + default: *683 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -112324,7 +112362,7 @@ paths: initiator: type: string examples: - default: *385 + default: *386 '201': description: Response content: @@ -112377,9 +112415,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *665 + default: *666 '403': *27 '401': *23 x-github: @@ -112763,9 +112801,9 @@ paths: application/json: schema: type: array - items: *656 + items: *657 examples: - default: *683 + default: *684 headers: Link: *65 x-github: @@ -112869,7 +112907,7 @@ paths: application/json: schema: *20 examples: - default: *515 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112994,7 +113032,7 @@ paths: - docker - nuget - container - - *664 + - *665 - *69 - *19 - *17 @@ -113005,12 +113043,12 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *665 + default: *666 '403': *27 '401': *23 - '400': *666 + '400': *667 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -113030,17 +113068,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *684 + default: *685 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -113061,8 +113099,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '204': @@ -113095,8 +113133,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 - name: token description: package token @@ -113129,8 +113167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '200': @@ -113139,7 +113177,7 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: default: value: @@ -113197,16 +113235,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 - *69 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -113241,10 +113279,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *248 - *249 + - *250 - *69 - - *251 + - *252 responses: '204': description: Response @@ -113276,10 +113314,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *248 - *249 + - *250 - *69 - - *251 + - *252 responses: '204': description: Response @@ -113320,9 +113358,9 @@ paths: application/json: schema: type: array - items: *262 + items: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -113344,16 +113382,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *264 + - *265 - *69 responses: '200': description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -113375,7 +113413,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *264 + - *265 - *69 - *17 - *45 @@ -113387,9 +113425,9 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: - default: *685 + default: *686 headers: Link: *65 '304': *35 @@ -113411,7 +113449,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *69 - - *264 + - *265 requestBody: required: true content: @@ -113449,7 +113487,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *686 + items: *687 required: - name - data_type @@ -113465,7 +113503,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *687 + iteration_configuration: *688 required: - name - data_type @@ -113487,20 +113525,20 @@ paths: value: name: Due date data_type: date - single_select_field: *688 - iteration_field: *689 + single_select_field: *689 + iteration_field: *690 responses: '201': description: Response content: application/json: - schema: *267 + schema: *268 examples: - text_field: *690 - number_field: *691 - date_field: *692 - single_select_field: *693 - iteration_field: *694 + text_field: *691 + number_field: *692 + date_field: *693 + single_select_field: *694 + iteration_field: *695 '304': *35 '403': *27 '401': *23 @@ -113521,17 +113559,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *264 - - *695 + - *265 + - *696 - *69 responses: '200': description: Response content: application/json: - schema: *267 + schema: *268 examples: - default: *696 + default: *697 headers: Link: *65 '304': *35 @@ -113554,7 +113592,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *264 + - *265 - *69 - *45 - *46 @@ -113587,9 +113625,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -113611,7 +113649,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *69 - - *264 + - *265 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -113681,22 +113719,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *271 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *271 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *271 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *271 '304': *35 '403': *27 '401': *23 @@ -113716,9 +113754,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *264 + - *265 - *69 - - *273 + - *274 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -113738,9 +113776,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -113761,9 +113799,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *264 + - *265 - *69 - - *273 + - *274 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -113836,13 +113874,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *273 + number_field: *273 + date_field: *273 + single_select_field: *273 + iteration_field: *273 '401': *23 '403': *27 '404': *6 @@ -113862,9 +113900,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *264 + - *265 - *69 - - *273 + - *274 responses: '204': description: Response @@ -113886,9 +113924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *264 + - *265 - *69 - - *697 + - *698 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -113914,9 +113952,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -114137,7 +114175,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -114163,7 +114201,7 @@ paths: - *115 - *117 - *116 - - *698 + - *699 - *118 responses: '200': @@ -114294,7 +114332,7 @@ paths: parameters: - *69 - *115 - - *699 + - *700 - *116 responses: '200': @@ -114393,9 +114431,9 @@ paths: - *115 - *117 - *116 - - *700 - - *118 - *701 + - *118 + - *702 responses: '200': description: Response when getting a billing usage summary @@ -114529,9 +114567,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: *670 + default: *671 headers: Link: *65 x-github: @@ -114561,9 +114599,9 @@ paths: application/json: schema: type: array - items: *671 + items: *672 examples: - default: *702 + default: *703 headers: Link: *65 x-github: @@ -114588,7 +114626,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *69 - - *703 + - *704 - *59 - *17 - *19 @@ -114600,11 +114638,11 @@ paths: schema: anyOf: - type: array - items: *704 + items: *705 - type: array items: *77 examples: - default-response: *674 + default-response: *675 headers: Link: *65 x-github: @@ -114635,7 +114673,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -114764,7 +114802,7 @@ webhooks: type: string enum: - disabled - enterprise: &705 + enterprise: &706 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -114833,7 +114871,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &706 + installation: &707 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -114854,7 +114892,7 @@ webhooks: required: - id - node_id - organization: &707 + organization: &708 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -114927,7 +114965,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &708 + repository: &709 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -115867,10 +115905,10 @@ webhooks: type: string enum: - enabled - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -115946,11 +115984,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: &709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: &710 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -116173,11 +116211,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: *709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: *710 sender: *4 required: - action @@ -116365,11 +116403,11 @@ webhooks: - everyone required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: *709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: *710 sender: *4 required: - action @@ -116453,7 +116491,7 @@ webhooks: type: string enum: - completed - check_run: &711 + check_run: &712 title: CheckRun description: A check performed on the code of a given code change type: object @@ -116563,7 +116601,7 @@ webhooks: - examples: - neutral - deployment: *710 + deployment: *711 details_url: type: string examples: @@ -116661,10 +116699,10 @@ webhooks: - output - app - pull_requests - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -117055,11 +117093,11 @@ webhooks: type: string enum: - created - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -117453,11 +117491,11 @@ webhooks: type: string enum: - requested_action - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 requested_action: description: The action requested by the user. type: object @@ -117860,11 +117898,11 @@ webhooks: type: string enum: - rerequested - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -118849,10 +118887,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -119556,10 +119594,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -120257,10 +120295,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -120429,7 +120467,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -120581,20 +120619,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &712 + commit_oid: &713 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *705 - installation: *706 - organization: *707 - ref: &713 + enterprise: *706 + installation: *707 + organization: *708 + ref: &714 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -120761,7 +120799,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -121002,12 +121040,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -121105,7 +121143,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -121290,12 +121328,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -121464,7 +121502,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -121641,12 +121679,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -121747,7 +121785,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -121936,9 +121974,9 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -121946,7 +121984,7 @@ webhooks: type: - string - 'null' - repository: *708 + repository: *709 sender: *4 required: - action @@ -122045,7 +122083,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -122192,12 +122230,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -122366,7 +122404,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -122518,10 +122556,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -122781,10 +122819,10 @@ webhooks: - updated_at - author_association - body - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -122865,18 +122903,18 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *707 - pusher_type: &714 + organization: *708 + pusher_type: &715 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &715 + ref: &716 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -122886,7 +122924,7 @@ webhooks: enum: - tag - branch - repository: *708 + repository: *709 sender: *4 required: - ref @@ -122968,10 +123006,10 @@ webhooks: type: string enum: - created - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -123056,9 +123094,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -123135,10 +123173,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -123215,10 +123253,10 @@ webhooks: type: string enum: - updated - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -123295,19 +123333,19 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - repository: *708 - organization: *707 + enterprise: *706 + installation: *707 + repository: *709 + organization: *708 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *279 + items: *280 old_property_values: type: array description: The old custom property values for the repository. - items: *279 + items: *280 required: - action - repository @@ -123383,18 +123421,18 @@ webhooks: title: delete event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - pusher_type: *714 - ref: *715 + enterprise: *706 + installation: *707 + organization: *708 + pusher_type: *715 + ref: *716 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *708 + repository: *709 sender: *4 required: - ref @@ -123474,11 +123512,11 @@ webhooks: type: string enum: - assignees_changed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123558,11 +123596,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123643,11 +123681,11 @@ webhooks: type: string enum: - auto_reopened - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123728,11 +123766,11 @@ webhooks: type: string enum: - created - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123811,11 +123849,11 @@ webhooks: type: string enum: - dismissed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123894,11 +123932,11 @@ webhooks: type: string enum: - fixed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123978,11 +124016,11 @@ webhooks: type: string enum: - reintroduced - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -124061,11 +124099,11 @@ webhooks: type: string enum: - reopened - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -124142,9 +124180,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - key: &716 + enterprise: *706 + installation: *707 + key: &717 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -124182,8 +124220,8 @@ webhooks: - verified - created_at - read_only - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -124260,11 +124298,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - key: *716 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + key: *717 + organization: *708 + repository: *709 sender: *4 required: - action @@ -124831,12 +124869,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: &720 + workflow: &721 title: Workflow type: - object @@ -125587,13 +125625,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *480 + - *481 pull_requests: type: array - items: *564 - repository: *708 - organization: *707 - installation: *706 + items: *565 + repository: *709 + organization: *708 + installation: *707 sender: *4 responses: '200': @@ -125664,7 +125702,7 @@ webhooks: type: string enum: - approved - approver: &717 + approver: &718 type: object properties: avatar_url: @@ -125707,11 +125745,11 @@ webhooks: type: string comment: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - reviewers: &718 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + reviewers: &719 type: array items: type: object @@ -125792,7 +125830,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &719 + workflow_job_run: &720 type: object properties: conclusion: @@ -126538,18 +126576,18 @@ webhooks: type: string enum: - rejected - approver: *717 + approver: *718 comment: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - reviewers: *718 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + reviewers: *719 sender: *4 since: type: string - workflow_job_run: *719 + workflow_job_run: *720 workflow_job_runs: type: array items: @@ -127266,13 +127304,13 @@ webhooks: type: string enum: - requested - enterprise: *705 + enterprise: *706 environment: type: string - installation: *706 - organization: *707 - repository: *708 - requestor: &725 + installation: *707 + organization: *708 + repository: *709 + requestor: &726 title: User type: - object @@ -129205,12 +129243,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Deployment Workflow Run type: @@ -129901,7 +129939,7 @@ webhooks: type: string enum: - answered - answer: &723 + answer: &724 type: object properties: author_association: @@ -130061,11 +130099,11 @@ webhooks: - created_at - updated_at - body - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130192,11 +130230,11 @@ webhooks: - from required: - category - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130279,11 +130317,11 @@ webhooks: type: string enum: - closed - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130365,7 +130403,7 @@ webhooks: type: string enum: - created - comment: &722 + comment: &723 type: object properties: author_association: @@ -130525,11 +130563,11 @@ webhooks: - updated_at - body - reactions - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130612,12 +130650,12 @@ webhooks: type: string enum: - deleted - comment: *722 - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + comment: *723 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130712,12 +130750,12 @@ webhooks: - from required: - body - comment: *722 - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + comment: *723 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130801,11 +130839,11 @@ webhooks: type: string enum: - created - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130887,11 +130925,11 @@ webhooks: type: string enum: - deleted - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130991,11 +131029,11 @@ webhooks: type: string required: - from - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -131077,10 +131115,10 @@ webhooks: type: string enum: - labeled - discussion: *721 - enterprise: *705 - installation: *706 - label: &724 + discussion: *722 + enterprise: *706 + installation: *707 + label: &725 title: Label type: object properties: @@ -131113,8 +131151,8 @@ webhooks: - color - default - description - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -131197,11 +131235,11 @@ webhooks: type: string enum: - locked - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -131283,11 +131321,11 @@ webhooks: type: string enum: - pinned - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -131369,11 +131407,11 @@ webhooks: type: string enum: - reopened - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -131458,16 +131496,16 @@ webhooks: changes: type: object properties: - new_discussion: *721 - new_repository: *708 + new_discussion: *722 + new_repository: *709 required: - new_discussion - new_repository - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -131550,10 +131588,10 @@ webhooks: type: string enum: - unanswered - discussion: *721 - old_answer: *723 - organization: *707 - repository: *708 + discussion: *722 + old_answer: *724 + organization: *708 + repository: *709 sender: *4 required: - action @@ -131635,12 +131673,12 @@ webhooks: type: string enum: - unlabeled - discussion: *721 - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -131723,11 +131761,11 @@ webhooks: type: string enum: - unlocked - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -131809,11 +131847,11 @@ webhooks: type: string enum: - unpinned - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -131886,7 +131924,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *705 + enterprise: *706 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -132564,9 +132602,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - forkee @@ -132712,9 +132750,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pages: description: The pages that were updated. type: array @@ -132752,7 +132790,7 @@ webhooks: - action - sha - html_url - repository: *708 + repository: *709 sender: *4 required: - pages @@ -132828,10 +132866,10 @@ webhooks: type: string enum: - created - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: &726 + organization: *708 + repositories: &727 description: An array of repository objects that the installation can access. type: array @@ -132857,8 +132895,8 @@ webhooks: - name - full_name - private - repository: *708 - requester: *725 + repository: *709 + requester: *726 sender: *4 required: - action @@ -132933,11 +132971,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -133014,11 +133052,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -133095,10 +133133,10 @@ webhooks: type: string enum: - added - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories_added: &727 + organization: *708 + repositories_added: &728 description: An array of repository objects, which were added to the installation. type: array @@ -133144,15 +133182,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *708 - repository_selection: &728 + repository: *709 + repository_selection: &729 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *725 + requester: *726 sender: *4 required: - action @@ -133231,10 +133269,10 @@ webhooks: type: string enum: - removed - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories_added: *727 + organization: *708 + repositories_added: *728 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -133261,9 +133299,9 @@ webhooks: - name - full_name - private - repository: *708 - repository_selection: *728 - requester: *725 + repository: *709 + repository_selection: *729 + requester: *726 sender: *4 required: - action @@ -133342,11 +133380,11 @@ webhooks: type: string enum: - suspend - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -133528,10 +133566,10 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 target_type: type: string @@ -133610,11 +133648,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -133780,7 +133818,7 @@ webhooks: pin: anyOf: - type: 'null' - - *543 + - *544 user: title: User type: @@ -133866,8 +133904,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -134679,8 +134717,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134697,7 +134735,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -135041,8 +135079,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -135122,7 +135160,7 @@ webhooks: type: string enum: - deleted - comment: &729 + comment: &730 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -135279,7 +135317,7 @@ webhooks: pin: anyOf: - type: 'null' - - *543 + - *544 required: - url - html_url @@ -135293,8 +135331,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136102,8 +136140,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136120,7 +136158,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -136466,8 +136504,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -136547,7 +136585,7 @@ webhooks: type: string enum: - edited - changes: &753 + changes: &754 description: The changes to the comment. type: object properties: @@ -136559,9 +136597,9 @@ webhooks: type: string required: - from - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -137372,8 +137410,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137390,7 +137428,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -137734,8 +137772,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -137816,9 +137854,9 @@ webhooks: type: string enum: - pinned - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -138631,8 +138669,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138649,7 +138687,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -138995,8 +139033,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139076,9 +139114,9 @@ webhooks: type: string enum: - unpinned - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139891,8 +139929,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139909,7 +139947,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -140255,8 +140293,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -140345,9 +140383,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -140436,9 +140474,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -140526,9 +140564,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -140617,9 +140655,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -140699,10 +140737,10 @@ webhooks: type: string enum: - assigned - assignee: *725 - enterprise: *705 - installation: *706 - issue: &732 + assignee: *726 + enterprise: *706 + installation: *707 + issue: &733 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -141513,11 +141551,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141534,7 +141572,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -141637,8 +141675,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -141718,8 +141756,8 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -142535,11 +142573,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142556,7 +142594,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -142802,8 +142840,8 @@ webhooks: required: - state - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -142882,8 +142920,8 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143690,11 +143728,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143711,7 +143749,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -143813,8 +143851,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -143893,8 +143931,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144724,11 +144762,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144745,7 +144783,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -144826,7 +144864,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &730 + milestone: &731 title: Milestone description: A collection of related issues and pull requests. type: object @@ -144969,8 +145007,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -145069,8 +145107,8 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145881,11 +145919,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145899,7 +145937,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -146005,9 +146043,9 @@ webhooks: - active_lock_reason - body - reactions - label: *724 - organization: *707 - repository: *708 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -146087,8 +146125,8 @@ webhooks: type: string enum: - labeled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146898,11 +146936,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146916,7 +146954,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -147022,9 +147060,9 @@ webhooks: - active_lock_reason - body - reactions - label: *724 - organization: *707 - repository: *708 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -147104,8 +147142,8 @@ webhooks: type: string enum: - locked - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147940,11 +147978,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147958,7 +147996,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -148041,8 +148079,8 @@ webhooks: format: uri user_view_type: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -148121,8 +148159,8 @@ webhooks: type: string enum: - milestoned - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148951,11 +148989,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148972,7 +149010,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -149052,9 +149090,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *730 - organization: *707 - repository: *708 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -149941,11 +149979,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150045,7 +150083,7 @@ webhooks: required: - login - id - type: *229 + type: *230 required: - id - number @@ -150537,8 +150575,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151345,11 +151383,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151366,7 +151404,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -151472,8 +151510,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -151553,9 +151591,9 @@ webhooks: type: string enum: - pinned - enterprise: *705 - installation: *706 - issue: &731 + enterprise: *706 + installation: *707 + issue: &732 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -152360,11 +152398,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152381,7 +152419,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -152483,8 +152521,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -152563,8 +152601,8 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153397,11 +153435,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153498,9 +153536,9 @@ webhooks: format: uri user_view_type: type: string - type: *229 - organization: *707 - repository: *708 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154388,11 +154426,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154409,7 +154447,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -155002,11 +155040,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *705 - installation: *706 - issue: *731 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *732 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155086,12 +155124,12 @@ webhooks: type: string enum: - typed - enterprise: *705 - installation: *706 - issue: *732 - type: *229 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155172,7 +155210,7 @@ webhooks: type: string enum: - unassigned - assignee: &756 + assignee: &757 title: User type: - object @@ -155244,11 +155282,11 @@ webhooks: required: - login - id - enterprise: *705 - installation: *706 - issue: *732 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155327,12 +155365,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *705 - installation: *706 - issue: *732 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155412,8 +155450,8 @@ webhooks: type: string enum: - unlocked - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156246,11 +156284,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156267,7 +156305,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -156347,8 +156385,8 @@ webhooks: format: uri user_view_type: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156428,11 +156466,11 @@ webhooks: type: string enum: - unpinned - enterprise: *705 - installation: *706 - issue: *731 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *732 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156511,12 +156549,12 @@ webhooks: type: string enum: - untyped - enterprise: *705 - installation: *706 - issue: *732 - type: *229 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156596,11 +156634,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156678,11 +156716,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156792,11 +156830,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156878,9 +156916,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: &733 + enterprise: *706 + installation: *707 + marketplace_purchase: &734 title: Marketplace Purchase type: object required: @@ -156968,8 +157006,8 @@ webhooks: type: integer unit_count: type: integer - organization: *707 - previous_marketplace_purchase: &734 + organization: *708 + previous_marketplace_purchase: &735 title: Marketplace Purchase type: object properties: @@ -157053,7 +157091,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -157133,10 +157171,10 @@ webhooks: - changed effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -157224,7 +157262,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -157306,10 +157344,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -157395,7 +157433,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -157476,8 +157514,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 marketplace_purchase: title: Marketplace Purchase type: object @@ -157563,9 +157601,9 @@ webhooks: type: integer unit_count: type: integer - organization: *707 - previous_marketplace_purchase: *734 - repository: *708 + organization: *708 + previous_marketplace_purchase: *735 + repository: *709 sender: *4 required: - action @@ -157645,12 +157683,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 - previous_marketplace_purchase: *734 - repository: *708 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 + previous_marketplace_purchase: *735 + repository: *709 sender: *4 required: - action @@ -157752,11 +157790,11 @@ webhooks: type: string required: - to - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157858,11 +157896,11 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157941,11 +157979,11 @@ webhooks: type: string enum: - removed - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158023,11 +158061,11 @@ webhooks: type: string enum: - added - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 scope: description: The scope of the membership. Currently, can only be `team`. @@ -158105,7 +158143,7 @@ webhooks: required: - login - id - team: &735 + team: &736 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -158335,11 +158373,11 @@ webhooks: type: string enum: - removed - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 scope: description: The scope of the membership. Currently, can only be `team`. @@ -158418,7 +158456,7 @@ webhooks: required: - login - id - team: *735 + team: *736 required: - action - scope @@ -158500,8 +158538,8 @@ webhooks: type: string enum: - checks_requested - installation: *706 - merge_group: &736 + installation: *707 + merge_group: &737 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -158520,15 +158558,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *405 + head_commit: *406 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158614,10 +158652,10 @@ webhooks: - merged - invalidated - dequeued - installation: *706 - merge_group: *736 - organization: *707 - repository: *708 + installation: *707 + merge_group: *737 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158690,7 +158728,7 @@ webhooks: type: string enum: - deleted - enterprise: *705 + enterprise: *706 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -158799,12 +158837,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *706 - organization: *707 + installation: *707 + organization: *708 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -158884,11 +158922,11 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158967,9 +159005,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - milestone: &737 + enterprise: *706 + installation: *707 + milestone: &738 title: Milestone description: A collection of related issues and pull requests. type: object @@ -159111,8 +159149,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159191,11 +159229,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159305,11 +159343,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159389,11 +159427,11 @@ webhooks: type: string enum: - opened - enterprise: *705 - installation: *706 - milestone: *737 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *738 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159472,11 +159510,11 @@ webhooks: type: string enum: - blocked - blocked_user: *725 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + blocked_user: *726 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159555,11 +159593,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *725 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + blocked_user: *726 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159638,9 +159676,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - membership: &738 + enterprise: *706 + installation: *707 + membership: &739 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -159750,8 +159788,8 @@ webhooks: - role - organization_url - user - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159829,11 +159867,11 @@ webhooks: type: string enum: - member_added - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159912,8 +159950,8 @@ webhooks: type: string enum: - member_invited - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -160035,10 +160073,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 - user: *725 + user: *726 required: - action - invitation @@ -160116,11 +160154,11 @@ webhooks: type: string enum: - member_removed - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -160207,11 +160245,11 @@ webhooks: properties: from: type: string - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -160288,9 +160326,9 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 package: description: Information about the package. type: object @@ -160813,7 +160851,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &739 + items: &740 title: Ruby Gems metadata type: object properties: @@ -160910,7 +160948,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -160986,9 +161024,9 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 package: description: Information about the package. type: object @@ -161350,7 +161388,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *739 + items: *740 source_url: type: string format: uri @@ -161421,7 +161459,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -161601,12 +161639,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *705 + enterprise: *706 id: type: integer - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - id @@ -161683,7 +161721,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &740 + personal_access_token_request: &741 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -161833,10 +161871,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *705 - organization: *707 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -161913,11 +161951,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *740 - enterprise: *705 - organization: *707 + personal_access_token_request: *741 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -161993,11 +162031,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *740 - enterprise: *705 - organization: *707 + personal_access_token_request: *741 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -162072,11 +162110,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *740 - organization: *707 - enterprise: *705 + personal_access_token_request: *741 + organization: *708 + enterprise: *706 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -162181,7 +162219,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *741 + last_response: *742 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -162213,8 +162251,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 zen: description: Random string of GitHub zen. @@ -162459,10 +162497,10 @@ webhooks: - from required: - note - enterprise: *705 - installation: *706 - organization: *707 - project_card: &742 + enterprise: *706 + installation: *707 + organization: *708 + project_card: &743 title: Project Card type: object properties: @@ -162585,7 +162623,7 @@ webhooks: - creator - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -162666,11 +162704,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project_card: *742 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_card: *743 + repository: *709 sender: *4 required: - action @@ -162750,9 +162788,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 project_card: title: Project Card type: object @@ -162882,7 +162920,7 @@ webhooks: repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -162976,11 +163014,11 @@ webhooks: - from required: - note - enterprise: *705 - installation: *706 - organization: *707 - project_card: *742 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_card: *743 + repository: *709 sender: *4 required: - action @@ -163074,9 +163112,9 @@ webhooks: - from required: - column_id - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 project_card: allOf: - title: Project Card @@ -163273,7 +163311,7 @@ webhooks: type: string required: - after_id - repository: *708 + repository: *709 sender: *4 required: - action @@ -163353,10 +163391,10 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - organization: *707 - project: &744 + enterprise: *706 + installation: *707 + organization: *708 + project: &745 title: Project type: object properties: @@ -163483,7 +163521,7 @@ webhooks: - creator - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -163563,10 +163601,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project_column: &743 + enterprise: *706 + installation: *707 + organization: *708 + project_column: &744 title: Project Column type: object properties: @@ -163606,7 +163644,7 @@ webhooks: - name - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -163685,14 +163723,14 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -163781,11 +163819,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 + repository: *709 sender: *4 required: - action @@ -163865,11 +163903,11 @@ webhooks: type: string enum: - moved - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 + repository: *709 sender: *4 required: - action @@ -163949,11 +163987,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -164033,14 +164071,14 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - project: *744 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -164141,11 +164179,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -164224,11 +164262,11 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -164309,9 +164347,9 @@ webhooks: type: string enum: - closed - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -164392,9 +164430,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -164475,9 +164513,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -164598,9 +164636,9 @@ webhooks: type: string to: type: string - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -164683,7 +164721,7 @@ webhooks: type: string enum: - archived - changes: &748 + changes: &749 type: object properties: archived_at: @@ -164699,9 +164737,9 @@ webhooks: - string - 'null' format: date-time - installation: *706 - organization: *707 - projects_v2_item: &745 + installation: *707 + organization: *708 + projects_v2_item: &746 title: Projects v2 Item description: An item belonging to a project type: object @@ -164719,7 +164757,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *268 + content_type: *269 creator: *4 created_at: type: string @@ -164841,9 +164879,9 @@ webhooks: - 'null' to: type: string - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164925,9 +164963,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -165008,9 +165046,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -165115,7 +165153,7 @@ webhooks: oneOf: - type: string - type: integer - - &746 + - &747 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -165139,7 +165177,7 @@ webhooks: required: - id - name - - &747 + - &748 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -165179,8 +165217,8 @@ webhooks: oneOf: - type: string - type: integer - - *746 - *747 + - *748 type: - 'null' - string @@ -165203,9 +165241,9 @@ webhooks: - 'null' required: - body - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -165302,9 +165340,9 @@ webhooks: type: - string - 'null' - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -165387,10 +165425,10 @@ webhooks: type: string enum: - restored - changes: *748 - installation: *706 - organization: *707 - projects_v2_item: *745 + changes: *749 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -165472,9 +165510,9 @@ webhooks: type: string enum: - reopened - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -165555,9 +165593,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -165638,9 +165676,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -165786,9 +165824,9 @@ webhooks: - string - 'null' format: date - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -165859,10 +165897,10 @@ webhooks: title: public event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - repository @@ -165939,13 +165977,13 @@ webhooks: type: string enum: - assigned - assignee: *725 - enterprise: *705 - installation: *706 - number: &750 + assignee: *726 + enterprise: *706 + installation: *707 + number: &751 description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -168316,7 +168354,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -168413,11 +168451,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -170781,7 +170819,7 @@ webhooks: - draft reason: type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -170878,11 +170916,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -173246,7 +173284,7 @@ webhooks: - draft reason: type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -173343,13 +173381,13 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: &751 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: &752 allOf: - - *564 + - *565 - type: object properties: allow_auto_merge: @@ -173411,7 +173449,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *708 + repository: *709 sender: *4 required: - action @@ -173492,12 +173530,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -173577,11 +173615,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *705 - milestone: *265 - number: *750 - organization: *707 - pull_request: &752 + enterprise: *706 + milestone: *266 + number: *751 + organization: *708 + pull_request: &753 title: Pull Request type: object properties: @@ -175972,7 +176010,7 @@ webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *708 + repository: *709 sender: *4 required: - action @@ -176051,11 +176089,11 @@ webhooks: type: string enum: - dequeued - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -178423,7 +178461,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *708 + repository: *709 sender: *4 required: - action @@ -178555,12 +178593,12 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -178640,11 +178678,11 @@ webhooks: type: string enum: - enqueued - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -180997,7 +181035,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -181085,11 +181123,11 @@ webhooks: type: string enum: - labeled - enterprise: *705 - installation: *706 - label: *724 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + label: *725 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -183459,7 +183497,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -183555,10 +183593,10 @@ webhooks: type: string enum: - locked - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -185926,7 +185964,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -186021,12 +186059,12 @@ webhooks: type: string enum: - milestoned - enterprise: *705 - milestone: *265 - number: *750 - organization: *707 - pull_request: *752 - repository: *708 + enterprise: *706 + milestone: *266 + number: *751 + organization: *708 + pull_request: *753 + repository: *709 sender: *4 required: - action @@ -186105,12 +186143,12 @@ webhooks: type: string enum: - opened - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -186191,12 +186229,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -186276,12 +186314,12 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -186656,9 +186694,9 @@ webhooks: - start_side - side - reactions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -188910,7 +188948,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -189005,7 +189043,7 @@ webhooks: type: string enum: - deleted - comment: &754 + comment: &755 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -189298,9 +189336,9 @@ webhooks: - start_side - side - reactions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -191540,7 +191578,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -191635,11 +191673,11 @@ webhooks: type: string enum: - edited - changes: *753 - comment: *754 - enterprise: *705 - installation: *706 - organization: *707 + changes: *754 + comment: *755 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -193882,7 +193920,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -193978,9 +194016,9 @@ webhooks: type: string enum: - dismissed - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -196235,7 +196273,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 review: description: The review that was affected. type: object @@ -196501,9 +196539,9 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -198617,8 +198655,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 - review: &755 + repository: *709 + review: &756 description: The review that was affected. type: object properties: @@ -198864,12 +198902,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -201238,7 +201276,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_reviewer: title: User type: @@ -201324,12 +201362,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -203705,7 +203743,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_team: title: Team description: Groups of organization members that gives permissions @@ -203923,12 +203961,12 @@ webhooks: type: string enum: - review_requested - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -206299,7 +206337,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_reviewer: title: User type: @@ -206386,12 +206424,12 @@ webhooks: type: string enum: - review_requested - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -208753,7 +208791,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_team: title: Team description: Groups of organization members that gives permissions @@ -208960,9 +208998,9 @@ webhooks: type: string enum: - submitted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -211220,8 +211258,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 - review: *755 + repository: *709 + review: *756 sender: *4 required: - action @@ -211316,9 +211354,9 @@ webhooks: type: string enum: - resolved - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -213471,7 +213509,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 sender: *4 thread: type: object @@ -213876,9 +213914,9 @@ webhooks: type: string enum: - unresolved - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -216014,7 +216052,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 sender: *4 thread: type: object @@ -216421,10 +216459,10 @@ webhooks: type: string before: type: string - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -218781,7 +218819,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -218878,11 +218916,11 @@ webhooks: type: string enum: - unassigned - assignee: *756 - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + assignee: *757 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -221254,7 +221292,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -221348,11 +221386,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *705 - installation: *706 - label: *724 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + label: *725 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -223713,7 +223751,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -223809,10 +223847,10 @@ webhooks: type: string enum: - unlocked - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -226163,7 +226201,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -226381,7 +226419,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *705 + enterprise: *706 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -226476,8 +226514,8 @@ webhooks: - url - author - committer - installation: *706 - organization: *707 + installation: *707 + organization: *708 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -227076,9 +227114,9 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 registry_package: type: object properties: @@ -227555,7 +227593,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *739 + items: *740 summary: type: string tag_name: @@ -227611,7 +227649,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -227689,9 +227727,9 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 registry_package: type: object properties: @@ -228003,7 +228041,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *739 + items: *740 summary: type: string tag_name: @@ -228053,7 +228091,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -228130,10 +228168,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - release: &757 + enterprise: *706 + installation: *707 + organization: *708 + release: &758 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -228464,7 +228502,7 @@ webhooks: - updated_at - zipball_url - body - repository: *708 + repository: *709 sender: *4 required: - action @@ -228541,11 +228579,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -228662,11 +228700,11 @@ webhooks: type: boolean required: - to - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -228744,9 +228782,9 @@ webhooks: type: string enum: - prereleased - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -229082,7 +229120,7 @@ webhooks: - string - 'null' format: uri - repository: *708 + repository: *709 sender: *4 required: - action @@ -229158,10 +229196,10 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - release: &758 + enterprise: *706 + installation: *707 + organization: *708 + release: &759 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -229494,7 +229532,7 @@ webhooks: - string - 'null' format: uri - repository: *708 + repository: *709 sender: *4 required: - action @@ -229570,11 +229608,11 @@ webhooks: type: string enum: - released - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -229650,11 +229688,11 @@ webhooks: type: string enum: - unpublished - enterprise: *705 - installation: *706 - organization: *707 - release: *758 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *759 + repository: *709 sender: *4 required: - action @@ -229730,11 +229768,11 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_advisory: *628 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_advisory: *629 sender: *4 required: - action @@ -229810,11 +229848,11 @@ webhooks: type: string enum: - reported - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_advisory: *628 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_advisory: *629 sender: *4 required: - action @@ -229890,10 +229928,10 @@ webhooks: type: string enum: - archived - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229970,10 +230008,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230051,10 +230089,10 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230139,10 +230177,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230257,10 +230295,10 @@ webhooks: - 'null' items: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230332,10 +230370,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 status: type: string @@ -230416,10 +230454,10 @@ webhooks: type: string enum: - privatized - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230496,10 +230534,10 @@ webhooks: type: string enum: - publicized - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230593,10 +230631,10 @@ webhooks: - name required: - repository - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230676,11 +230714,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 sender: *4 required: - action @@ -230758,11 +230796,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 sender: *4 required: - action @@ -230840,11 +230878,11 @@ webhooks: type: string enum: - edited - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 changes: type: object properties: @@ -230863,16 +230901,16 @@ webhooks: properties: added: type: array - items: *281 + items: *282 deleted: type: array - items: *281 + items: *282 updated: type: array items: type: object properties: - condition: *281 + condition: *282 changes: type: object properties: @@ -230905,16 +230943,16 @@ webhooks: properties: added: type: array - items: *584 + items: *585 deleted: type: array - items: *584 + items: *585 updated: type: array items: type: object properties: - rule: *584 + rule: *585 changes: type: object properties: @@ -231151,10 +231189,10 @@ webhooks: - from required: - owner - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231232,10 +231270,10 @@ webhooks: type: string enum: - unarchived - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231313,7 +231351,7 @@ webhooks: type: string enum: - create - alert: &759 + alert: &760 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -231438,10 +231476,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231651,10 +231689,10 @@ webhooks: type: string enum: - dismissed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231732,11 +231770,11 @@ webhooks: type: string enum: - reopen - alert: *759 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *760 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231938,10 +231976,10 @@ webhooks: enum: - fixed - open - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -232019,7 +232057,7 @@ webhooks: type: string enum: - assigned - alert: &760 + alert: &761 type: object properties: number: *170 @@ -232148,10 +232186,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -232229,11 +232267,11 @@ webhooks: type: string enum: - created - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -232314,11 +232352,11 @@ webhooks: type: string enum: - created - alert: *760 - installation: *706 - location: *761 - organization: *707 - repository: *708 + alert: *761 + installation: *707 + location: *762 + organization: *708 + repository: *709 sender: *4 required: - location @@ -232556,11 +232594,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -232638,11 +232676,11 @@ webhooks: type: string enum: - reopened - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -232720,11 +232758,11 @@ webhooks: type: string enum: - resolved - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -232802,12 +232840,12 @@ webhooks: type: string enum: - unassigned - alert: *760 + alert: *761 assignee: *4 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -232885,11 +232923,11 @@ webhooks: type: string enum: - validated - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -233019,10 +233057,10 @@ webhooks: - organization - enterprise - - repository: *708 - enterprise: *705 - installation: *706 - organization: *707 + repository: *709 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -233100,11 +233138,11 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - security_advisory: &762 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + security_advisory: &763 description: The details of the security advisory, including summary, description, and severity. type: object @@ -233308,11 +233346,11 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - security_advisory: *762 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + security_advisory: *763 sender: *4 required: - action @@ -233385,10 +233423,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -233582,11 +233620,11 @@ webhooks: from: type: object properties: - security_and_analysis: *280 - enterprise: *705 - installation: *706 - organization: *707 - repository: *327 + security_and_analysis: *281 + enterprise: *706 + installation: *707 + organization: *708 + repository: *328 sender: *4 required: - changes @@ -233664,12 +233702,12 @@ webhooks: type: string enum: - cancelled - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: &763 + sponsorship: &764 type: object properties: created_at: @@ -233974,12 +234012,12 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - sponsorship @@ -234067,12 +234105,12 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -234149,17 +234187,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &764 + effective_date: &765 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - sponsorship @@ -234233,7 +234271,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &765 + changes: &766 type: object properties: tier: @@ -234277,13 +234315,13 @@ webhooks: - from required: - tier - effective_date: *764 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + effective_date: *765 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -234360,13 +234398,13 @@ webhooks: type: string enum: - tier_changed - changes: *765 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + changes: *766 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -234440,10 +234478,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -234527,10 +234565,10 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -234964,15 +235002,15 @@ webhooks: type: - string - 'null' - enterprise: *705 + enterprise: *706 id: description: The unique identifier of the status. type: integer - installation: *706 + installation: *707 name: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 sha: description: The Commit SHA. @@ -235088,9 +235126,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -235180,9 +235218,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -235272,9 +235310,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -235364,9 +235402,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -235443,12 +235481,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - team: &766 + team: &767 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -235678,9 +235716,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -236150,7 +236188,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -236226,9 +236264,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -236698,7 +236736,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -236775,9 +236813,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -237247,7 +237285,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -237391,9 +237429,9 @@ webhooks: - from required: - permissions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -237863,7 +237901,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - changes @@ -237941,9 +237979,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -238413,7 +238451,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -238489,10 +238527,10 @@ webhooks: type: string enum: - started - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -238565,17 +238603,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *705 + enterprise: *706 inputs: type: - object - 'null' additionalProperties: true - installation: *706 - organization: *707 + installation: *707 + organization: *708 ref: type: string - repository: *708 + repository: *709 sender: *4 workflow: type: string @@ -238657,10 +238695,10 @@ webhooks: type: string enum: - completed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: allOf: @@ -238916,7 +238954,7 @@ webhooks: type: string required: - conclusion - deployment: *480 + deployment: *481 required: - action - repository @@ -238995,10 +239033,10 @@ webhooks: type: string enum: - in_progress - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: allOf: @@ -239280,7 +239318,7 @@ webhooks: required: - status - steps - deployment: *480 + deployment: *481 required: - action - repository @@ -239359,10 +239397,10 @@ webhooks: type: string enum: - queued - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: type: object @@ -239508,7 +239546,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *480 + deployment: *481 required: - action - repository @@ -239587,10 +239625,10 @@ webhooks: type: string enum: - waiting - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: type: object @@ -239737,7 +239775,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *480 + deployment: *481 required: - action - repository @@ -239817,12 +239855,12 @@ webhooks: type: string enum: - completed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object @@ -240841,12 +240879,12 @@ webhooks: type: string{"code":"deadline_exceeded","msg":"operation timed out"}