diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index db889cde4d..6dd18f85f0 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/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", @@ -1183,7 +1184,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" ], @@ -1243,7 +1244,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", @@ -1256,21 +1257,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" } } }, @@ -1733,7 +1719,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" ], @@ -2490,7 +2476,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" ], @@ -2565,9 +2551,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", @@ -3068,7 +3055,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" ], @@ -7064,6 +7051,9 @@ { "$ref": "#/components/parameters/enterprise" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -23108,6 +23098,9 @@ { "$ref": "#/components/parameters/org" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -49866,6 +49859,9 @@ { "$ref": "#/components/parameters/repo" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -69640,7 +69636,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" ], @@ -110213,6 +110209,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.", @@ -320979,6 +320984,14 @@ "example": "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.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, "dependabot-alert-comma-separated-states": { "name": "state", "in": "query", diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index 445a59018f..4d388b1480 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/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: @@ -847,7 +853,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 @@ -893,7 +903,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 @@ -903,17 +917,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: @@ -1265,7 +1268,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 @@ -1843,7 +1850,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 @@ -1900,8 +1911,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: @@ -2285,7 +2298,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 @@ -5250,6 +5267,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" @@ -17051,6 +17069,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" @@ -36561,6 +36580,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" @@ -50713,6 +50733,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 @@ -80154,6 +80177,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 @@ -243519,6 +243549,15 @@ components: type: string format: date example: '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/api.github.com/api.github.com.2026-03-10.json b/descriptions/api.github.com/api.github.com.2026-03-10.json index 798902dc54..26c0f24d6b 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions/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", @@ -1183,7 +1184,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" ], @@ -1243,7 +1244,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", @@ -1256,21 +1257,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" } } }, @@ -1733,7 +1719,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" ], @@ -2490,7 +2476,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" ], @@ -2565,9 +2551,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", @@ -3068,7 +3055,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" ], @@ -7064,6 +7051,9 @@ { "$ref": "#/components/parameters/enterprise" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -23068,6 +23058,9 @@ { "$ref": "#/components/parameters/org" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -49788,6 +49781,9 @@ { "$ref": "#/components/parameters/repo" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -69552,7 +69548,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" ], @@ -110037,6 +110033,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "$ref": "#/components/schemas/cvss-severities" }, @@ -320228,6 +320233,14 @@ "example": "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.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, "dependabot-alert-comma-separated-states": { "name": "state", "in": "query", diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.yaml b/descriptions/api.github.com/api.github.com.2026-03-10.yaml index 8b27bfdf7d..dac6a76ce4 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions/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: @@ -847,7 +853,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 @@ -893,7 +903,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 @@ -903,17 +917,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: @@ -1265,7 +1268,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 @@ -1843,7 +1850,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 @@ -1900,8 +1911,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: @@ -2285,7 +2298,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 @@ -5250,6 +5267,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" @@ -17018,6 +17036,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" @@ -36499,6 +36518,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" @@ -50639,6 +50659,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 @@ -80008,6 +80031,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: @@ -242845,6 +242875,15 @@ components: type: string format: date example: '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/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index d8175bfe9d..610dc027c0 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/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", @@ -1183,7 +1184,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" ], @@ -1243,7 +1244,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", @@ -1256,21 +1257,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" } } }, @@ -1733,7 +1719,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" ], @@ -2490,7 +2476,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" ], @@ -2565,9 +2551,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", @@ -3068,7 +3055,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" ], @@ -7078,6 +7065,9 @@ { "$ref": "#/components/parameters/enterprise" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -23210,6 +23200,9 @@ { "$ref": "#/components/parameters/org" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -50130,6 +50123,9 @@ { "$ref": "#/components/parameters/repo" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -69942,7 +69938,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" ], @@ -110794,6 +110790,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.", @@ -323086,6 +323091,14 @@ "example": "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.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, "dependabot-alert-comma-separated-states": { "name": "state", "in": "query", diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index 87f01b0af4..6f840b9503 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/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: @@ -847,7 +853,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 @@ -893,7 +903,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 @@ -903,17 +917,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: @@ -1265,7 +1268,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 @@ -1843,7 +1850,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 @@ -1900,8 +1911,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: @@ -2285,7 +2298,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 @@ -5258,6 +5275,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" @@ -17105,6 +17123,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" @@ -36726,6 +36745,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" @@ -50898,6 +50918,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 @@ -80530,6 +80553,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 @@ -244906,6 +244936,15 @@ components: type: string format: date example: '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/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 61253a6e50..0b32f8e81d 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -2023,7 +2023,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" ], @@ -2116,9 +2116,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", @@ -2681,7 +2682,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" ], @@ -2741,7 +2742,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", @@ -2754,21 +2755,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" } } }, @@ -3231,7 +3217,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" ], @@ -3988,7 +3974,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" ], @@ -4063,9 +4049,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", @@ -4566,7 +4553,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" ], @@ -25791,6 +25778,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", @@ -26123,6 +26118,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.", @@ -116859,6 +116863,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", @@ -117216,6 +117228,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.", @@ -329124,6 +329145,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", @@ -329464,6 +329493,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.", @@ -330805,6 +330843,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.", @@ -331983,6 +332030,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.", @@ -558996,7 +559052,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" ], @@ -775117,6 +775173,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.", @@ -777593,6 +777658,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.", @@ -780069,6 +780143,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.", @@ -782545,6 +782628,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.", @@ -785021,6 +785113,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.", @@ -787497,6 +787598,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.", @@ -789973,6 +790083,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.", @@ -792449,6 +792568,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/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 968fe71e02..98097a1dcf 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -857,7 +857,7 @@ paths: - subscriptions_url - type - url - type: &329 + type: &330 type: string description: The type of credit the user is receiving. enum: @@ -1023,7 +1023,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &657 + - &658 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1116,7 +1116,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 @@ -1185,8 +1189,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: @@ -1622,7 +1628,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 @@ -1668,7 +1678,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 @@ -1678,17 +1692,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: @@ -2040,7 +2043,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 @@ -2618,7 +2625,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 @@ -2675,8 +2686,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: @@ -3060,7 +3073,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 @@ -4089,7 +4106,7 @@ paths: schema: type: integer default: 30 - - &215 + - &216 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 @@ -4098,7 +4115,7 @@ paths: required: false schema: type: string - - &216 + - &217 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4118,7 +4135,7 @@ paths: application/json: schema: type: array - items: &217 + items: &218 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4198,7 +4215,7 @@ paths: - installation_id - repository_id examples: - default: &218 + default: &219 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4326,7 +4343,7 @@ paths: description: Response content: application/json: - schema: &219 + schema: &220 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4440,7 +4457,7 @@ paths: - request - response examples: - default: &220 + default: &221 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5417,7 +5434,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &294 + properties: &295 id: description: Unique identifier of the repository example: 42 @@ -5868,7 +5885,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &295 + required: &296 - archive_url - assignees_url - blobs_url @@ -11672,6 +11689,15 @@ paths: parameters: - *40 - &199 + 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 + - &200 name: state in: query description: |- @@ -11680,7 +11706,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &200 + - &201 name: severity in: query description: |- @@ -11689,7 +11715,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &201 + - &202 name: ecosystem in: query description: |- @@ -11698,14 +11724,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &202 + - &203 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 - - &203 + - &204 name: epss_percentage in: query description: |- @@ -11717,7 +11743,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 - - &492 + - &493 name: has in: query description: |- @@ -11731,7 +11757,7 @@ paths: type: string enum: - patch - - &204 + - &205 name: assignee in: query description: |- @@ -11740,7 +11766,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &205 + - &206 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -11750,7 +11776,7 @@ paths: enum: - development - runtime - - &206 + - &207 name: sort in: query description: |- @@ -11776,7 +11802,7 @@ paths: application/json: schema: type: array - items: &207 + items: &208 type: object description: A Dependabot alert. properties: @@ -11843,7 +11869,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &493 + security_advisory: &494 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -11924,6 +11950,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 @@ -12105,14 +12138,14 @@ paths: format: date-time readOnly: true nullable: true - auto_dismissed_at: &494 + auto_dismissed_at: &495 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &495 + dismissal_request: &496 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12174,7 +12207,7 @@ paths: - repository additionalProperties: false examples: - default: &208 + default: &209 value: - number: 2 state: dismissed @@ -13510,7 +13543,7 @@ paths: properties: action: type: string - discussion: &751 + discussion: &752 title: Discussion description: A Discussion in a repository. type: object @@ -13877,7 +13910,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &546 + properties: &547 id: type: integer format: int64 @@ -13990,7 +14023,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &278 + properties: &279 url: type: string format: uri @@ -14060,7 +14093,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &279 + required: &280 - closed_issues - creator - description @@ -14139,7 +14172,7 @@ paths: timeline_url: type: string format: uri - type: &241 + type: &242 title: Issue Type description: The type of issue. type: object @@ -14253,7 +14286,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &669 + sub_issues_summary: &670 title: Sub-issues Summary type: object properties: @@ -14340,7 +14373,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &568 + properties: &569 pinned_at: type: string format: date-time @@ -14352,7 +14385,7 @@ paths: properties: *20 required: *21 nullable: true - required: &569 + required: &570 - pinned_at - pinned_by nullable: true @@ -14366,7 +14399,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &670 + issue_dependencies_summary: &671 title: Issue Dependencies Summary type: object properties: @@ -14385,7 +14418,7 @@ paths: - total_blocking issue_field_values: type: array - items: &553 + items: &554 title: Issue Field Value description: A value assigned to an issue field type: object @@ -14446,7 +14479,7 @@ paths: - node_id - data_type - value - required: &547 + required: &548 - assignee - closed_at - comments @@ -14484,7 +14517,7 @@ paths: action: type: string issue: *85 - comment: &542 + comment: &543 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -15148,7 +15181,7 @@ paths: type: string release: allOf: - - &602 + - &603 title: Release description: A release. type: object @@ -15219,7 +15252,7 @@ paths: author: *4 assets: type: array - items: &603 + items: &604 title: Release Asset description: Data related to a release. type: object @@ -15810,7 +15843,7 @@ paths: url: type: string format: uri - user: &676 + user: &677 title: Public User description: Public User type: object @@ -17682,7 +17715,7 @@ paths: - closed - all default: open - - &244 + - &245 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -17733,7 +17766,7 @@ paths: type: array items: *85 examples: - default: &245 + default: &246 value: - id: 1 node_id: MDU6SXNzdWUx @@ -19118,14 +19151,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &341 + - &342 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &342 + - &343 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -19187,7 +19220,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &345 + '301': &346 description: Moved permanently content: application/json: @@ -19209,7 +19242,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &578 + - &579 name: all description: If `true`, show notifications marked as read. in: query @@ -19217,7 +19250,7 @@ paths: schema: type: boolean default: false - - &579 + - &580 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -19227,7 +19260,7 @@ paths: type: boolean default: false - *92 - - &580 + - &581 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: @@ -19263,7 +19296,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &210 + properties: &211 id: type: integer format: int64 @@ -19549,7 +19582,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &296 + security_and_analysis: &297 nullable: true type: object properties: @@ -19662,7 +19695,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &211 + required: &212 - archive_url - assignees_url - blobs_url @@ -19750,7 +19783,7 @@ paths: - url - subscription_url examples: - default: &581 + default: &582 value: - id: '1' repository: @@ -21297,7 +21330,7 @@ paths: required: false schema: type: string - - &726 + - &727 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -21443,7 +21476,7 @@ paths: parameters: - *75 - *123 - - &727 + - &728 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 @@ -21555,7 +21588,7 @@ paths: - *123 - *125 - *124 - - &728 + - &729 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -21563,7 +21596,7 @@ paths: schema: type: string - *126 - - &729 + - &730 name: sku description: The SKU to query for usage. in: query @@ -22465,7 +22498,7 @@ paths: type: integer repository_cache_usages: type: array - items: &352 + items: &353 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -23781,7 +23814,7 @@ paths: - all - local_only - selected - selected_actions_url: &358 + selected_actions_url: &359 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` @@ -23864,7 +23897,7 @@ paths: description: Response content: application/json: - schema: &362 + schema: &363 type: object properties: days: @@ -23906,7 +23939,7 @@ paths: required: true content: application/json: - schema: &363 + schema: &364 type: object properties: days: @@ -23963,7 +23996,7 @@ paths: required: - approval_policy examples: - default: &364 + default: &365 value: approval_policy: first_time_contributors '404': *6 @@ -24022,7 +24055,7 @@ paths: description: Response content: application/json: - schema: &365 + schema: &366 type: object required: - run_workflows_from_fork_pull_requests @@ -24076,7 +24109,7 @@ paths: required: true content: application/json: - schema: &366 + schema: &367 type: object required: - run_workflows_from_fork_pull_requests @@ -24711,7 +24744,7 @@ paths: description: Response content: application/json: - schema: &367 + schema: &368 type: object properties: default_workflow_permissions: &153 @@ -24762,7 +24795,7 @@ paths: required: false content: application/json: - schema: &368 + schema: &369 type: object properties: default_workflow_permissions: *153 @@ -25893,7 +25926,7 @@ paths: application/json: schema: type: array - items: &369 + items: &370 title: Runner Application description: Runner Application type: object @@ -25918,7 +25951,7 @@ paths: - download_url - filename examples: - default: &370 + default: &371 value: - os: osx architecture: x64 @@ -26004,7 +26037,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &371 + '201': &372 description: Response content: application/json: @@ -26115,7 +26148,7 @@ paths: - token - expires_at examples: - default: &372 + default: &373 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -26154,7 +26187,7 @@ paths: application/json: schema: *164 examples: - default: &373 + default: &374 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -26188,7 +26221,7 @@ paths: application/json: schema: *162 examples: - default: &374 + default: &375 value: id: 23 name: MBP @@ -26414,7 +26447,7 @@ paths: - *75 - *161 responses: - '200': &375 + '200': &376 description: Response content: application/json: @@ -26471,7 +26504,7 @@ paths: parameters: - *75 - *161 - - &376 + - &377 name: name description: The name of a self-hosted runner's custom label. in: path @@ -26601,7 +26634,7 @@ paths: description: Response content: application/json: - schema: &388 + schema: &389 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -26630,7 +26663,7 @@ paths: - key_id - key examples: - default: &389 + default: &390 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27043,7 +27076,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *75 - - &357 + - &358 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)." @@ -28239,12 +28272,12 @@ paths: required: - subject_digests examples: - default: &708 + default: &709 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &709 + withPredicateType: &710 value: subject_digests: - sha256:abc123 @@ -28302,7 +28335,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &710 + default: &711 value: attestations_subject_digests: - sha256:abc: @@ -28652,7 +28685,7 @@ paths: initiator: type: string examples: - default: &402 + default: &403 value: attestations: - bundle: @@ -29003,7 +29036,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &256 + properties: &257 id: description: Unique identifier of the team type: integer @@ -29075,7 +29108,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &257 + required: &258 - id - node_id - url @@ -29581,7 +29614,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *75 - - &427 + - &428 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`, @@ -29591,7 +29624,7 @@ paths: schema: &185 type: string description: The name of the tool used to generate the code scanning analysis. - - &428 + - &429 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 @@ -29614,7 +29647,7 @@ paths: be returned. in: query required: false - schema: &430 + schema: &431 type: string description: State of a code scanning alert. enum: @@ -29637,7 +29670,7 @@ paths: be returned. in: query required: false - schema: &431 + schema: &432 type: string description: Severity of a code scanning alert. enum: @@ -29671,7 +29704,7 @@ paths: updated_at: *180 url: *181 html_url: *182 - instances_url: &432 + instances_url: &433 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -29694,7 +29727,7 @@ paths: required: *21 nullable: true dismissed_at: *184 - dismissed_reason: &433 + dismissed_reason: &434 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -29703,13 +29736,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &434 + dismissed_comment: &435 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &435 + rule: &436 type: object properties: id: @@ -29762,7 +29795,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &436 + tool: &437 type: object properties: name: *185 @@ -29772,26 +29805,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *186 - most_recent_instance: &437 + most_recent_instance: &438 type: object properties: - ref: &429 + ref: &430 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &447 + analysis_key: &448 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: &448 + environment: &449 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: &449 + category: &450 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -29811,7 +29844,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: &450 + location: &451 type: object description: Describe a region within a file for the alert. properties: @@ -29832,7 +29865,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: &451 + items: &452 type: string description: A classification of the file. For example to identify it as generated. @@ -31123,7 +31156,7 @@ paths: type: integer codespaces: type: array - items: &246 + items: &247 type: object title: Codespace description: A codespace. @@ -31153,7 +31186,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &463 + properties: &464 name: type: string description: The name of the machine. @@ -31195,7 +31228,7 @@ paths: - ready - in_progress nullable: true - required: &464 + required: &465 - name - display_name - operating_system @@ -31400,7 +31433,7 @@ paths: - pulls_url - recent_folders examples: - default: &247 + default: &248 value: total_count: 3 codespaces: @@ -32063,7 +32096,7 @@ paths: - updated_at - visibility examples: - default: &465 + default: &466 value: total_count: 2 secrets: @@ -32101,7 +32134,7 @@ paths: description: Response content: application/json: - schema: &466 + schema: &467 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -32130,7 +32163,7 @@ paths: - key_id - key examples: - default: &467 + default: &468 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32162,7 +32195,7 @@ paths: application/json: schema: *194 examples: - default: &469 + default: &470 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -32629,7 +32662,7 @@ paths: currently being billed. seats: type: array - items: &249 + items: &250 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -33600,7 +33633,7 @@ paths: application/json: schema: type: array - items: &334 + items: &335 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -33907,7 +33940,7 @@ paths: - date additionalProperties: true examples: - default: &335 + default: &336 value: - date: '2024-06-24' total_active_users: 24 @@ -34009,7 +34042,7 @@ paths: '500': *55 '403': *29 '404': *6 - '422': &336 + '422': &337 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -34194,6 +34227,7 @@ paths: - *201 - *202 - *203 + - *204 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -34223,7 +34257,7 @@ paths: enum: - patch - deployment - - *204 + - *205 - name: runtime_risk in: query description: |- @@ -34232,8 +34266,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *205 - *206 + - *207 - *61 - *47 - *48 @@ -34245,9 +34279,9 @@ paths: application/json: schema: type: array - items: *207 + items: *208 examples: - default: *208 + default: *209 '304': *37 '400': *14 '403': *29 @@ -34291,7 +34325,7 @@ paths: type: integer secrets: type: array - items: &209 + items: &210 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -34368,7 +34402,7 @@ paths: description: Response content: application/json: - schema: &498 + schema: &499 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -34385,7 +34419,7 @@ paths: - key_id - key examples: - default: &499 + default: &500 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34415,7 +34449,7 @@ paths: description: Response content: application/json: - schema: *209 + schema: *210 examples: default: value: @@ -34714,7 +34748,7 @@ paths: application/json: schema: type: array - items: &259 + items: &260 title: Package description: A software package type: object @@ -34764,8 +34798,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *210 - required: *211 + properties: *211 + required: *212 nullable: true created_at: type: string @@ -34784,7 +34818,7 @@ paths: - created_at - updated_at examples: - default: &260 + default: &261 value: - id: 197 name: hello_docker @@ -34954,7 +34988,7 @@ paths: application/json: schema: type: array - items: &235 + items: &236 title: Organization Invitation description: Organization Invitation type: object @@ -35001,7 +35035,7 @@ paths: - invitation_teams_url - node_id examples: - default: &236 + default: &237 value: - id: 1 login: monalisa @@ -35068,7 +35102,7 @@ paths: application/json: schema: type: array - items: &212 + items: &213 title: Org Hook description: Org Hook type: object @@ -35239,9 +35273,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: - default: &213 + default: &214 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -35289,7 +35323,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *75 - - &214 + - &215 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. @@ -35302,9 +35336,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: - default: *213 + default: *214 '404': *6 x-github: githubCloudOnly: false @@ -35332,7 +35366,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *75 - - *214 + - *215 requestBody: required: false content: @@ -35377,7 +35411,7 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: default: value: @@ -35419,7 +35453,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *75 - - *214 + - *215 responses: '204': description: Response @@ -35447,7 +35481,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *75 - - *214 + - *215 responses: '200': description: Response @@ -35478,7 +35512,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *75 - - *214 + - *215 requestBody: required: false content: @@ -35529,10 +35563,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *75 - - *214 - - *17 - *215 + - *17 - *216 + - *217 responses: '200': description: Response @@ -35540,9 +35574,9 @@ paths: application/json: schema: type: array - items: *217 + items: *218 examples: - default: *218 + default: *219 '400': *14 '422': *15 x-github: @@ -35568,16 +35602,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *75 - - *214 + - *215 - *16 responses: '200': description: Response content: application/json: - schema: *219 + schema: *220 examples: - default: *220 + default: *221 '400': *14 '422': *15 x-github: @@ -35603,7 +35637,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *75 - - *214 + - *215 - *16 responses: '202': *39 @@ -35633,7 +35667,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *75 - - *214 + - *215 responses: '204': description: Response @@ -35656,7 +35690,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *75 - - &225 + - &226 name: actor_type in: path description: The type of the actor @@ -35669,14 +35703,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &226 + - &227 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &221 + - &222 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`.' @@ -35684,7 +35718,7 @@ paths: required: true schema: type: string - - &222 + - &223 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) @@ -35778,12 +35812,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *75 - - *221 - *222 + - *223 - *19 - *17 - *61 - - &231 + - &232 name: sort description: The property to sort the results by. in: query @@ -35861,14 +35895,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *75 - - *221 - *222 + - *223 responses: '200': description: Response content: application/json: - schema: &223 + schema: &224 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -35884,7 +35918,7 @@ paths: type: integer format: int64 examples: - default: &224 + default: &225 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -35905,23 +35939,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *75 - - &227 + - &228 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *221 - *222 + - *223 responses: '200': description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *224 + default: *225 x-github: enabledForGitHubApps: true category: orgs @@ -35940,18 +35974,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *75 - - *221 - *222 - - *225 + - *223 - *226 + - *227 responses: '200': description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *224 + default: *225 x-github: enabledForGitHubApps: true category: orgs @@ -35969,9 +36003,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *75 - - *221 - *222 - - &228 + - *223 + - &229 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -35984,7 +36018,7 @@ paths: description: Response content: application/json: - schema: &229 + schema: &230 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -36000,7 +36034,7 @@ paths: type: integer format: int64 examples: - default: &230 + default: &231 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -36037,18 +36071,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *75 - - *227 - - *221 - - *222 - *228 + - *222 + - *223 + - *229 responses: '200': description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 x-github: enabledForGitHubApps: true category: orgs @@ -36066,19 +36100,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *75 - - *225 - *226 - - *221 + - *227 - *222 - - *228 + - *223 + - *229 responses: '200': description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 x-github: enabledForGitHubApps: true category: orgs @@ -36096,13 +36130,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *75 - - *227 - - *221 + - *228 - *222 + - *223 - *19 - *17 - *61 - - *231 + - *232 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -36183,7 +36217,7 @@ paths: application/json: schema: *22 examples: - default: &537 + default: &538 value: id: 1 account: @@ -36349,12 +36383,12 @@ paths: application/json: schema: anyOf: - - &233 + - &234 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &232 + limit: &233 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -36379,7 +36413,7 @@ paths: properties: {} additionalProperties: false examples: - default: &234 + default: &235 value: limit: collaborators_only origin: organization @@ -36408,13 +36442,13 @@ paths: required: true content: application/json: - schema: &538 + schema: &539 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *232 + limit: *233 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -36438,9 +36472,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: *234 + default: *235 '422': *15 x-github: githubCloudOnly: false @@ -36516,9 +36550,9 @@ paths: application/json: schema: type: array - items: *235 + items: *236 examples: - default: *236 + default: *237 headers: Link: *67 '404': *6 @@ -36595,7 +36629,7 @@ paths: description: Response content: application/json: - schema: *235 + schema: *236 examples: default: value: @@ -36650,7 +36684,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *75 - - &237 + - &238 name: invitation_id description: The unique identifier of the invitation. in: path @@ -36681,7 +36715,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *75 - - *237 + - *238 - *17 - *19 responses: @@ -36693,7 +36727,7 @@ paths: type: array items: *197 examples: - default: &258 + default: &259 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -36736,7 +36770,7 @@ paths: application/json: schema: type: array - items: &238 + items: &239 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -36969,9 +37003,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: &239 + default: &240 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -37027,7 +37061,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *75 - - &240 + - &241 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -37126,9 +37160,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *239 + default: *240 '404': *6 '422': *7 x-github: @@ -37153,7 +37187,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *75 - - *240 + - *241 responses: '204': *191 '404': *6 @@ -37183,7 +37217,7 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: default: value: @@ -37268,9 +37302,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - default: &242 + default: &243 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -37303,7 +37337,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *75 - - &243 + - &244 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -37356,9 +37390,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - default: *242 + default: *243 '404': *6 '422': *7 x-github: @@ -37383,7 +37417,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *75 - - *243 + - *244 responses: '204': description: Response @@ -37446,7 +37480,7 @@ paths: - closed - all default: open - - *244 + - *245 - name: type description: Can be the name of an issue type. in: query @@ -37477,7 +37511,7 @@ paths: type: array items: *85 examples: - default: *245 + default: *246 headers: Link: *67 '404': *6 @@ -37636,9 +37670,9 @@ paths: type: integer codespaces: type: array - items: *246 + items: *247 examples: - default: *247 + default: *248 '304': *37 '500': *55 '401': *25 @@ -37665,7 +37699,7 @@ paths: parameters: - *75 - *71 - - &248 + - &249 name: codespace_name in: path required: true @@ -37700,15 +37734,15 @@ paths: parameters: - *75 - *71 - - *248 + - *249 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: &462 + default: &463 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -37888,7 +37922,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *249 + schema: *250 examples: default: value: @@ -37964,7 +37998,7 @@ paths: description: Response content: application/json: - schema: &250 + schema: &251 title: Org Membership description: Org Membership type: object @@ -38031,7 +38065,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &251 + response-if-user-has-an-active-admin-membership-with-organization: &252 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -38132,9 +38166,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: - response-if-user-already-had-membership-with-organization: *251 + response-if-user-already-had-membership-with-organization: *252 '422': *15 '403': *29 x-github: @@ -38205,7 +38239,7 @@ paths: application/json: schema: type: array - items: &252 + items: &253 title: Migration description: A migration. type: object @@ -38534,7 +38568,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -38713,7 +38747,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *75 - - &253 + - &254 name: migration_id description: The unique identifier of the migration. in: path @@ -38740,7 +38774,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -38910,7 +38944,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *75 - - *253 + - *254 responses: '302': description: Response @@ -38932,7 +38966,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *75 - - *253 + - *254 responses: '204': description: Response @@ -38956,8 +38990,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *75 - - *253 - - &691 + - *254 + - &692 name: repo_name description: repo_name parameter in: path @@ -38985,7 +39019,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *75 - - *253 + - *254 - *17 - *19 responses: @@ -38997,7 +39031,7 @@ paths: type: array items: *160 examples: - default: &265 + default: &266 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -39152,7 +39186,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &255 + items: &256 title: Organization Role description: Organization roles type: object @@ -39327,7 +39361,7 @@ paths: parameters: - *75 - *77 - - &254 + - &255 name: role_id description: The unique identifier of the role. in: path @@ -39364,7 +39398,7 @@ paths: parameters: - *75 - *77 - - *254 + - *255 responses: '204': description: Response @@ -39417,7 +39451,7 @@ paths: parameters: - *75 - *71 - - *254 + - *255 responses: '204': description: Response @@ -39449,7 +39483,7 @@ paths: parameters: - *75 - *71 - - *254 + - *255 responses: '204': description: Response @@ -39478,13 +39512,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *75 - - *254 + - *255 responses: '200': description: Response content: application/json: - schema: *255 + schema: *256 examples: default: value: @@ -39535,7 +39569,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *75 - - *254 + - *255 - *17 - *19 responses: @@ -39613,8 +39647,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *256 - required: *257 + properties: *257 + required: *258 nullable: true type: description: The ownership type of the team @@ -39646,7 +39680,7 @@ paths: - type - parent examples: - default: *258 + default: *259 headers: Link: *67 '404': @@ -39676,7 +39710,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *75 - - *254 + - *255 - *17 - *19 responses: @@ -39704,13 +39738,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &330 + items: &331 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *256 - required: *257 + properties: *257 + required: *258 name: nullable: true type: string @@ -39998,7 +40032,7 @@ paths: - nuget - container - *75 - - &692 + - &693 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -40034,12 +40068,12 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: *260 + default: *261 '403': *29 '401': *25 - '400': &694 + '400': &695 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -40061,7 +40095,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &261 + - &262 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 @@ -40079,7 +40113,7 @@ paths: - docker - nuget - container - - &262 + - &263 name: package_name description: The name of the package. in: path @@ -40092,7 +40126,7 @@ paths: description: Response content: application/json: - schema: *259 + schema: *260 examples: default: value: @@ -40144,8 +40178,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *261 - *262 + - *263 - *75 responses: '204': @@ -40178,8 +40212,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *261 - *262 + - *263 - *75 - name: token description: package token @@ -40212,8 +40246,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: - - *261 - *262 + - *263 - *75 - *19 - *17 @@ -40234,7 +40268,7 @@ paths: application/json: schema: type: array - items: &263 + items: &264 title: Package Version description: A version of a software package type: object @@ -40359,10 +40393,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *261 - *262 + - *263 - *75 - - &264 + - &265 name: package_version_id description: Unique identifier of the package version. in: path @@ -40374,7 +40408,7 @@ paths: description: Response content: application/json: - schema: *263 + schema: *264 examples: default: value: @@ -40410,10 +40444,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *261 - *262 + - *263 - *75 - - *264 + - *265 responses: '204': description: Response @@ -40445,10 +40479,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *261 - *262 + - *263 - *75 - - *264 + - *265 responses: '204': description: Response @@ -40478,7 +40512,7 @@ paths: - *75 - *17 - *19 - - &266 + - &267 name: sort description: The property by which to sort the results. in: query @@ -40489,7 +40523,7 @@ paths: - created_at default: created_at - *61 - - &267 + - &268 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -40500,7 +40534,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &268 + - &269 name: repository description: The name of the repository to use to filter the results. in: query @@ -40508,7 +40542,7 @@ paths: schema: type: string example: Hello-World - - &269 + - &270 name: permission description: The permission to use to filter the results. in: query @@ -40516,7 +40550,7 @@ paths: schema: type: string example: issues_read - - &270 + - &271 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) @@ -40526,7 +40560,7 @@ paths: schema: type: string format: date-time - - &271 + - &272 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) @@ -40536,7 +40570,7 @@ paths: schema: type: string format: date-time - - &272 + - &273 name: token_id description: The ID of the token in: query @@ -40849,7 +40883,7 @@ paths: type: array items: *160 examples: - default: *265 + default: *266 headers: Link: *67 x-github: @@ -40875,14 +40909,14 @@ paths: - *75 - *17 - *19 - - *266 - - *61 - *267 + - *61 - *268 - *269 - *270 - *271 - *272 + - *273 responses: '500': *55 '422': *15 @@ -41164,7 +41198,7 @@ paths: type: array items: *160 examples: - default: *265 + default: *266 headers: Link: *67 x-github: @@ -41206,7 +41240,7 @@ paths: type: integer configurations: type: array - items: &273 + items: &274 title: Organization private registry description: Private registry configuration for an organization type: object @@ -41634,7 +41668,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &274 + org-private-registry-with-selected-visibility: &275 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -41730,9 +41764,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *273 + schema: *274 examples: - default: *274 + default: *275 '404': *6 x-github: githubCloudOnly: false @@ -41959,7 +41993,7 @@ paths: application/json: schema: type: array - items: &275 + items: &276 title: Projects v2 Project description: A projects v2 project type: object @@ -42029,7 +42063,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &782 + properties: &783 id: type: number description: The unique identifier of the status update. @@ -42077,7 +42111,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &783 + required: &784 - id - node_id - created_at @@ -42102,7 +42136,7 @@ paths: - deleted_at - deleted_by examples: - default: &276 + default: &277 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -42205,7 +42239,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &277 + - &278 name: project_number description: The project's number. in: path @@ -42218,9 +42252,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: *276 + default: *277 headers: Link: *67 '304': *37 @@ -42243,7 +42277,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *75 - - *277 + - *278 requestBody: required: true description: Details of the draft item to create in the project. @@ -42277,7 +42311,7 @@ paths: description: Response content: application/json: - schema: &283 + schema: &284 title: Projects v2 Item description: An item belonging to a project type: object @@ -42291,7 +42325,7 @@ paths: content: oneOf: - *85 - - &479 + - &480 title: Pull Request Simple description: Pull Request Simple type: object @@ -42397,8 +42431,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *278 - required: *279 + properties: *279 + required: *280 nullable: true active_lock_reason: type: string @@ -42491,7 +42525,7 @@ paths: _links: type: object properties: - comments: &280 + comments: &281 title: Link description: Hypermedia Link type: object @@ -42500,13 +42534,13 @@ paths: type: string required: - href - commits: *280 - statuses: *280 - html: *280 - issue: *280 - review_comments: *280 - review_comment: *280 - self: *280 + commits: *281 + statuses: *281 + html: *281 + issue: *281 + review_comments: *281 + review_comment: *281 + self: *281 required: - comments - commits @@ -42517,7 +42551,7 @@ paths: - review_comment - self author_association: *82 - auto_merge: &588 + auto_merge: &589 title: Auto merge description: The status of auto merging a pull request. type: object @@ -42619,7 +42653,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &282 + content_type: &283 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -42659,7 +42693,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &284 + draft_issue: &285 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -42733,7 +42767,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *277 + - *278 - *75 - *17 - *47 @@ -42745,7 +42779,7 @@ paths: application/json: schema: type: array - items: &281 + items: &282 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -42895,7 +42929,7 @@ paths: - updated_at - project_url examples: - default: &713 + default: &714 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43025,7 +43059,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *277 + - *278 - *75 requestBody: required: true @@ -43072,7 +43106,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &714 + items: &715 type: object properties: name: @@ -43109,7 +43143,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &715 + iteration_configuration: &716 type: object description: The configuration for iteration fields. properties: @@ -43159,7 +43193,7 @@ paths: value: name: Due date data_type: date - single_select_field: &716 + single_select_field: &717 summary: Create a single select field value: name: Priority @@ -43186,7 +43220,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &717 + iteration_field: &718 summary: Create an iteration field value: name: Sprint @@ -43210,9 +43244,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *281 + schema: *282 examples: - text_field: &718 + text_field: &719 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -43221,7 +43255,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: &719 + number_field: &720 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -43230,7 +43264,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: &720 + date_field: &721 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -43239,7 +43273,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: &721 + single_select_field: &722 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43273,7 +43307,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &722 + iteration_field: &723 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -43318,8 +43352,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *277 - - &723 + - *278 + - &724 name: field_id description: The unique identifier of the field. in: path @@ -43332,9 +43366,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *282 examples: - default: &724 + default: &725 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43390,7 +43424,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *277 + - *278 - *75 - 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) @@ -43423,7 +43457,7 @@ paths: application/json: schema: type: array - items: &285 + items: &286 title: Projects v2 Item description: An item belonging to a project type: object @@ -43439,7 +43473,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *282 + content_type: *283 content: type: object additionalProperties: true @@ -43482,7 +43516,7 @@ paths: - updated_at - archived_at examples: - default: &286 + default: &287 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -44180,7 +44214,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *75 - - *277 + - *278 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -44250,22 +44284,22 @@ paths: description: Response content: application/json: - schema: *283 + schema: *284 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *284 + value: *285 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *284 + value: *285 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *284 + value: *285 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *284 + value: *285 '304': *37 '403': *29 '401': *25 @@ -44285,9 +44319,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *277 + - *278 - *75 - - &287 + - &288 name: item_id description: The unique identifier of the project item. in: path @@ -44313,9 +44347,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 headers: Link: *67 '304': *37 @@ -44336,9 +44370,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *277 + - *278 - *75 - - *287 + - *288 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -44408,13 +44442,13 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - text_field: *286 - number_field: *286 - date_field: *286 - single_select_field: *286 - iteration_field: *286 + text_field: *287 + number_field: *287 + date_field: *287 + single_select_field: *287 + iteration_field: *287 '401': *25 '403': *29 '404': *6 @@ -44434,9 +44468,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *277 + - *278 - *75 - - *287 + - *288 responses: '204': description: Response @@ -44460,7 +44494,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *75 - - *277 + - *278 requestBody: required: true content: @@ -44531,7 +44565,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &705 + schema: &706 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -44629,7 +44663,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &288 + value: &289 value: id: 1 number: 1 @@ -44675,10 +44709,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *288 + value: *289 roadmap_view: summary: Response for creating a roadmap view - value: *288 + value: *289 '304': *37 '403': *29 '401': *25 @@ -44706,9 +44740,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *277 + - *278 - *75 - - &725 + - &726 name: view_number description: The number that identifies the project view. in: path @@ -44740,9 +44774,9 @@ paths: application/json: schema: type: array - items: *285 + items: *286 examples: - default: *286 + default: *287 headers: Link: *67 '304': *37 @@ -44775,7 +44809,7 @@ paths: application/json: schema: type: array - items: &289 + items: &290 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -44843,7 +44877,7 @@ paths: - property_name - value_type examples: - default: &290 + default: &291 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -44903,7 +44937,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *289 + items: *290 minItems: 1 maxItems: 100 required: @@ -44933,9 +44967,9 @@ paths: application/json: schema: type: array - items: *289 + items: *290 examples: - default: *290 + default: *291 '403': *29 '404': *6 x-github: @@ -44957,7 +44991,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *75 - - &291 + - &292 name: custom_property_name description: The custom property name in: path @@ -44969,9 +45003,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *290 examples: - default: &292 + default: &293 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -45006,7 +45040,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *75 - - *291 + - *292 requestBody: required: true content: @@ -45077,9 +45111,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *290 examples: - default: *292 + default: *293 '403': *29 '404': *6 x-github: @@ -45103,7 +45137,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *75 - - *291 + - *292 responses: '204': *191 '403': *29 @@ -45164,7 +45198,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &293 + items: &294 title: Custom Property Value description: Custom property name and associated value type: object @@ -45251,7 +45285,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *293 + items: *294 required: - repository_names - properties @@ -45443,7 +45477,7 @@ paths: type: array items: *160 examples: - default: *265 + default: *266 headers: Link: *67 x-github: @@ -45645,7 +45679,7 @@ paths: description: Response content: application/json: - schema: &344 + schema: &345 title: Full Repository description: Full Repository type: object @@ -45933,8 +45967,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *294 - required: *295 + properties: *295 + required: *296 nullable: true temp_clone_token: type: string @@ -46049,7 +46083,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &484 + properties: &485 url: type: string format: uri @@ -46065,12 +46099,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &485 + required: &486 - url - key - name - html_url - security_and_analysis: *296 + security_and_analysis: *297 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -46154,7 +46188,7 @@ paths: - network_count - subscribers_count examples: - default: &346 + default: &347 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -46675,7 +46709,7 @@ paths: - *75 - *17 - *19 - - &610 + - &611 name: targets description: | A comma-separated list of rule targets to filter by. @@ -46693,7 +46727,7 @@ paths: application/json: schema: type: array - items: &323 + items: &324 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -46728,7 +46762,7 @@ paths: source: type: string description: The name of the source - enforcement: &299 + enforcement: &300 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -46741,7 +46775,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &300 + items: &301 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -46811,7 +46845,7 @@ paths: conditions: nullable: true anyOf: - - &297 + - &298 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -46835,7 +46869,7 @@ paths: match. items: type: string - - &301 + - &302 title: Organization ruleset conditions type: object description: |- @@ -46849,7 +46883,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *297 + - *298 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -46883,7 +46917,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *297 + - *298 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -46905,7 +46939,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *297 + - *298 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -46918,7 +46952,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &298 + items: &299 title: Repository ruleset property targeting definition type: object @@ -46951,17 +46985,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *298 + items: *299 required: - repository_property rules: type: array - items: &611 + items: &612 title: Repository Rule type: object description: A repository rule. oneOf: - - &302 + - &303 title: creation description: Only allow users with bypass permission to create matching refs. @@ -46973,7 +47007,7 @@ paths: type: string enum: - creation - - &303 + - &304 title: update description: Only allow users with bypass permission to update matching refs. @@ -46994,7 +47028,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &304 + - &305 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -47006,7 +47040,7 @@ paths: type: string enum: - deletion - - &305 + - &306 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -47018,7 +47052,7 @@ paths: type: string enum: - required_linear_history - - &609 + - &610 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -47096,7 +47130,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &306 + - &307 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -47120,7 +47154,7 @@ paths: type: string required: - required_deployment_environments - - &307 + - &308 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -47132,7 +47166,7 @@ paths: type: string enum: - required_signatures - - &308 + - &309 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -47238,7 +47272,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &309 + - &310 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -47286,7 +47320,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &310 + - &311 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -47298,7 +47332,7 @@ paths: type: string enum: - non_fast_forward - - &311 + - &312 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -47335,7 +47369,7 @@ paths: required: - operator - pattern - - &312 + - &313 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -47372,7 +47406,7 @@ paths: required: - operator - pattern - - &313 + - &314 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -47409,7 +47443,7 @@ paths: required: - operator - pattern - - &314 + - &315 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -47446,7 +47480,7 @@ paths: required: - operator - pattern - - &315 + - &316 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -47483,7 +47517,7 @@ paths: required: - operator - pattern - - &316 + - &317 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -47508,7 +47542,7 @@ paths: type: string required: - restricted_file_paths - - &317 + - &318 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -47532,7 +47566,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &318 + - &319 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -47555,7 +47589,7 @@ paths: type: string required: - restricted_file_extensions - - &319 + - &320 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -47580,7 +47614,7 @@ paths: maximum: 100 required: - max_file_size - - &320 + - &321 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -47630,7 +47664,7 @@ paths: - repository_id required: - workflows - - &321 + - &322 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -47691,7 +47725,7 @@ paths: - tool required: - code_scanning_tools - - &322 + - &323 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -47790,21 +47824,20 @@ paths: - push - repository default: branch - enforcement: *299 + enforcement: *300 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *300 - conditions: *301 + items: *301 + conditions: *302 rules: type: array description: An array of rules within the ruleset. - items: &325 + items: &326 title: Repository Rule type: object description: A repository rule. oneOf: - - *302 - *303 - *304 - *305 @@ -47825,6 +47858,7 @@ paths: - *320 - *321 - *322 + - *323 required: - name - enforcement @@ -47862,9 +47896,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: &324 + default: &325 value: id: 21 name: super cool ruleset @@ -47920,7 +47954,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *75 - - &612 + - &613 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 @@ -47935,7 +47969,7 @@ paths: in: query schema: type: string - - &613 + - &614 name: time_period description: |- The time period to filter by. @@ -47951,14 +47985,14 @@ paths: - week - month default: day - - &614 + - &615 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 - - &615 + - &616 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -47978,7 +48012,7 @@ paths: description: Response content: application/json: - schema: &616 + schema: &617 title: Rule Suites description: Response type: array @@ -48033,7 +48067,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &617 + default: &618 value: - id: 21 actor_id: 12 @@ -48077,7 +48111,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *75 - - &618 + - &619 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -48093,7 +48127,7 @@ paths: description: Response content: application/json: - schema: &619 + schema: &620 title: Rule Suite description: Response type: object @@ -48192,7 +48226,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &620 + default: &621 value: id: 21 actor_id: 12 @@ -48265,9 +48299,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: *324 + default: *325 '404': *6 '500': *55 put: @@ -48311,16 +48345,16 @@ paths: - tag - push - repository - enforcement: *299 + enforcement: *300 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *300 - conditions: *301 + items: *301 + conditions: *302 rules: description: An array of rules within the ruleset. type: array - items: *325 + items: *326 examples: default: value: @@ -48355,9 +48389,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: *324 + default: *325 '404': *6 '422': *15 '500': *55 @@ -48415,7 +48449,7 @@ paths: application/json: schema: type: array - items: &326 + items: &327 title: Ruleset version type: object description: The historical version of a ruleset @@ -48439,7 +48473,7 @@ paths: type: string format: date-time examples: - default: &622 + default: &623 value: - version_id: 3 actor: @@ -48492,9 +48526,9 @@ paths: description: Response content: application/json: - schema: &623 + schema: &624 allOf: - - *326 + - *327 - type: object required: - state @@ -48564,7 +48598,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *75 - - &624 + - &625 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -48575,7 +48609,7 @@ paths: enum: - open - resolved - - &625 + - &626 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -48585,7 +48619,7 @@ paths: required: false schema: type: string - - &626 + - &627 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -48594,7 +48628,7 @@ paths: required: false schema: type: string - - &627 + - &628 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -48613,7 +48647,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &628 + - &629 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. @@ -48628,7 +48662,7 @@ paths: - *61 - *19 - *17 - - &629 + - &630 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 @@ -48638,7 +48672,7 @@ paths: required: false schema: type: string - - &630 + - &631 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 @@ -48648,7 +48682,7 @@ paths: required: false schema: type: string - - &631 + - &632 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -48657,7 +48691,7 @@ paths: required: false schema: type: string - - &632 + - &633 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -48666,7 +48700,7 @@ paths: schema: type: boolean default: false - - &633 + - &634 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -48675,7 +48709,7 @@ paths: schema: type: boolean default: false - - &634 + - &635 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -48710,14 +48744,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &635 + state: &636 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: &636 + resolution: &637 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -48824,8 +48858,8 @@ paths: pull request. ' - oneOf: &637 - - &639 + oneOf: &638 + - &640 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -48883,7 +48917,7 @@ paths: - blob_url - commit_sha - commit_url - - &640 + - &641 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. @@ -48938,7 +48972,7 @@ paths: - page_url - commit_sha - commit_url - - &641 + - &642 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -48958,7 +48992,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &642 + - &643 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -48978,7 +49012,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &643 + - &644 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -48998,7 +49032,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &644 + - &645 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -49012,7 +49046,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &645 + - &646 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -49026,7 +49060,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &646 + - &647 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -49040,7 +49074,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &647 + - &648 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. @@ -49060,7 +49094,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &648 + - &649 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. @@ -49080,7 +49114,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &649 + - &650 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. @@ -49100,7 +49134,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &650 + - &651 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. @@ -49120,7 +49154,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &651 + - &652 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 request. @@ -49383,7 +49417,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &328 + pattern_config_version: &329 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -49392,7 +49426,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &327 + items: &328 type: object properties: token_type: @@ -49458,7 +49492,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *327 + items: *328 examples: default: value: @@ -49515,7 +49549,7 @@ paths: schema: type: object properties: - pattern_config_version: *328 + pattern_config_version: *329 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -49541,7 +49575,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *328 + custom_pattern_version: *329 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -49639,7 +49673,7 @@ paths: application/json: schema: type: array - items: &655 + items: &656 description: A repository security advisory. type: object properties: @@ -49859,7 +49893,7 @@ paths: login: type: string description: The username of the user credited. - type: *329 + type: *330 credits_detailed: type: array nullable: true @@ -49869,7 +49903,7 @@ paths: type: object properties: user: *4 - type: *329 + type: *330 state: type: string description: The state of the user's acceptance of the @@ -49930,7 +49964,7 @@ paths: - private_fork additionalProperties: false examples: - default: &656 + default: &657 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -50317,7 +50351,7 @@ paths: application/json: schema: type: array - items: *330 + items: *331 examples: default: value: @@ -50670,7 +50704,7 @@ paths: type: integer network_configurations: type: array - items: &331 + items: &332 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -50816,9 +50850,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: &332 + default: &333 value: id: 123456789ABCDEF name: My network configuration @@ -50847,7 +50881,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *75 - - &333 + - &334 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -50859,9 +50893,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: *332 + default: *333 headers: Link: *67 x-github: @@ -50883,7 +50917,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *75 - - *333 + - *334 requestBody: required: true content: @@ -50936,9 +50970,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: *332 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50958,7 +50992,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *75 - - *333 + - *334 responses: '204': description: Response @@ -51098,13 +51132,13 @@ paths: application/json: schema: type: array - items: *334 + items: *335 examples: - default: *335 + default: *336 '500': *55 '403': *29 '404': *6 - '422': *336 + '422': *337 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51146,7 +51180,7 @@ paths: type: array items: *197 examples: - default: *258 + default: *259 headers: Link: *67 '403': *29 @@ -51240,7 +51274,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &338 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -51303,8 +51337,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *256 - required: *257 + properties: *257 + required: *258 nullable: true members_count: type: integer @@ -51567,7 +51601,7 @@ paths: - repos_count - organization examples: - default: &338 + default: &339 value: id: 1 node_id: MDQ6VGVhbTE= @@ -51644,9 +51678,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 '404': *6 x-github: githubCloudOnly: false @@ -51730,16 +51764,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 '201': description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 '404': *6 '422': *15 '403': *29 @@ -51769,7 +51803,7 @@ paths: responses: '204': description: Response - '422': &339 + '422': &340 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -51803,12 +51837,12 @@ paths: application/json: schema: type: array - items: *235 + items: *236 examples: - default: *236 + default: *237 headers: Link: *67 - '422': *339 + '422': *340 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51890,7 +51924,7 @@ paths: description: Response content: application/json: - schema: &340 + schema: &341 title: Team Membership description: Team Membership type: object @@ -51917,7 +51951,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &672 + response-if-user-is-a-team-maintainer: &673 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -51980,9 +52014,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - response-if-users-membership-with-team-is-now-pending: &673 + response-if-users-membership-with-team-is-now-pending: &674 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -52058,7 +52092,7 @@ paths: type: array items: *160 examples: - default: *265 + default: *266 headers: Link: *67 x-github: @@ -52089,14 +52123,14 @@ paths: parameters: - *75 - *77 - - *341 - *342 + - *343 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &674 + schema: &675 title: Team Repository description: A team's access to a repository. type: object @@ -52667,8 +52701,8 @@ paths: parameters: - *75 - *77 - - *341 - *342 + - *343 requestBody: required: false content: @@ -52715,8 +52749,8 @@ paths: parameters: - *75 - *77 - - *341 - *342 + - *343 responses: '204': description: Response @@ -52753,7 +52787,7 @@ paths: type: array items: *197 examples: - response-if-child-teams-exist: &675 + response-if-child-teams-exist: &676 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -52907,7 +52941,7 @@ paths: resources: type: object properties: - core: &343 + core: &344 title: Rate Limit type: object properties: @@ -52924,21 +52958,21 @@ paths: - remaining - reset - used - graphql: *343 - search: *343 - code_search: *343 - source_import: *343 - integration_manifest: *343 - code_scanning_upload: *343 - actions_runner_registration: *343 - scim: *343 - dependency_snapshots: *343 - dependency_sbom: *343 - code_scanning_autofix: *343 + graphql: *344 + search: *344 + code_search: *344 + source_import: *344 + integration_manifest: *344 + code_scanning_upload: *344 + actions_runner_registration: *344 + scim: *344 + dependency_snapshots: *344 + dependency_sbom: *344 + code_scanning_autofix: *344 required: - core - search - rate: *343 + rate: *344 required: - rate - resources @@ -53043,14 +53077,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *344 + schema: *345 examples: default-response: summary: Default response @@ -53555,7 +53589,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *345 + '301': *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53573,8 +53607,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: false content: @@ -53865,10 +53899,10 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *346 - '307': &347 + default: *347 + '307': &348 description: Temporary Redirect content: application/json: @@ -53897,8 +53931,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -53920,7 +53954,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *347 + '307': *348 '404': *6 '409': *54 x-github: @@ -53944,11 +53978,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *341 - *342 + - *343 - *17 - *19 - - &380 + - &381 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -53971,7 +54005,7 @@ paths: type: integer artifacts: type: array - items: &348 + items: &349 title: Artifact description: An artifact type: object @@ -54049,7 +54083,7 @@ paths: - expires_at - updated_at examples: - default: &381 + default: &382 value: total_count: 2 artifacts: @@ -54110,9 +54144,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *341 - *342 - - &349 + - *343 + - &350 name: artifact_id description: The unique identifier of the artifact. in: path @@ -54124,7 +54158,7 @@ paths: description: Response content: application/json: - schema: *348 + schema: *349 examples: default: value: @@ -54162,9 +54196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *341 - *342 - - *349 + - *343 + - *350 responses: '204': description: Response @@ -54188,9 +54222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *341 - *342 - - *349 + - *343 + - *350 - name: archive_format in: path required: true @@ -54204,7 +54238,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': &541 + '410': &542 description: Gone content: application/json: @@ -54229,14 +54263,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: &350 + schema: &351 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -54269,13 +54303,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: application/json: - schema: *350 + schema: *351 examples: selected_actions: *42 responses: @@ -54304,14 +54338,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: &351 + schema: &352 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -54344,13 +54378,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: application/json: - schema: *351 + schema: *352 examples: selected_actions: *44 responses: @@ -54381,14 +54415,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *352 + schema: *353 examples: default: value: @@ -54414,11 +54448,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *341 - *342 + - *343 - *17 - *19 - - &353 + - &354 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 @@ -54452,7 +54486,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &355 title: Repository actions caches description: Repository actions caches type: object @@ -54494,7 +54528,7 @@ paths: - total_count - actions_caches examples: - default: &355 + default: &356 value: total_count: 1 actions_caches: @@ -54526,23 +54560,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: - - *341 - *342 + - *343 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *353 + - *354 responses: '200': description: Response content: application/json: - schema: *354 + schema: *355 examples: - default: *355 + default: *356 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54562,8 +54596,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: - - *341 - *342 + - *343 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -54594,9 +54628,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *341 - *342 - - &356 + - *343 + - &357 name: job_id description: The unique identifier of the job. in: path @@ -54608,7 +54642,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &385 title: Job description: Information of a job execution in a workflow run type: object @@ -54915,9 +54949,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *341 - *342 - - *356 + - *343 + - *357 responses: '302': description: Response @@ -54945,9 +54979,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *341 - *342 - - *356 + - *343 + - *357 requestBody: required: false content: @@ -54992,8 +55026,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: - - *341 - *342 + - *343 responses: '200': description: Status response @@ -55043,8 +55077,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: - - *341 - *342 + - *343 requestBody: required: true content: @@ -55107,8 +55141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -55126,7 +55160,7 @@ paths: type: integer secrets: type: array - items: &386 + items: &387 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -55146,7 +55180,7 @@ paths: - created_at - updated_at examples: - default: &387 + default: &388 value: total_count: 2 secrets: @@ -55179,9 +55213,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *341 - *342 - - *357 + - *343 + - *358 - *19 responses: '200': @@ -55198,7 +55232,7 @@ paths: type: integer variables: type: array - items: &390 + items: &391 title: Actions Variable type: object properties: @@ -55228,7 +55262,7 @@ paths: - created_at - updated_at examples: - default: &391 + default: &392 value: total_count: 2 variables: @@ -55261,8 +55295,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -55271,11 +55305,11 @@ paths: schema: type: object properties: - enabled: &359 + enabled: &360 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *145 - selected_actions_url: *358 + selected_actions_url: *359 sha_pinning_required: *146 required: - enabled @@ -55304,8 +55338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -55316,7 +55350,7 @@ paths: schema: type: object properties: - enabled: *359 + enabled: *360 allowed_actions: *145 sha_pinning_required: *146 required: @@ -55348,14 +55382,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: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: &360 + schema: &361 type: object properties: access_level: @@ -55372,7 +55406,7 @@ paths: required: - access_level examples: - default: &361 + default: &362 value: access_level: organization x-github: @@ -55396,15 +55430,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: - - *341 - *342 + - *343 requestBody: required: true content: application/json: - schema: *360 + schema: *361 examples: - default: *361 + default: *362 responses: '204': description: Response @@ -55428,14 +55462,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *362 + schema: *363 examples: default: value: @@ -55459,8 +55493,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Empty response for successful settings update @@ -55470,7 +55504,7 @@ paths: required: true content: application/json: - schema: *363 + schema: *364 examples: default: summary: Set retention days @@ -55494,8 +55528,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -55503,7 +55537,7 @@ paths: application/json: schema: *147 examples: - default: *364 + default: *365 '404': *6 x-github: enabledForGitHubApps: true @@ -55522,8 +55556,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -55557,14 +55591,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: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *365 + schema: *366 examples: default: *148 '403': *29 @@ -55586,13 +55620,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: - - *341 - *342 + - *343 requestBody: required: true content: application/json: - schema: *366 + schema: *367 examples: default: *148 responses: @@ -55618,8 +55652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -55646,8 +55680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -55679,14 +55713,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *367 + schema: *368 examples: default: *155 x-github: @@ -55709,8 +55743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Success response @@ -55721,7 +55755,7 @@ paths: required: true content: application/json: - schema: *368 + schema: *369 examples: default: *155 x-github: @@ -55750,8 +55784,8 @@ paths: in: query schema: type: string - - *341 - *342 + - *343 - *17 - *19 responses: @@ -55795,8 +55829,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -55804,9 +55838,9 @@ paths: application/json: schema: type: array - items: *369 + items: *370 examples: - default: *370 + default: *371 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55828,8 +55862,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: - - *341 - *342 + - *343 requestBody: required: true content: @@ -55872,7 +55906,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *371 + '201': *372 '404': *6 '422': *7 '409': *54 @@ -55903,8 +55937,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *341 - *342 + - *343 responses: '201': description: Response @@ -55912,7 +55946,7 @@ paths: application/json: schema: *164 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55940,8 +55974,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *341 - *342 + - *343 responses: '201': description: Response @@ -55949,7 +55983,7 @@ paths: application/json: schema: *164 examples: - default: *373 + default: *374 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55971,8 +56005,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: - - *341 - *342 + - *343 - *161 responses: '200': @@ -55981,7 +56015,7 @@ paths: application/json: schema: *162 examples: - default: *374 + default: *375 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56002,8 +56036,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: - - *341 - *342 + - *343 - *161 responses: '204': @@ -56030,8 +56064,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: - - *341 - *342 + - *343 - *161 responses: '200': *166 @@ -56056,8 +56090,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: - - *341 - *342 + - *343 - *161 requestBody: required: true @@ -56106,8 +56140,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: - - *341 - *342 + - *343 - *161 requestBody: required: true @@ -56157,11 +56191,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: - - *341 - *342 + - *343 - *161 responses: - '200': *375 + '200': *376 '404': *6 x-github: githubCloudOnly: false @@ -56188,10 +56222,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: - - *341 - *342 + - *343 - *161 - - *376 + - *377 responses: '200': *166 '404': *6 @@ -56219,9 +56253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *341 - *342 - - &394 + - *343 + - &395 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. @@ -56229,7 +56263,7 @@ paths: required: false schema: type: string - - &395 + - &396 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -56237,7 +56271,7 @@ paths: required: false schema: type: string - - &396 + - &397 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -56246,7 +56280,7 @@ paths: required: false schema: type: string - - &397 + - &398 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 @@ -56273,7 +56307,7 @@ paths: - pending - *17 - *19 - - &398 + - &399 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)." @@ -56282,7 +56316,7 @@ paths: schema: type: string format: date-time - - &377 + - &378 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -56291,13 +56325,13 @@ paths: schema: type: boolean default: false - - &399 + - &400 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &400 + - &401 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -56320,7 +56354,7 @@ paths: type: integer workflow_runs: type: array - items: &378 + items: &379 title: Workflow Run description: An invocation of a workflow type: object @@ -56468,7 +56502,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &422 + properties: &423 id: type: string description: SHA for the commit @@ -56519,7 +56553,7 @@ paths: - name - email nullable: true - required: &423 + required: &424 - id - tree_id - message @@ -56566,7 +56600,7 @@ paths: - workflow_url - pull_requests examples: - default: &401 + default: &402 value: total_count: 1 workflow_runs: @@ -56802,24 +56836,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *341 - *342 - - &379 + - *343 + - &380 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *377 + - *378 responses: '200': description: Response content: application/json: - schema: *378 + schema: *379 examples: - default: &382 + default: &383 value: id: 30433642 name: Build @@ -57060,9 +57094,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '204': description: Response @@ -57085,9 +57119,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '200': description: Response @@ -57206,9 +57240,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: - - *341 - *342 - - *379 + - *343 + - *380 responses: '201': description: Response @@ -57241,12 +57275,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *341 - *342 - - *379 + - *343 + - *380 - *17 - *19 - - *380 + - *381 - *61 responses: '200': @@ -57263,9 +57297,9 @@ paths: type: integer artifacts: type: array - items: *348 + items: *349 examples: - default: *381 + default: *382 headers: Link: *67 x-github: @@ -57289,25 +57323,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *341 - *342 - - *379 - - &383 + - *343 + - *380 + - &384 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *377 + - *378 responses: '200': description: Response content: application/json: - schema: *378 + schema: *379 examples: - default: *382 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57330,10 +57364,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *341 - *342 - - *379 - - *383 + - *343 + - *380 + - *384 - *17 - *19 responses: @@ -57351,9 +57385,9 @@ paths: type: integer jobs: type: array - items: *384 + items: *385 examples: - default: &385 + default: &386 value: total_count: 1 jobs: @@ -57466,10 +57500,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *341 - *342 - - *379 - - *383 + - *343 + - *380 + - *384 responses: '302': description: Response @@ -57497,9 +57531,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '202': description: Response @@ -57532,9 +57566,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: - - *341 - *342 - - *379 + - *343 + - *380 requestBody: required: true content: @@ -57601,9 +57635,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '202': description: Response @@ -57636,9 +57670,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 - 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 @@ -57668,9 +57702,9 @@ paths: type: integer jobs: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -57695,9 +57729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '302': description: Response @@ -57724,9 +57758,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '204': description: Response @@ -57753,9 +57787,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '200': description: Response @@ -57815,7 +57849,7 @@ paths: items: type: object properties: - type: &507 + type: &508 type: string description: The type of reviewer. enum: @@ -57900,9 +57934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 requestBody: required: true content: @@ -57949,12 +57983,12 @@ paths: application/json: schema: type: array - items: &502 + items: &503 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &745 + properties: &746 url: type: string format: uri @@ -58039,7 +58073,7 @@ paths: nullable: true properties: *80 required: *81 - required: &746 + required: &747 - id - node_id - sha @@ -58055,7 +58089,7 @@ paths: - created_at - updated_at examples: - default: &503 + default: &504 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -58111,9 +58145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *341 - *342 - - *379 + - *343 + - *380 requestBody: required: false content: @@ -58157,9 +58191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 requestBody: required: false content: @@ -58212,9 +58246,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '200': description: Response @@ -58351,8 +58385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -58370,9 +58404,9 @@ paths: type: integer secrets: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -58397,16 +58431,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *388 + schema: *389 examples: - default: *389 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58428,17 +58462,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: &520 + default: &521 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -58464,8 +58498,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 requestBody: required: true @@ -58523,8 +58557,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 responses: '204': @@ -58550,9 +58584,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *341 - *342 - - *357 + - *343 + - *358 - *19 responses: '200': @@ -58569,9 +58603,9 @@ paths: type: integer variables: type: array - items: *390 + items: *391 examples: - default: *391 + default: *392 headers: Link: *67 x-github: @@ -58594,8 +58628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -58647,17 +58681,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *341 - *342 + - *343 - *171 responses: '200': description: Response content: application/json: - schema: *390 + schema: *391 examples: - default: &521 + default: &522 value: name: USERNAME value: octocat @@ -58683,8 +58717,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *341 - *342 + - *343 - *171 requestBody: required: true @@ -58727,8 +58761,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *341 - *342 + - *343 - *171 responses: '204': @@ -58754,8 +58788,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -58773,7 +58807,7 @@ paths: type: integer workflows: type: array - items: &392 + items: &393 title: Workflow description: A GitHub Actions workflow type: object @@ -58880,9 +58914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *341 - *342 - - &393 + - *343 + - &394 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -58897,7 +58931,7 @@ paths: description: Response content: application/json: - schema: *392 + schema: *393 examples: default: value: @@ -58930,9 +58964,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *341 - *342 - - *393 + - *343 + - *394 responses: '204': description: Response @@ -58957,9 +58991,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *341 - *342 - - *393 + - *343 + - *394 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -59046,9 +59080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *341 - *342 - - *393 + - *343 + - *394 responses: '204': description: Response @@ -59075,19 +59109,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *341 - *342 - - *393 + - *343 - *394 - *395 - *396 - *397 + - *398 - *17 - *19 - - *398 - - *377 - *399 + - *378 - *400 + - *401 responses: '200': description: Response @@ -59103,9 +59137,9 @@ paths: type: integer workflow_runs: type: array - items: *378 + items: *379 examples: - default: *401 + default: *402 headers: Link: *67 x-github: @@ -59137,9 +59171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *341 - *342 - - *393 + - *343 + - *394 responses: '200': description: Response @@ -59200,8 +59234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *341 - *342 + - *343 - *61 - *17 - *47 @@ -59365,8 +59399,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -59403,8 +59437,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *341 - *342 + - *343 - name: assignee in: path required: true @@ -59440,8 +59474,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -59551,8 +59585,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *341 - *342 + - *343 - *17 - *47 - *48 @@ -59609,7 +59643,7 @@ paths: initiator: type: string examples: - default: *402 + default: *403 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59629,8 +59663,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -59638,7 +59672,7 @@ paths: application/json: schema: type: array - items: &403 + items: &404 title: Autolink reference description: An autolink reference. type: object @@ -59692,8 +59726,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -59732,9 +59766,9 @@ paths: description: response content: application/json: - schema: *403 + schema: *404 examples: - default: &404 + default: &405 value: id: 1 key_prefix: TICKET- @@ -59765,9 +59799,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *341 - *342 - - &405 + - *343 + - &406 name: autolink_id description: The unique identifier of the autolink. in: path @@ -59779,9 +59813,9 @@ paths: description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: *404 + default: *405 '404': *6 x-github: githubCloudOnly: false @@ -59801,9 +59835,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *341 - *342 - - *405 + - *343 + - *406 responses: '204': description: Response @@ -59827,8 +59861,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: - - *341 - *342 + - *343 responses: '200': description: Response if Dependabot is enabled @@ -59876,8 +59910,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -59898,8 +59932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -59919,8 +59953,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *341 - *342 + - *343 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -59958,7 +59992,7 @@ paths: - url protected: type: boolean - protection: &407 + protection: &408 title: Branch Protection description: Branch Protection type: object @@ -60000,7 +60034,7 @@ paths: required: - contexts - checks - enforce_admins: &410 + enforce_admins: &411 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -60015,7 +60049,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &412 + required_pull_request_reviews: &413 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -60091,7 +60125,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &409 + restrictions: &410 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -60368,9 +60402,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *341 - *342 - - &408 + - *343 + - &409 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). @@ -60384,14 +60418,14 @@ paths: description: Response content: application/json: - schema: &418 + schema: &419 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &475 + commit: &476 title: Commit description: Commit type: object @@ -60425,7 +60459,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &406 + properties: &407 name: type: string example: '"Chris Wanstrath"' @@ -60441,7 +60475,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *406 + properties: *407 nullable: true message: type: string @@ -60462,7 +60496,7 @@ paths: required: - sha - url - verification: &527 + verification: &528 title: Verification type: object properties: @@ -60532,7 +60566,7 @@ paths: type: integer files: type: array - items: &488 + items: &489 title: Diff Entry description: Diff Entry type: object @@ -60616,7 +60650,7 @@ paths: - self protected: type: boolean - protection: *407 + protection: *408 protection_url: type: string format: uri @@ -60723,7 +60757,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *345 + '301': *346 '404': *6 x-github: githubCloudOnly: false @@ -60745,15 +60779,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *407 + schema: *408 examples: default: value: @@ -60947,9 +60981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -61204,7 +61238,7 @@ paths: url: type: string format: uri - required_status_checks: &415 + required_status_checks: &416 title: Status Check Policy description: Status Check Policy type: object @@ -61356,7 +61390,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *409 + restrictions: *410 required_conversation_resolution: type: object properties: @@ -61468,9 +61502,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '204': description: Response @@ -61495,17 +61529,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: &411 + default: &412 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -61527,17 +61561,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *411 + default: *412 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61556,9 +61590,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '204': description: Response @@ -61583,17 +61617,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *412 + schema: *413 examples: - default: &413 + default: &414 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -61689,9 +61723,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: false content: @@ -61789,9 +61823,9 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: - default: *413 + default: *414 '422': *15 x-github: githubCloudOnly: false @@ -61812,9 +61846,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '204': description: Response @@ -61841,17 +61875,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: &414 + default: &415 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -61874,17 +61908,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *414 + default: *415 '404': *6 x-github: githubCloudOnly: false @@ -61904,9 +61938,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '204': description: Response @@ -61931,17 +61965,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *415 + schema: *416 examples: - default: &416 + default: &417 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -61967,9 +62001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: false content: @@ -62021,9 +62055,9 @@ paths: description: Response content: application/json: - schema: *415 + schema: *416 examples: - default: *416 + default: *417 '404': *6 '422': *15 x-github: @@ -62045,9 +62079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '204': description: Response @@ -62071,9 +62105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response @@ -62107,9 +62141,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: false content: @@ -62176,9 +62210,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: false content: @@ -62242,9 +62276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: content: application/json: @@ -62310,15 +62344,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: default: value: @@ -62409,9 +62443,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '204': description: Response @@ -62434,9 +62468,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response @@ -62446,7 +62480,7 @@ paths: type: array items: *5 examples: - default: &417 + default: &418 value: - id: 1 slug: octoapp @@ -62503,9 +62537,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -62539,7 +62573,7 @@ paths: type: array items: *5 examples: - default: *417 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -62560,9 +62594,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -62596,7 +62630,7 @@ paths: type: array items: *5 examples: - default: *417 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -62617,9 +62651,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -62653,7 +62687,7 @@ paths: type: array items: *5 examples: - default: *417 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -62675,9 +62709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response @@ -62687,7 +62721,7 @@ paths: type: array items: *197 examples: - default: *258 + default: *259 '404': *6 x-github: githubCloudOnly: false @@ -62707,9 +62741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: false content: @@ -62747,7 +62781,7 @@ paths: type: array items: *197 examples: - default: *258 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -62768,9 +62802,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: false content: @@ -62808,7 +62842,7 @@ paths: type: array items: *197 examples: - default: *258 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -62829,9 +62863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: content: application/json: @@ -62868,7 +62902,7 @@ paths: type: array items: *197 examples: - default: *258 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -62890,9 +62924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response @@ -62926,9 +62960,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -62986,9 +63020,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -63046,9 +63080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -63108,9 +63142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -63132,7 +63166,7 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: default: value: @@ -63248,8 +63282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -63528,7 +63562,7 @@ paths: description: Response content: application/json: - schema: &419 + schema: &420 title: CheckRun description: A check performed on the code of a given code change type: object @@ -63648,7 +63682,7 @@ paths: check. type: array items: *90 - deployment: &738 + deployment: &739 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -63928,9 +63962,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *341 - *342 - - &420 + - *343 + - &421 name: check_run_id description: The unique identifier of the check run. in: path @@ -63942,9 +63976,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: &421 + default: &422 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -64044,9 +64078,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *341 - *342 - - *420 + - *343 + - *421 requestBody: required: true content: @@ -64286,9 +64320,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: *421 + default: *422 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64308,9 +64342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *341 - *342 - - *420 + - *343 + - *421 - *17 - *19 responses: @@ -64405,9 +64439,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *341 - *342 - - *420 + - *343 + - *421 responses: '201': description: Response @@ -64451,8 +64485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -64474,7 +64508,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &424 + schema: &425 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -64560,12 +64594,12 @@ paths: type: string format: date-time nullable: true - head_commit: &766 + head_commit: &767 title: Simple Commit description: A commit. type: object - properties: *422 - required: *423 + properties: *423 + required: *424 latest_check_runs_count: type: integer check_runs_url: @@ -64593,7 +64627,7 @@ paths: - check_runs_url - pull_requests examples: - default: &425 + default: &426 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -64884,9 +64918,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64905,8 +64939,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -65215,9 +65249,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *341 - *342 - - &426 + - *343 + - &427 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -65229,9 +65263,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65254,17 +65288,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *341 - *342 - - *426 - - &481 + - *343 + - *427 + - &482 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &482 + - &483 name: status description: Returns check runs with the specified `status`. in: query @@ -65303,9 +65337,9 @@ paths: type: integer check_runs: type: array - items: *419 + items: *420 examples: - default: &483 + default: &484 value: total_count: 1 check_runs: @@ -65407,9 +65441,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *341 - *342 - - *426 + - *343 + - *427 responses: '201': description: Response @@ -65442,21 +65476,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *341 - *342 - - *427 + - *343 - *428 + - *429 - *19 - *17 - - &445 + - &446 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: *429 - - &446 + schema: *430 + - &447 name: pr description: The number of the pull request for the results you want to list. in: query @@ -65481,13 +65515,13 @@ paths: be returned. in: query required: false - schema: *430 + schema: *431 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *431 + schema: *432 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -65511,7 +65545,7 @@ paths: updated_at: *180 url: *181 html_url: *182 - instances_url: *432 + instances_url: *433 state: *187 fixed_at: *183 dismissed_by: @@ -65522,11 +65556,11 @@ paths: required: *21 nullable: true dismissed_at: *184 - dismissed_reason: *433 - dismissed_comment: *434 - rule: *435 - tool: *436 - most_recent_instance: *437 + dismissed_reason: *434 + dismissed_comment: *435 + rule: *436 + tool: *437 + most_recent_instance: *438 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -65652,7 +65686,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &438 + '403': &439 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -65679,9 +65713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *341 - *342 - - &439 + - *343 + - &440 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -65695,7 +65729,7 @@ paths: description: Response content: application/json: - schema: &440 + schema: &441 type: object properties: number: *178 @@ -65703,7 +65737,7 @@ paths: updated_at: *180 url: *181 html_url: *182 - instances_url: *432 + instances_url: *433 state: *187 fixed_at: *183 dismissed_by: @@ -65714,8 +65748,8 @@ paths: required: *21 nullable: true dismissed_at: *184 - dismissed_reason: *433 - dismissed_comment: *434 + dismissed_reason: *434 + dismissed_comment: *435 rule: type: object properties: @@ -65769,8 +65803,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *436 - most_recent_instance: *437 + tool: *437 + most_recent_instance: *438 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -65869,7 +65903,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -65889,9 +65923,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *341 - *342 - - *439 + - *343 + - *440 requestBody: required: true content: @@ -65906,8 +65940,8 @@ paths: enum: - open - dismissed - dismissed_reason: *433 - dismissed_comment: *434 + dismissed_reason: *434 + dismissed_comment: *435 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -65935,7 +65969,7 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: default: value: @@ -66011,7 +66045,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &444 + '403': &445 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -66038,15 +66072,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: - - *341 - *342 - - *439 + - *343 + - *440 responses: '200': description: Response content: application/json: - schema: &441 + schema: &442 type: object properties: status: @@ -66072,13 +66106,13 @@ paths: - description - started_at examples: - default: &442 + default: &443 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &443 + '400': &444 description: Bad Request content: application/json: @@ -66089,7 +66123,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': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -66114,29 +66148,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: - - *341 - *342 - - *439 + - *343 + - *440 responses: '200': description: OK content: application/json: - schema: *441 + schema: *442 examples: - default: *442 + default: *443 '202': description: Accepted content: application/json: - schema: *441 + schema: *442 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *443 + '400': *444 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -66168,9 +66202,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: - - *341 - *342 - - *439 + - *343 + - *440 requestBody: required: false content: @@ -66215,8 +66249,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *443 - '403': *444 + '400': *444 + '403': *445 '404': *6 '422': description: Unprocessable Entity @@ -66240,13 +66274,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *341 - *342 - - *439 + - *343 + - *440 - *19 - *17 - - *445 - *446 + - *447 responses: '200': description: Response @@ -66257,10 +66291,10 @@ paths: items: type: object properties: - ref: *429 - analysis_key: *447 - environment: *448 - category: *449 + ref: *430 + analysis_key: *448 + environment: *449 + category: *450 state: type: string description: State of a code scanning alert instance. @@ -66275,7 +66309,7 @@ paths: properties: text: type: string - location: *450 + location: *451 html_url: type: string classifications: @@ -66283,7 +66317,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: *451 + items: *452 examples: default: value: @@ -66320,7 +66354,7 @@ paths: end_column: 50 classifications: - source - '403': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -66354,25 +66388,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *341 - *342 - - *427 + - *343 - *428 + - *429 - *19 - *17 - - *446 + - *447 - 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: *429 + schema: *430 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &452 + schema: &453 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -66393,23 +66427,23 @@ paths: application/json: schema: type: array - items: &453 + items: &454 type: object properties: - ref: *429 - commit_sha: &461 + ref: *430 + commit_sha: &462 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: *447 + analysis_key: *448 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *449 + category: *450 error: type: string example: error reading field xyz @@ -66433,8 +66467,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *452 - tool: *436 + sarif_id: *453 + tool: *437 deletable: type: boolean warning: @@ -66495,7 +66529,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -66531,8 +66565,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: - - *341 - *342 + - *343 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -66545,7 +66579,7 @@ paths: description: Response content: application/json: - schema: *453 + schema: *454 examples: response: summary: application/json response @@ -66599,7 +66633,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *438 + '403': *439 '404': *6 '422': description: Response if analysis could not be processed @@ -66686,8 +66720,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: - - *341 - *342 + - *343 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -66740,7 +66774,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': *444 + '403': *445 '404': *6 '503': *121 x-github: @@ -66762,8 +66796,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -66771,7 +66805,7 @@ paths: application/json: schema: type: array - items: &454 + items: &455 title: CodeQL Database description: A CodeQL database. type: object @@ -66882,7 +66916,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': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -66911,8 +66945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *341 - *342 + - *343 - name: language in: path description: The language of the CodeQL database. @@ -66924,7 +66958,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *455 examples: default: value: @@ -66956,9 +66990,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': &490 + '302': &491 description: Found - '403': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -66980,8 +67014,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *341 - *342 + - *343 - name: language in: path description: The language of the CodeQL database. @@ -66991,7 +67025,7 @@ paths: responses: '204': description: Response - '403': *444 + '403': *445 '404': *6 '503': *121 x-github: @@ -67019,8 +67053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -67029,7 +67063,7 @@ paths: type: object additionalProperties: false properties: - language: &455 + language: &456 type: string description: The language targeted by the CodeQL query enum: @@ -67109,7 +67143,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &459 + schema: &460 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -67119,7 +67153,7 @@ paths: description: The ID of the variant analysis. controller_repo: *66 actor: *4 - query_language: *455 + query_language: *456 query_pack_url: type: string description: The download url for the query pack. @@ -67166,7 +67200,7 @@ paths: items: type: object properties: - repository: &456 + repository: &457 title: Repository Identifier description: Repository Identifier type: object @@ -67202,7 +67236,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &460 + analysis_status: &461 type: string description: The new status of the CodeQL variant analysis repository task. @@ -67234,7 +67268,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &457 + access_mismatch_repos: &458 type: object properties: repository_count: @@ -67248,7 +67282,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: *456 + items: *457 required: - repository_count - repositories @@ -67270,8 +67304,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *457 - over_limit_repos: *457 + no_codeql_db_repos: *458 + over_limit_repos: *458 required: - access_mismatch_repos - not_found_repos @@ -67287,7 +67321,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &458 + value: &459 summary: Default response value: id: 1 @@ -67433,10 +67467,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *458 + value: *459 repository_lists: summary: Response for a successful variant analysis submission - value: *458 + value: *459 '404': *6 '422': description: Unable to process variant analysis submission @@ -67464,8 +67498,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: - - *341 - *342 + - *343 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -67477,9 +67511,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: - default: *458 + default: *459 '404': *6 '503': *121 x-github: @@ -67502,7 +67536,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: - - *341 + - *342 - name: repo in: path description: The name of the controller repository. @@ -67537,7 +67571,7 @@ paths: type: object properties: repository: *66 - analysis_status: *460 + analysis_status: *461 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -67662,8 +67696,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -67748,7 +67782,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -67769,8 +67803,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -67862,7 +67896,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *444 + '403': *445 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -67933,8 +67967,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -67942,7 +67976,7 @@ paths: schema: type: object properties: - commit_sha: *461 + commit_sha: *462 ref: type: string description: |- @@ -68000,7 +68034,7 @@ paths: schema: type: object properties: - id: *452 + id: *453 url: type: string description: The REST API URL for checking the status of the upload. @@ -68014,7 +68048,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': *444 + '403': *445 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -68037,8 +68071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *341 - *342 + - *343 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -68084,7 +68118,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': *438 + '403': *439 '404': description: Not Found if the sarif id does not match any upload '503': *121 @@ -68109,8 +68143,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: - - *341 - *342 + - *343 responses: '200': description: Response @@ -68191,8 +68225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *341 - *342 + - *343 - 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 @@ -68312,8 +68346,8 @@ paths: parameters: - *17 - *19 - - *341 - *342 + - *343 responses: '200': description: Response @@ -68329,7 +68363,7 @@ paths: type: integer codespaces: type: array - items: *246 + items: *247 examples: default: value: @@ -68627,8 +68661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -68691,17 +68725,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '400': *14 '401': *25 '403': *29 @@ -68730,8 +68764,8 @@ paths: parameters: - *17 - *19 - - *341 - *342 + - *343 responses: '200': description: Response @@ -68795,8 +68829,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *341 - *342 + - *343 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -68831,14 +68865,14 @@ paths: type: integer machines: type: array - items: &681 + items: &682 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *463 - required: *464 + properties: *464 + required: *465 examples: - default: &682 + default: &683 value: total_count: 2 machines: @@ -68878,8 +68912,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *341 - *342 + - *343 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -68963,8 +68997,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: - - *341 - *342 + - *343 - 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 @@ -69030,8 +69064,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -69049,7 +69083,7 @@ paths: type: integer secrets: type: array - items: &468 + items: &469 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -69069,7 +69103,7 @@ paths: - created_at - updated_at examples: - default: *465 + default: *466 headers: Link: *67 x-github: @@ -69092,16 +69126,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -69121,17 +69155,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 responses: '200': description: Response content: application/json: - schema: *468 + schema: *469 examples: - default: *469 + default: *470 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69151,8 +69185,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 requestBody: required: true @@ -69205,8 +69239,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 responses: '204': @@ -69235,8 +69269,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *341 - *342 + - *343 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -69278,7 +69312,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &470 + properties: &471 login: type: string example: octocat @@ -69371,7 +69405,7 @@ paths: user_view_type: type: string example: public - required: &471 + required: &472 - avatar_url - events_url - followers_url @@ -69445,8 +69479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *341 - *342 + - *343 - *71 responses: '204': @@ -69493,8 +69527,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *341 - *342 + - *343 - *71 requestBody: required: false @@ -69521,7 +69555,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &540 + schema: &541 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -69750,8 +69784,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *341 - *342 + - *343 - *71 responses: '204': @@ -69783,8 +69817,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *341 - *342 + - *343 - *71 responses: '200': @@ -69805,8 +69839,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *470 - required: *471 + properties: *471 + required: *472 nullable: true required: - permission @@ -69861,8 +69895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -69872,7 +69906,7 @@ paths: application/json: schema: type: array - items: &472 + items: &473 title: Commit Comment description: Commit Comment type: object @@ -69930,7 +69964,7 @@ paths: - created_at - updated_at examples: - default: &477 + default: &478 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -69989,17 +70023,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *341 - *342 + - *343 - *101 responses: '200': description: Response content: application/json: - schema: *472 + schema: *473 examples: - default: &478 + default: &479 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -70056,8 +70090,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *341 - *342 + - *343 - *101 requestBody: required: true @@ -70080,7 +70114,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *473 examples: default: value: @@ -70131,8 +70165,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *341 - *342 + - *343 - *101 responses: '204': @@ -70154,8 +70188,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *341 - *342 + - *343 - *101 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -70182,7 +70216,7 @@ paths: application/json: schema: type: array - items: &473 + items: &474 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -70225,7 +70259,7 @@ paths: - content - created_at examples: - default: &544 + default: &545 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -70270,8 +70304,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *341 - *342 + - *343 - *101 requestBody: required: true @@ -70304,9 +70338,9 @@ paths: description: Reaction exists content: application/json: - schema: *473 + schema: *474 examples: - default: &474 + default: &475 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -70335,9 +70369,9 @@ paths: description: Reaction created content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -70359,10 +70393,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *341 - *342 + - *343 - *101 - - &545 + - &546 name: reaction_id description: The unique identifier of the reaction. in: path @@ -70417,8 +70451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *341 - *342 + - *343 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -70474,9 +70508,9 @@ paths: application/json: schema: type: array - items: *475 + items: *476 examples: - default: &595 + default: &596 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -70570,9 +70604,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *341 - *342 - - &476 + - *343 + - &477 name: commit_sha description: The SHA of the commit. in: path @@ -70644,9 +70678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *341 - *342 - - *476 + - *343 + - *477 - *17 - *19 responses: @@ -70656,9 +70690,9 @@ paths: application/json: schema: type: array - items: *472 + items: *473 examples: - default: *477 + default: *478 headers: Link: *67 x-github: @@ -70686,9 +70720,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *341 - *342 - - *476 + - *343 + - *477 requestBody: required: true content: @@ -70723,9 +70757,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *473 examples: - default: *478 + default: *479 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -70753,9 +70787,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *341 - *342 - - *476 + - *343 + - *477 - *17 - *19 responses: @@ -70765,9 +70799,9 @@ paths: application/json: schema: type: array - items: *479 + items: *480 examples: - default: &587 + default: &588 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -71304,11 +71338,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *341 - *342 + - *343 - *19 - *17 - - &480 + - &481 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)" @@ -71323,9 +71357,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *476 examples: - default: &574 + default: &575 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -71438,11 +71472,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *341 - *342 - - *480 + - *343 - *481 - *482 + - *483 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -71476,9 +71510,9 @@ paths: type: integer check_runs: type: array - items: *419 + items: *420 examples: - default: *483 + default: *484 headers: Link: *67 x-github: @@ -71503,9 +71537,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *341 - *342 - - *480 + - *343 + - *481 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -71513,7 +71547,7 @@ paths: schema: type: integer example: 1 - - *481 + - *482 - *17 - *19 responses: @@ -71531,7 +71565,7 @@ paths: type: integer check_suites: type: array - items: *424 + items: *425 examples: default: value: @@ -71731,9 +71765,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *341 - *342 - - *480 + - *343 + - *481 - *17 - *19 responses: @@ -71931,9 +71965,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *341 - *342 - - *480 + - *343 + - *481 - *17 - *19 responses: @@ -71943,7 +71977,7 @@ paths: application/json: schema: type: array - items: &660 + items: &661 title: Status description: The status of a commit. type: object @@ -72024,7 +72058,7 @@ paths: site_admin: false headers: Link: *67 - '301': *345 + '301': *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72052,8 +72086,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -72082,20 +72116,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *484 - required: *485 + properties: *485 + required: *486 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &486 + properties: &487 url: type: string format: uri html_url: type: string format: uri - required: &487 + required: &488 - url - html_url nullable: true @@ -72109,26 +72143,26 @@ paths: contributing: title: Community Health File type: object - properties: *486 - required: *487 + properties: *487 + required: *488 nullable: true readme: title: Community Health File type: object - properties: *486 - required: *487 + properties: *487 + required: *488 nullable: true issue_template: title: Community Health File type: object - properties: *486 - required: *487 + properties: *487 + required: *488 nullable: true pull_request_template: title: Community Health File type: object - properties: *486 - required: *487 + properties: *487 + required: *488 nullable: true required: - code_of_conduct @@ -72255,8 +72289,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *341 - *342 + - *343 - *19 - *17 - name: basehead @@ -72299,8 +72333,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *475 - merge_base_commit: *475 + base_commit: *476 + merge_base_commit: *476 status: type: string enum: @@ -72320,10 +72354,10 @@ paths: example: 6 commits: type: array - items: *475 + items: *476 files: type: array - items: *488 + items: *489 required: - url - html_url @@ -72609,8 +72643,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *341 - *342 + - *343 - name: path description: path parameter in: path @@ -72770,7 +72804,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &489 + response-if-content-is-a-file-github-object: &490 summary: Response if content is a file value: type: file @@ -72902,7 +72936,7 @@ paths: - size - type - url - - &600 + - &601 title: Content File description: Content File type: object @@ -73103,7 +73137,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *489 + response-if-content-is-a-file: *490 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -73172,7 +73206,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *490 + '302': *491 '304': *37 x-github: githubCloudOnly: false @@ -73195,8 +73229,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *341 - *342 + - *343 - name: path description: path parameter in: path @@ -73289,7 +73323,7 @@ paths: description: Response content: application/json: - schema: &491 + schema: &492 title: File Commit description: File Commit type: object @@ -73441,7 +73475,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: example-for-creating-a-file: value: @@ -73495,7 +73529,7 @@ paths: schema: oneOf: - *3 - - &522 + - &523 description: Repository rule violation was detected type: object properties: @@ -73516,7 +73550,7 @@ paths: items: type: object properties: - placeholder_id: &652 + placeholder_id: &653 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -73548,8 +73582,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *341 - *342 + - *343 - name: path description: path parameter in: path @@ -73610,7 +73644,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: default: value: @@ -73665,8 +73699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *341 - *342 + - *343 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -73789,23 +73823,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *341 - *342 + - *343 - *199 - *200 - *201 - *202 + - *203 - 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 - - *203 - - *492 - *204 + - *493 - *205 - *206 + - *207 - *61 - *47 - *48 @@ -73817,7 +73852,7 @@ paths: application/json: schema: type: array - items: &496 + items: &497 type: object description: A Dependabot alert. properties: @@ -73864,7 +73899,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *493 + security_advisory: *494 security_vulnerability: *65 url: *181 html_url: *182 @@ -73895,8 +73930,8 @@ paths: nullable: true maxLength: 280 fixed_at: *183 - auto_dismissed_at: *494 - dismissal_request: *495 + auto_dismissed_at: *495 + dismissal_request: *496 assignees: type: array description: The users assigned to this alert. @@ -74151,9 +74186,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *341 - *342 - - &497 + - *343 + - &498 name: alert_number in: path description: |- @@ -74168,7 +74203,7 @@ paths: description: Response content: application/json: - schema: *496 + schema: *497 examples: default: value: @@ -74300,9 +74335,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *341 - *342 - - *497 + - *343 + - *498 requestBody: required: true content: @@ -74358,7 +74393,7 @@ paths: description: Response content: application/json: - schema: *496 + schema: *497 examples: default: value: @@ -74488,8 +74523,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -74507,7 +74542,7 @@ paths: type: integer secrets: type: array - items: &500 + items: &501 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -74560,16 +74595,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *499 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74589,15 +74624,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 responses: '200': description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -74623,8 +74658,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 requestBody: required: true @@ -74677,8 +74712,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 responses: '204': @@ -74701,8 +74736,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: - - *341 - *342 + - *343 - 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 @@ -74862,8 +74897,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: - - *341 - *342 + - *343 responses: '200': description: Response @@ -75102,8 +75137,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: - - *341 - *342 + - *343 requestBody: required: true content: @@ -75178,7 +75213,7 @@ paths: - version - url additionalProperties: false - metadata: &501 + metadata: &502 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -75211,7 +75246,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *501 + metadata: *502 resolved: type: object description: A collection of resolved package dependencies. @@ -75224,7 +75259,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *501 + metadata: *502 relationship: type: string description: A notation of whether a dependency is requested @@ -75353,8 +75388,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *341 - *342 + - *343 - name: sha description: The SHA recorded at creation time. in: query @@ -75394,9 +75429,9 @@ paths: application/json: schema: type: array - items: *502 + items: *503 examples: - default: *503 + default: *504 headers: Link: *67 x-github: @@ -75462,8 +75497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -75544,7 +75579,7 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: simple-example: summary: Simple example @@ -75617,9 +75652,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *341 - *342 - - &504 + - *343 + - &505 name: deployment_id description: deployment_id parameter in: path @@ -75631,7 +75666,7 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: default: value: @@ -75696,9 +75731,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *341 - *342 - - *504 + - *343 + - *505 responses: '204': description: Response @@ -75720,9 +75755,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *341 - *342 - - *504 + - *343 + - *505 - *17 - *19 responses: @@ -75732,7 +75767,7 @@ paths: application/json: schema: type: array - items: &505 + items: &506 title: Deployment Status description: The status of a deployment. type: object @@ -75893,9 +75928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *341 - *342 - - *504 + - *343 + - *505 requestBody: required: true content: @@ -75970,9 +76005,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *506 examples: - default: &506 + default: &507 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -76028,9 +76063,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *341 - *342 - - *504 + - *343 + - *505 - name: status_id in: path required: true @@ -76041,9 +76076,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *506 examples: - default: *506 + default: *507 '404': *6 x-github: githubCloudOnly: false @@ -76068,8 +76103,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -76126,8 +76161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -76144,7 +76179,7 @@ paths: type: integer environments: type: array - items: &508 + items: &509 title: Environment description: Details of a deployment environment type: object @@ -76196,7 +76231,7 @@ paths: type: type: string example: wait_timer - wait_timer: &510 + wait_timer: &511 type: integer example: 30 description: The amount of time to delay a job after @@ -76233,7 +76268,7 @@ paths: items: type: object properties: - type: *507 + type: *508 reviewer: anyOf: - *4 @@ -76257,7 +76292,7 @@ paths: - id - node_id - type - deployment_branch_policy: &511 + deployment_branch_policy: &512 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -76373,9 +76408,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *341 - *342 - - &509 + - *343 + - &510 name: environment_name in: path required: true @@ -76388,9 +76423,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: &512 + default: &513 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -76474,9 +76509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *341 - *342 - - *509 + - *343 + - *510 requestBody: required: false content: @@ -76485,7 +76520,7 @@ paths: type: object nullable: true properties: - wait_timer: *510 + wait_timer: *511 prevent_self_review: type: boolean example: false @@ -76502,13 +76537,13 @@ paths: items: type: object properties: - type: *507 + type: *508 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *511 + deployment_branch_policy: *512 additionalProperties: false examples: default: @@ -76528,9 +76563,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: *512 + default: *513 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -76554,9 +76589,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *341 - *342 - - *509 + - *343 + - *510 responses: '204': description: Default response @@ -76581,9 +76616,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *341 - *342 - - *509 + - *343 + - *510 - *17 - *19 responses: @@ -76601,7 +76636,7 @@ paths: example: 2 branch_policies: type: array - items: &513 + items: &514 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -76658,9 +76693,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *341 - *342 - - *509 + - *343 + - *510 requestBody: required: true content: @@ -76706,9 +76741,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: - example-wildcard: &514 + example-wildcard: &515 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -76750,10 +76785,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *341 - *342 - - *509 - - &515 + - *343 + - *510 + - &516 name: branch_policy_id in: path required: true @@ -76765,9 +76800,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: - default: *514 + default: *515 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76786,10 +76821,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *341 - *342 - - *509 - - *515 + - *343 + - *510 + - *516 requestBody: required: true content: @@ -76817,9 +76852,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: - default: *514 + default: *515 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76838,10 +76873,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *341 - *342 - - *509 - - *515 + - *343 + - *510 + - *516 responses: '204': description: Response @@ -76866,9 +76901,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *509 + - *510 + - *343 - *342 - - *341 responses: '200': description: List of deployment protection rules @@ -76884,7 +76919,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &516 + items: &517 title: Deployment protection rule description: Deployment protection rule type: object @@ -76903,7 +76938,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &517 + app: &518 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -77002,9 +77037,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: - - *509 + - *510 + - *343 - *342 - - *341 requestBody: content: application/json: @@ -77025,9 +77060,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *516 + schema: *517 examples: - default: &518 + default: &519 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -77062,9 +77097,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: - - *509 + - *510 + - *343 - *342 - - *341 - *19 - *17 responses: @@ -77083,7 +77118,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *517 + items: *518 examples: default: value: @@ -77118,10 +77153,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *341 - *342 - - *509 - - &519 + - *343 + - *510 + - &520 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -77133,9 +77168,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77156,10 +77191,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *509 + - *510 + - *343 - *342 - - *341 - - *519 + - *520 responses: '204': description: Response @@ -77185,9 +77220,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *341 - *342 - - *509 + - *343 + - *510 - *17 - *19 responses: @@ -77205,9 +77240,9 @@ paths: type: integer secrets: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -77232,17 +77267,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *341 - *342 - - *509 + - *343 + - *510 responses: '200': description: Response content: application/json: - schema: *388 + schema: *389 examples: - default: *389 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77264,18 +77299,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *341 - *342 - - *509 + - *343 + - *510 - *168 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *520 + default: *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77297,9 +77332,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *341 - *342 - - *509 + - *343 + - *510 - *168 requestBody: required: true @@ -77357,9 +77392,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *341 - *342 - - *509 + - *343 + - *510 - *168 responses: '204': @@ -77385,10 +77420,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *341 - *342 - - *509 - - *357 + - *343 + - *510 + - *358 - *19 responses: '200': @@ -77405,9 +77440,9 @@ paths: type: integer variables: type: array - items: *390 + items: *391 examples: - default: *391 + default: *392 headers: Link: *67 x-github: @@ -77430,9 +77465,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *341 - *342 - - *509 + - *343 + - *510 requestBody: required: true content: @@ -77484,18 +77519,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *341 - *342 - - *509 + - *343 + - *510 - *171 responses: '200': description: Response content: application/json: - schema: *390 + schema: *391 examples: - default: *521 + default: *522 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77516,10 +77551,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *341 - *342 + - *343 - *171 - - *509 + - *510 requestBody: required: true content: @@ -77561,10 +77596,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *341 - *342 + - *343 - *171 - - *509 + - *510 responses: '204': description: Response @@ -77586,8 +77621,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -77655,8 +77690,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *341 - *342 + - *343 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -77815,8 +77850,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *341 - *342 + - *343 requestBody: required: false content: @@ -77848,9 +77883,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *346 + default: *347 '400': *14 '422': *15 '403': *29 @@ -77871,8 +77906,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -77932,7 +77967,7 @@ paths: schema: oneOf: - *129 - - *522 + - *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77957,8 +77992,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *341 - *342 + - *343 - name: file_sha in: path required: true @@ -78057,8 +78092,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -78167,7 +78202,7 @@ paths: description: Response content: application/json: - schema: &523 + schema: &524 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -78381,15 +78416,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *341 - *342 - - *476 + - *343 + - *477 responses: '200': description: Response content: application/json: - schema: *523 + schema: *524 examples: default: value: @@ -78445,9 +78480,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *341 - *342 - - &524 + - *343 + - &525 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. @@ -78464,7 +78499,7 @@ paths: application/json: schema: type: array - items: &525 + items: &526 title: Git Reference description: Git references within a repository type: object @@ -78539,17 +78574,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *341 - *342 - - *524 + - *343 + - *525 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: &526 + default: &527 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -78578,8 +78613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -78608,9 +78643,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *526 + default: *527 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -78636,9 +78671,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *341 - *342 - - *524 + - *343 + - *525 requestBody: required: true content: @@ -78667,9 +78702,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *526 + default: *527 '422': *15 '409': *54 x-github: @@ -78687,9 +78722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *341 - *342 - - *524 + - *343 + - *525 responses: '204': description: Response @@ -78744,8 +78779,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -78812,7 +78847,7 @@ paths: description: Response content: application/json: - schema: &528 + schema: &529 title: Git Tag description: Metadata for a Git tag type: object @@ -78863,7 +78898,7 @@ paths: - sha - type - url - verification: *527 + verification: *528 required: - sha - url @@ -78873,7 +78908,7 @@ paths: - tag - message examples: - default: &529 + default: &530 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -78946,8 +78981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *341 - *342 + - *343 - name: tag_sha in: path required: true @@ -78958,9 +78993,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 '404': *6 '409': *54 x-github: @@ -78984,8 +79019,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -79058,7 +79093,7 @@ paths: description: Response content: application/json: - schema: &530 + schema: &531 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -79154,8 +79189,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *341 - *342 + - *343 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -79178,7 +79213,7 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: default-response: summary: Default response @@ -79237,8 +79272,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -79248,7 +79283,7 @@ paths: application/json: schema: type: array - items: &531 + items: &532 title: Webhook description: Webhooks for repositories. type: object @@ -79302,7 +79337,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &774 + last_response: &775 title: Hook Response type: object properties: @@ -79376,8 +79411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *341 - *342 + - *343 requestBody: required: false content: @@ -79429,9 +79464,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: - default: &532 + default: &533 value: type: Repository id: 12345678 @@ -79479,17 +79514,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 responses: '200': description: Response content: application/json: - schema: *531 + schema: *532 examples: - default: *532 + default: *533 '404': *6 x-github: githubCloudOnly: false @@ -79509,9 +79544,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 requestBody: required: true content: @@ -79556,9 +79591,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: - default: *532 + default: *533 '422': *15 '404': *6 x-github: @@ -79579,9 +79614,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 responses: '204': description: Response @@ -79605,9 +79640,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *341 - *342 - - *214 + - *343 + - *215 responses: '200': description: Response @@ -79634,9 +79669,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *341 - *342 - - *214 + - *343 + - *215 requestBody: required: false content: @@ -79680,12 +79715,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *341 - *342 - - *214 - - *17 + - *343 - *215 + - *17 - *216 + - *217 responses: '200': description: Response @@ -79693,9 +79728,9 @@ paths: application/json: schema: type: array - items: *217 + items: *218 examples: - default: *218 + default: *219 '400': *14 '422': *15 x-github: @@ -79714,18 +79749,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 - *16 responses: '200': description: Response content: application/json: - schema: *219 + schema: *220 examples: - default: *220 + default: *221 '400': *14 '422': *15 x-github: @@ -79744,9 +79779,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 - *16 responses: '202': *39 @@ -79769,9 +79804,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 responses: '204': description: Response @@ -79796,9 +79831,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 responses: '204': description: Response @@ -79821,8 +79856,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response if immutable releases are enabled @@ -79868,8 +79903,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *341 - *342 + - *343 responses: '204': *191 '409': *54 @@ -79889,8 +79924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *341 - *342 + - *343 responses: '204': *191 '409': *54 @@ -79947,14 +79982,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: &533 + schema: &534 title: Import description: A repository import from an external source. type: object @@ -80053,7 +80088,7 @@ paths: - html_url - authors_url examples: - default: &536 + default: &537 value: vcs: subversion use_lfs: true @@ -80069,7 +80104,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': &534 + '503': &535 description: Unavailable due to service under maintenance. content: application/json: @@ -80098,8 +80133,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -80147,7 +80182,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: default: value: @@ -80172,7 +80207,7 @@ paths: type: string '422': *15 '404': *6 - '503': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80200,8 +80235,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *341 - *342 + - *343 requestBody: required: false content: @@ -80250,7 +80285,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: example-1: summary: Example 1 @@ -80298,7 +80333,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': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80321,12 +80356,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *341 - *342 + - *343 responses: '204': description: Response - '503': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80352,9 +80387,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *341 - *342 - - &703 + - *343 + - &704 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -80368,7 +80403,7 @@ paths: application/json: schema: type: array - items: &535 + items: &536 title: Porter Author description: Porter Author type: object @@ -80422,7 +80457,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': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80447,8 +80482,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *341 - *342 + - *343 - name: author_id in: path required: true @@ -80478,7 +80513,7 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: default: value: @@ -80491,7 +80526,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80515,8 +80550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -80557,7 +80592,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80585,8 +80620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -80613,11 +80648,11 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *536 + default: *537 '422': *15 - '503': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80640,8 +80675,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -80649,8 +80684,8 @@ paths: application/json: schema: *22 examples: - default: *537 - '301': *345 + default: *538 + '301': *346 '404': *6 x-github: githubCloudOnly: false @@ -80670,8 +80705,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -80679,12 +80714,12 @@ paths: application/json: schema: anyOf: - - *233 + - *234 - type: object properties: {} additionalProperties: false examples: - default: &539 + default: &540 value: limit: collaborators_only origin: repository @@ -80709,13 +80744,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: application/json: - schema: *538 + schema: *539 examples: default: summary: Example request body @@ -80727,9 +80762,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: *539 + default: *540 '409': description: Response x-github: @@ -80751,8 +80786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -80775,8 +80810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -80786,9 +80821,9 @@ paths: application/json: schema: type: array - items: *540 + items: *541 examples: - default: &696 + default: &697 value: - id: 1 repository: @@ -80919,9 +80954,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *341 - *342 - - *237 + - *343 + - *238 requestBody: required: false content: @@ -80950,7 +80985,7 @@ paths: description: Response content: application/json: - schema: *540 + schema: *541 examples: default: value: @@ -81081,9 +81116,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *341 - *342 - - *237 + - *343 + - *238 responses: '204': description: Response @@ -81114,8 +81149,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *341 - *342 + - *343 - 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 @@ -81163,7 +81198,7 @@ paths: required: false schema: type: string - - *244 + - *245 - name: sort description: What to sort results by. in: query @@ -81188,7 +81223,7 @@ paths: type: array items: *85 examples: - default: &552 + default: &553 value: - id: 1 node_id: MDU6SXNzdWUx @@ -81337,7 +81372,7 @@ paths: state_reason: completed headers: Link: *67 - '301': *345 + '301': *346 '422': *15 '404': *6 x-github: @@ -81366,8 +81401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -81451,7 +81486,7 @@ paths: application/json: schema: *85 examples: - default: &549 + default: &550 value: id: 1 node_id: MDU6SXNzdWUx @@ -81608,7 +81643,7 @@ paths: '422': *15 '503': *121 '404': *6 - '410': *541 + '410': *542 x-github: triggersNotification: true githubCloudOnly: false @@ -81636,8 +81671,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *341 - *342 + - *343 - *109 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -81658,9 +81693,9 @@ paths: application/json: schema: type: array - items: *542 + items: *543 examples: - default: &551 + default: &552 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -81718,17 +81753,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: &543 + default: &544 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -81783,8 +81818,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 requestBody: required: true @@ -81807,9 +81842,9 @@ paths: description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *543 + default: *544 '422': *15 x-github: githubCloudOnly: false @@ -81827,8 +81862,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 responses: '204': @@ -81857,15 +81892,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: default: value: @@ -81921,7 +81956,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *541 + '410': *542 '422': *15 x-github: githubCloudOnly: false @@ -81938,8 +81973,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 responses: '204': @@ -81947,7 +81982,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *541 + '410': *542 '503': *121 x-github: githubCloudOnly: false @@ -81965,8 +82000,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -81993,9 +82028,9 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: *544 + default: *545 headers: Link: *67 '404': *6 @@ -82016,8 +82051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 requestBody: required: true @@ -82050,16 +82085,16 @@ paths: description: Reaction exists content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '201': description: Reaction created content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -82081,10 +82116,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *341 - *342 + - *343 - *101 - - *545 + - *546 responses: '204': description: Response @@ -82104,8 +82139,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -82115,7 +82150,7 @@ paths: application/json: schema: type: array - items: &548 + items: &549 title: Issue Event description: Issue Event type: object @@ -82158,8 +82193,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *546 - required: *547 + properties: *547 + required: *548 nullable: true label: title: Issue Event Label @@ -82467,8 +82502,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *341 - *342 + - *343 - name: event_id in: path required: true @@ -82479,7 +82514,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *549 examples: default: value: @@ -82672,7 +82707,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *541 + '410': *542 '403': *29 x-github: githubCloudOnly: false @@ -82706,9 +82741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *341 - *342 - - &550 + - *343 + - &551 name: issue_number description: The number that identifies the issue. in: path @@ -82724,7 +82759,7 @@ paths: examples: default: summary: Issue - value: *549 + value: *550 pinned_comment: summary: Issue with pinned comment value: @@ -82923,9 +82958,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 '304': *37 x-github: githubCloudOnly: false @@ -82950,9 +82985,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: false content: @@ -83078,13 +83113,13 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 '422': *15 '503': *121 '403': *29 - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83102,9 +83137,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: false content: @@ -83132,7 +83167,7 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83148,9 +83183,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: content: application/json: @@ -83177,7 +83212,7 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83199,9 +83234,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: - - *341 - *342 - - *550 + - *343 + - *551 - name: assignee in: path required: true @@ -83241,9 +83276,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *92 - *17 - *19 @@ -83254,13 +83289,13 @@ paths: application/json: schema: type: array - items: *542 + items: *543 examples: - default: *551 + default: *552 headers: Link: *67 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83289,9 +83324,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: true content: @@ -83313,16 +83348,16 @@ paths: description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *543 + default: *544 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *541 + '410': *542 '422': *15 '404': *6 x-github: @@ -83350,9 +83385,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -83364,12 +83399,12 @@ paths: type: array items: *85 examples: - default: *552 + default: *553 headers: Link: *67 - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83397,9 +83432,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: true content: @@ -83423,15 +83458,15 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *345 + '301': *346 '403': *29 - '410': *541 + '410': *542 '422': *15 '404': *6 x-github: @@ -83462,9 +83497,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *341 - *342 - - *550 + - *343 + - *551 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -83478,13 +83513,13 @@ paths: application/json: schema: *85 examples: - default: *549 - '301': *345 + default: *550 + '301': *346 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *541 + '410': *542 x-github: triggersNotification: true githubCloudOnly: false @@ -83510,9 +83545,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -83524,12 +83559,12 @@ paths: type: array items: *85 examples: - default: *552 + default: *553 headers: Link: *67 - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83546,9 +83581,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -83562,7 +83597,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &555 + - &556 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -83616,7 +83651,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &557 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -83752,7 +83787,7 @@ paths: - performed_via_github_app - assignee - assigner - - &557 + - &558 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -83803,7 +83838,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &559 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -83854,7 +83889,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &560 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -83908,7 +83943,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &561 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -83955,7 +83990,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &562 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -84002,7 +84037,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &562 + - &563 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -84062,7 +84097,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &563 + - &564 title: Locked Issue Event description: Locked Issue Event type: object @@ -84110,7 +84145,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &564 + - &565 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -84176,7 +84211,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &565 + - &566 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -84242,7 +84277,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &566 + - &567 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -84308,7 +84343,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &567 + - &568 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -84399,7 +84434,7 @@ paths: color: red headers: Link: *67 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84416,9 +84451,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -84428,9 +84463,9 @@ paths: application/json: schema: type: array - items: *553 + items: *554 examples: - default: &666 + default: &667 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -84454,9 +84489,9 @@ paths: value: '2025-12-25' headers: Link: *67 - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84473,9 +84508,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -84487,7 +84522,7 @@ paths: type: array items: *84 examples: - default: &554 + default: &555 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84505,9 +84540,9 @@ paths: default: false headers: Link: *67 - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84523,9 +84558,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: false content: @@ -84570,10 +84605,10 @@ paths: type: array items: *84 examples: - default: *554 - '301': *345 + default: *555 + '301': *346 '404': *6 - '410': *541 + '410': *542 '422': *15 x-github: githubCloudOnly: false @@ -84590,9 +84625,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: false content: @@ -84654,10 +84689,10 @@ paths: type: array items: *84 examples: - default: *554 - '301': *345 + default: *555 + '301': *346 '404': *6 - '410': *541 + '410': *542 '422': *15 x-github: githubCloudOnly: false @@ -84674,15 +84709,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 responses: '204': description: Response - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84701,9 +84736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 - name: name in: path required: true @@ -84727,9 +84762,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84749,9 +84784,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: false content: @@ -84779,7 +84814,7 @@ paths: '204': description: Response '403': *29 - '410': *541 + '410': *542 '404': *6 '422': *15 x-github: @@ -84797,9 +84832,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 responses: '204': description: Response @@ -84829,9 +84864,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 responses: '200': description: Response @@ -84839,10 +84874,10 @@ paths: application/json: schema: *85 examples: - default: *549 - '301': *345 + default: *550 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84859,9 +84894,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 - 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. @@ -84887,13 +84922,13 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: *544 + default: *545 headers: Link: *67 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84911,9 +84946,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: true content: @@ -84945,16 +84980,16 @@ paths: description: Response content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '201': description: Response content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -84976,10 +85011,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *341 - *342 - - *550 - - *545 + - *343 + - *551 + - *546 responses: '204': description: Response @@ -85008,9 +85043,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: true content: @@ -85034,7 +85069,7 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -85067,9 +85102,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -85081,11 +85116,11 @@ paths: type: array items: *85 examples: - default: *552 + default: *553 headers: Link: *67 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85113,9 +85148,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: true content: @@ -85144,14 +85179,14 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *541 + '410': *542 '422': *15 '404': *6 x-github: @@ -85171,9 +85206,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: true content: @@ -85206,7 +85241,7 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 '403': *29 '404': *6 '422': *7 @@ -85228,9 +85263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -85245,7 +85280,6 @@ paths: description: Timeline Event type: object anyOf: - - *555 - *556 - *557 - *558 @@ -85258,6 +85292,7 @@ paths: - *565 - *566 - *567 + - *568 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -85318,8 +85353,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *568 - required: *569 + properties: *569 + required: *570 nullable: true required: - event @@ -85574,7 +85609,7 @@ paths: type: string comments: type: array - items: &589 + items: &590 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -85789,7 +85824,7 @@ paths: type: string comments: type: array - items: *472 + items: *473 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -86078,7 +86113,7 @@ paths: headers: Link: *67 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86095,8 +86130,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -86106,7 +86141,7 @@ paths: application/json: schema: type: array - items: &570 + items: &571 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -86172,8 +86207,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -86209,9 +86244,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *571 examples: - default: &571 + default: &572 value: id: 1 key: ssh-rsa AAA... @@ -86245,9 +86280,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *341 - *342 - - &572 + - *343 + - &573 name: key_id description: The unique identifier of the key. in: path @@ -86259,9 +86294,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *571 examples: - default: *571 + default: *572 '404': *6 x-github: githubCloudOnly: false @@ -86279,9 +86314,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *341 - *342 - - *572 + - *343 + - *573 responses: '204': description: Response @@ -86301,8 +86336,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -86314,7 +86349,7 @@ paths: type: array items: *84 examples: - default: *554 + default: *555 headers: Link: *67 '404': *6 @@ -86335,8 +86370,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -86374,7 +86409,7 @@ paths: application/json: schema: *84 examples: - default: &573 + default: &574 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -86406,8 +86441,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *341 - *342 + - *343 - name: name in: path required: true @@ -86420,7 +86455,7 @@ paths: application/json: schema: *84 examples: - default: *573 + default: *574 '404': *6 x-github: githubCloudOnly: false @@ -86437,8 +86472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *341 - *342 + - *343 - name: name in: path required: true @@ -86503,8 +86538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *341 - *342 + - *343 - name: name in: path required: true @@ -86530,8 +86565,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -86570,9 +86605,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *341 - *342 - - *445 + - *343 + - *446 responses: '200': description: Response @@ -86717,8 +86752,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -86783,8 +86818,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -86818,9 +86853,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *475 + schema: *476 examples: - default: *574 + default: *575 '204': description: Response when already merged '404': @@ -86845,8 +86880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *341 - *342 + - *343 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -86887,12 +86922,12 @@ paths: application/json: schema: type: array - items: &575 + items: &576 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *278 - required: *279 + properties: *279 + required: *280 examples: default: value: @@ -86948,8 +86983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -86989,9 +87024,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: &576 + default: &577 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -87050,9 +87085,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *341 - *342 - - &577 + - *343 + - &578 name: milestone_number description: The number that identifies the milestone. in: path @@ -87064,9 +87099,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *576 + default: *577 '404': *6 x-github: githubCloudOnly: false @@ -87083,9 +87118,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *341 - *342 - - *577 + - *343 + - *578 requestBody: required: false content: @@ -87123,9 +87158,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *576 + default: *577 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87141,9 +87176,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *341 - *342 - - *577 + - *343 + - *578 responses: '204': description: Response @@ -87164,9 +87199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *341 - *342 - - *577 + - *343 + - *578 - *17 - *19 responses: @@ -87178,7 +87213,7 @@ paths: type: array items: *84 examples: - default: *554 + default: *555 headers: Link: *67 x-github: @@ -87197,12 +87232,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *341 - *342 - - *578 + - *343 - *579 - - *92 - *580 + - *92 + - *581 - *17 - *19 responses: @@ -87214,7 +87249,7 @@ paths: type: array items: *112 examples: - default: *581 + default: *582 headers: Link: *67 x-github: @@ -87238,8 +87273,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *341 - *342 + - *343 requestBody: required: false content: @@ -87297,14 +87332,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: &582 + schema: &583 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -87429,7 +87464,7 @@ paths: - custom_404 - public examples: - default: &583 + default: &584 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -87470,8 +87505,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -87525,9 +87560,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: *583 + default: *584 '422': *15 '409': *54 x-github: @@ -87550,8 +87585,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -87650,8 +87685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -87677,8 +87712,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -87688,7 +87723,7 @@ paths: application/json: schema: type: array - items: &584 + items: &585 title: Page Build description: Page Build type: object @@ -87782,8 +87817,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *341 - *342 + - *343 responses: '201': description: Response @@ -87828,16 +87863,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: &585 + default: &586 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -87885,8 +87920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *341 - *342 + - *343 - name: build_id in: path required: true @@ -87897,9 +87932,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *585 + default: *586 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87919,8 +87954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -88025,9 +88060,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *341 - *342 - - &586 + - *343 + - &587 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -88085,9 +88120,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *341 - *342 - - *586 + - *343 + - *587 responses: '204': *191 '404': *6 @@ -88114,8 +88149,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -88373,8 +88408,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: - - *341 - *342 + - *343 responses: '200': description: Private vulnerability reporting status @@ -88411,8 +88446,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': *191 '422': *14 @@ -88433,8 +88468,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': *191 '422': *14 @@ -88456,8 +88491,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -88465,7 +88500,7 @@ paths: application/json: schema: type: array - items: *293 + items: *294 examples: default: value: @@ -88496,8 +88531,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: - - *341 - *342 + - *343 requestBody: required: true content: @@ -88509,7 +88544,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *293 + items: *294 required: - properties examples: @@ -88559,8 +88594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *341 - *342 + - *343 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -88620,9 +88655,9 @@ paths: application/json: schema: type: array - items: *479 + items: *480 examples: - default: *587 + default: *588 headers: Link: *67 '304': *37 @@ -88654,8 +88689,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -88720,7 +88755,7 @@ paths: description: Response content: application/json: - schema: &591 + schema: &592 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -88831,8 +88866,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *278 - required: *279 + properties: *279 + required: *280 nullable: true active_lock_reason: type: string @@ -88875,7 +88910,7 @@ paths: items: *4 requested_teams: type: array - items: *330 + items: *331 head: type: object properties: @@ -88913,14 +88948,14 @@ paths: _links: type: object properties: - comments: *280 - commits: *280 - statuses: *280 - html: *280 - issue: *280 - review_comments: *280 - review_comment: *280 - self: *280 + comments: *281 + commits: *281 + statuses: *281 + html: *281 + issue: *281 + review_comments: *281 + review_comment: *281 + self: *281 required: - comments - commits @@ -88931,7 +88966,7 @@ paths: - review_comment - self author_association: *82 - auto_merge: *588 + auto_merge: *589 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -89023,7 +89058,7 @@ paths: - merged_by - review_comments examples: - default: &592 + default: &593 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -89550,8 +89585,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *341 - *342 + - *343 - name: sort in: query required: false @@ -89580,9 +89615,9 @@ paths: application/json: schema: type: array - items: *589 + items: *590 examples: - default: &594 + default: &595 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -89659,17 +89694,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *341 - *342 + - *343 - *101 responses: '200': description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: &590 + default: &591 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -89744,8 +89779,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *341 - *342 + - *343 - *101 requestBody: required: true @@ -89768,9 +89803,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89786,8 +89821,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *341 - *342 + - *343 - *101 responses: '204': @@ -89809,8 +89844,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *341 - *342 + - *343 - *101 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -89837,9 +89872,9 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: *544 + default: *545 headers: Link: *67 '404': *6 @@ -89860,8 +89895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *341 - *342 + - *343 - *101 requestBody: required: true @@ -89894,16 +89929,16 @@ paths: description: Reaction exists content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '201': description: Reaction created content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -89925,10 +89960,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *341 - *342 + - *343 - *101 - - *545 + - *546 responses: '204': description: Response @@ -89971,9 +90006,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *341 - *342 - - &593 + - *343 + - &594 name: pull_number description: The number that identifies the pull request. in: path @@ -89986,9 +90021,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *591 + schema: *592 examples: - default: *592 + default: *593 '304': *37 '404': *6 '406': @@ -90023,9 +90058,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: false content: @@ -90067,9 +90102,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: - default: *592 + default: *593 '422': *15 '403': *29 x-github: @@ -90091,9 +90126,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: true content: @@ -90153,17 +90188,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '401': *25 '403': *29 '404': *6 @@ -90193,9 +90228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 - *109 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -90216,9 +90251,9 @@ paths: application/json: schema: type: array - items: *589 + items: *590 examples: - default: *594 + default: *595 headers: Link: *67 x-github: @@ -90251,9 +90286,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: true content: @@ -90358,7 +90393,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: example-for-a-multi-line-comment: value: @@ -90446,9 +90481,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *341 - *342 - - *593 + - *343 + - *594 - *101 requestBody: required: true @@ -90471,7 +90506,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: default: value: @@ -90557,9 +90592,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 - *17 - *19 responses: @@ -90569,9 +90604,9 @@ paths: application/json: schema: type: array - items: *475 + items: *476 examples: - default: *595 + default: *596 headers: Link: *67 x-github: @@ -90601,9 +90636,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *341 - *342 - - *593 + - *343 + - *594 - *17 - *19 responses: @@ -90613,7 +90648,7 @@ paths: application/json: schema: type: array - items: *488 + items: *489 examples: default: value: @@ -90651,9 +90686,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *341 - *342 - - *593 + - *343 + - *594 responses: '204': description: Response if pull request has been merged @@ -90676,9 +90711,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: false content: @@ -90789,9 +90824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 responses: '200': description: Response @@ -90866,9 +90901,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: false content: @@ -90905,7 +90940,7 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: default: value: @@ -91441,9 +91476,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: true content: @@ -91477,7 +91512,7 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: default: value: @@ -91982,9 +92017,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 - *17 - *19 responses: @@ -91994,7 +92029,7 @@ paths: application/json: schema: type: array - items: &596 + items: &597 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -92145,9 +92180,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: false content: @@ -92233,9 +92268,9 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: - default: &598 + default: &599 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -92298,10 +92333,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *341 - *342 - - *593 - - &597 + - *343 + - *594 + - &598 name: review_id description: The unique identifier of the review. in: path @@ -92313,9 +92348,9 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: - default: &599 + default: &600 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -92374,10 +92409,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *341 - *342 - - *593 - - *597 + - *343 + - *594 + - *598 requestBody: required: true content: @@ -92400,7 +92435,7 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: default: value: @@ -92462,18 +92497,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *341 - *342 - - *593 - - *597 + - *343 + - *594 + - *598 responses: '200': description: Response content: application/json: - schema: *596 + schema: *597 examples: - default: *598 + default: *599 '422': *7 '404': *6 x-github: @@ -92500,10 +92535,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *341 - *342 - - *593 - - *597 + - *343 + - *594 + - *598 - *17 - *19 responses: @@ -92586,9 +92621,9 @@ paths: _links: type: object properties: - self: *280 - html: *280 - pull_request: *280 + self: *281 + html: *281 + pull_request: *281 required: - self - html @@ -92738,10 +92773,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *341 - *342 - - *593 - - *597 + - *343 + - *594 + - *598 requestBody: required: true content: @@ -92769,7 +92804,7 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: default: value: @@ -92832,10 +92867,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *341 - *342 - - *593 - - *597 + - *343 + - *594 + - *598 requestBody: required: true content: @@ -92870,9 +92905,9 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: - default: *599 + default: *600 '404': *6 '422': *7 '403': *29 @@ -92894,9 +92929,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: false content: @@ -92959,8 +92994,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *341 - *342 + - *343 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -92973,9 +93008,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: &601 + default: &602 value: type: file encoding: base64 @@ -93017,8 +93052,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *341 - *342 + - *343 - name: dir description: The alternate path to look for a README file in: path @@ -93038,9 +93073,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: *601 + default: *602 '404': *6 '422': *15 x-github: @@ -93062,8 +93097,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -93073,7 +93108,7 @@ paths: application/json: schema: type: array - items: *602 + items: *603 examples: default: value: @@ -93167,8 +93202,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -93244,9 +93279,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: &606 + default: &607 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -93351,9 +93386,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *341 - *342 - - &604 + - *343 + - &605 name: asset_id description: The unique identifier of the asset. in: path @@ -93365,9 +93400,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: - default: &605 + default: &606 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 @@ -93402,7 +93437,7 @@ paths: type: User site_admin: false '404': *6 - '302': *490 + '302': *491 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93418,9 +93453,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *341 - *342 - - *604 + - *343 + - *605 requestBody: required: false content: @@ -93448,9 +93483,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: - default: *605 + default: *606 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93466,9 +93501,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *341 - *342 - - *604 + - *343 + - *605 responses: '204': description: Response @@ -93493,8 +93528,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -93579,16 +93614,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *606 + default: *607 '404': *6 x-github: githubCloudOnly: false @@ -93606,8 +93641,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *341 - *342 + - *343 - name: tag description: tag parameter in: path @@ -93620,9 +93655,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *606 + default: *607 '404': *6 x-github: githubCloudOnly: false @@ -93644,9 +93679,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *341 - *342 - - &607 + - *343 + - &608 name: release_id description: The unique identifier of the release. in: path @@ -93660,9 +93695,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: *602 + schema: *603 examples: - default: *606 + default: *607 '401': description: Unauthorized x-github: @@ -93680,9 +93715,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *341 - *342 - - *607 + - *343 + - *608 requestBody: required: false content: @@ -93746,9 +93781,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *606 + default: *607 '404': description: Not Found if the discussion category name is invalid content: @@ -93769,9 +93804,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *341 - *342 - - *607 + - *343 + - *608 responses: '204': description: Response @@ -93792,9 +93827,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *341 - *342 - - *607 + - *343 + - *608 - *17 - *19 responses: @@ -93804,7 +93839,7 @@ paths: application/json: schema: type: array - items: *603 + items: *604 examples: default: value: @@ -93885,9 +93920,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: - - *341 - *342 - - *607 + - *343 + - *608 - name: name in: query required: true @@ -93913,7 +93948,7 @@ paths: description: Response for successful upload content: application/json: - schema: *603 + schema: *604 examples: response-for-successful-upload: value: @@ -93968,9 +94003,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *341 - *342 - - *607 + - *343 + - *608 - 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. @@ -93994,9 +94029,9 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: *544 + default: *545 headers: Link: *67 '404': *6 @@ -94017,9 +94052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *341 - *342 - - *607 + - *343 + - *608 requestBody: required: true content: @@ -94049,16 +94084,16 @@ paths: description: Reaction exists content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '201': description: Reaction created content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -94080,10 +94115,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *341 - *342 - - *607 - - *545 + - *343 + - *608 + - *546 responses: '204': description: Response @@ -94107,9 +94142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *341 - *342 - - *408 + - *343 + - *409 - *17 - *19 responses: @@ -94125,8 +94160,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *302 - - &608 + - *303 + - &609 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -94145,69 +94180,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *303 - - *608 - allOf: - *304 - - *608 + - *609 - allOf: - *305 - - *608 - - allOf: - *609 - - *608 - allOf: - *306 - - *608 + - *609 + - allOf: + - *610 + - *609 - allOf: - *307 - - *608 + - *609 - allOf: - *308 - - *608 + - *609 - allOf: - *309 - - *608 + - *609 - allOf: - *310 - - *608 + - *609 - allOf: - *311 - - *608 + - *609 - allOf: - *312 - - *608 + - *609 - allOf: - *313 - - *608 + - *609 - allOf: - *314 - - *608 + - *609 - allOf: - *315 - - *608 + - *609 - allOf: - *316 - - *608 + - *609 - allOf: - *317 - - *608 + - *609 - allOf: - *318 - - *608 + - *609 - allOf: - *319 - - *608 + - *609 - allOf: - *320 - - *608 + - *609 - allOf: - *321 - - *608 + - *609 - allOf: - *322 - - *608 + - *609 + - allOf: + - *323 + - *609 examples: default: value: @@ -94246,8 +94281,8 @@ paths: category: repos subcategory: rules parameters: - - *341 - *342 + - *343 - *17 - *19 - name: includes_parents @@ -94258,7 +94293,7 @@ paths: schema: type: boolean default: true - - *610 + - *611 responses: '200': description: Response @@ -94266,7 +94301,7 @@ paths: application/json: schema: type: array - items: *323 + items: *324 examples: default: value: @@ -94313,8 +94348,8 @@ paths: category: repos subcategory: rules parameters: - - *341 - *342 + - *343 requestBody: description: Request body required: true @@ -94334,16 +94369,16 @@ paths: - tag - push default: branch - enforcement: *299 + enforcement: *300 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *300 - conditions: *297 + items: *301 + conditions: *298 rules: type: array description: An array of rules within the ruleset. - items: *611 + items: *612 required: - name - enforcement @@ -94374,9 +94409,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: &621 + default: &622 value: id: 42 name: super cool ruleset @@ -94424,12 +94459,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *341 - *342 - - *612 + - *343 - *613 - *614 - *615 + - *616 - *17 - *19 responses: @@ -94437,9 +94472,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *617 examples: - default: *617 + default: *618 '404': *6 '500': *55 x-github: @@ -94460,17 +94495,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *341 - *342 - - *618 + - *343 + - *619 responses: '200': description: Response content: application/json: - schema: *619 + schema: *620 examples: - default: *620 + default: *621 '404': *6 '500': *55 x-github: @@ -94498,8 +94533,8 @@ paths: category: repos subcategory: rules parameters: - - *341 - *342 + - *343 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94519,9 +94554,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: *621 + default: *622 '404': *6 '500': *55 put: @@ -94539,8 +94574,8 @@ paths: category: repos subcategory: rules parameters: - - *341 - *342 + - *343 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94565,16 +94600,16 @@ paths: - branch - tag - push - enforcement: *299 + enforcement: *300 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *300 - conditions: *297 + items: *301 + conditions: *298 rules: description: An array of rules within the ruleset. type: array - items: *611 + items: *612 examples: default: value: @@ -94602,9 +94637,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: *621 + default: *622 '404': *6 '422': *15 '500': *55 @@ -94623,8 +94658,8 @@ paths: category: repos subcategory: rules parameters: - - *341 - *342 + - *343 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94647,8 +94682,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *341 - *342 + - *343 - *17 - *19 - name: ruleset_id @@ -94664,9 +94699,9 @@ paths: application/json: schema: type: array - items: *326 + items: *327 examples: - default: *622 + default: *623 '404': *6 '500': *55 x-github: @@ -94685,8 +94720,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *341 - *342 + - *343 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94704,7 +94739,7 @@ paths: description: Response content: application/json: - schema: *623 + schema: *624 examples: default: value: @@ -94759,22 +94794,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *341 - *342 - - *624 + - *343 - *625 - *626 - *627 - *628 + - *629 - *61 - *19 - *17 - - *629 - *630 - *631 - *632 - *633 - *634 + - *635 responses: '200': description: Response @@ -94782,7 +94817,7 @@ paths: application/json: schema: type: array - items: &638 + items: &639 type: object properties: number: *178 @@ -94801,8 +94836,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *635 - resolution: *636 + state: *636 + resolution: *637 resolved_at: type: string format: date-time @@ -94898,7 +94933,7 @@ paths: pull request. ' - oneOf: *637 + oneOf: *638 nullable: true has_more_locations: type: boolean @@ -95062,16 +95097,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *341 - *342 - - *439 - - *634 + - *343 + - *440 + - *635 responses: '200': description: Response content: application/json: - schema: *638 + schema: *639 examples: default: value: @@ -95125,9 +95160,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *341 - *342 - - *439 + - *343 + - *440 requestBody: required: true content: @@ -95135,8 +95170,8 @@ paths: schema: type: object properties: - state: *635 - resolution: *636 + state: *636 + resolution: *637 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -95172,7 +95207,7 @@ paths: description: Response content: application/json: - schema: *638 + schema: *639 examples: default: value: @@ -95267,9 +95302,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *341 - *342 - - *439 + - *343 + - *440 - *19 - *17 responses: @@ -95280,7 +95315,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &796 + items: &797 type: object properties: type: @@ -95306,7 +95341,6 @@ paths: example: commit details: oneOf: - - *639 - *640 - *641 - *642 @@ -95319,6 +95353,7 @@ paths: - *649 - *650 - *651 + - *652 examples: default: value: @@ -95404,8 +95439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -95413,14 +95448,14 @@ paths: schema: type: object properties: - reason: &653 + reason: &654 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *652 + placeholder_id: *653 required: - reason - placeholder_id @@ -95437,7 +95472,7 @@ paths: schema: type: object properties: - reason: *653 + reason: *654 expire_at: type: string format: date-time @@ -95483,8 +95518,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: - - *341 - *342 + - *343 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -95499,7 +95534,7 @@ paths: properties: incremental_scans: type: array - items: &654 + items: &655 description: Information on a single scan performed by secret scanning on the repository type: object @@ -95525,15 +95560,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *654 + items: *655 backfill_scans: type: array - items: *654 + items: *655 custom_pattern_backfill_scans: type: array items: allOf: - - *654 + - *655 - type: object properties: pattern_name: @@ -95603,8 +95638,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *341 - *342 + - *343 - *61 - name: sort description: The property to sort the results by. @@ -95648,9 +95683,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: *656 + default: *657 '400': *14 '404': *6 x-github: @@ -95673,8 +95708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -95747,7 +95782,7 @@ paths: login: type: string description: The username of the user credited. - type: *329 + type: *330 required: - login - type @@ -95834,9 +95869,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: &658 + default: &659 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -96069,8 +96104,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -96174,7 +96209,7 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: default: value: @@ -96321,17 +96356,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *341 - *342 - - *657 + - *343 + - *658 responses: '200': description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: *658 + default: *659 '403': *29 '404': *6 x-github: @@ -96355,9 +96390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *341 - *342 - - *657 + - *343 + - *658 requestBody: required: true content: @@ -96430,7 +96465,7 @@ paths: login: type: string description: The username of the user credited. - type: *329 + type: *330 required: - login - type @@ -96516,10 +96551,10 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: *658 - add_credit: *658 + default: *659 + add_credit: *659 '403': *29 '404': *6 '422': @@ -96557,9 +96592,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: - - *341 - *342 - - *657 + - *343 + - *658 responses: '202': *39 '400': *14 @@ -96586,17 +96621,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *341 - *342 - - *657 + - *343 + - *658 responses: '202': description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *346 + default: *347 '400': *14 '422': *15 '403': *29 @@ -96622,8 +96657,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -96722,8 +96757,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *341 - *342 + - *343 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -96732,7 +96767,7 @@ paths: application/json: schema: type: array - items: &659 + items: &660 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -96765,8 +96800,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -96842,8 +96877,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -96939,8 +96974,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *341 - *342 + - *343 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -97094,8 +97129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *341 - *342 + - *343 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -97105,7 +97140,7 @@ paths: application/json: schema: type: array - items: *659 + items: *660 examples: default: value: @@ -97138,8 +97173,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *341 - *342 + - *343 - name: sha in: path required: true @@ -97193,7 +97228,7 @@ paths: description: Response content: application/json: - schema: *660 + schema: *661 examples: default: value: @@ -97247,8 +97282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -97280,14 +97315,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *341 - *342 + - *343 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &661 + schema: &662 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -97355,8 +97390,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *341 - *342 + - *343 requestBody: required: false content: @@ -97382,7 +97417,7 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: default: value: @@ -97409,8 +97444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -97430,8 +97465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -97510,8 +97545,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *341 - *342 + - *343 - name: ref in: path required: true @@ -97547,8 +97582,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -97560,7 +97595,7 @@ paths: type: array items: *197 examples: - default: *258 + default: *259 headers: Link: *67 '404': *6 @@ -97580,8 +97615,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *341 - *342 + - *343 - *19 - *17 responses: @@ -97589,7 +97624,7 @@ paths: description: Response content: application/json: - schema: &662 + schema: &663 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -97601,7 +97636,7 @@ paths: required: - names examples: - default: &663 + default: &664 value: names: - octocat @@ -97624,8 +97659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -97656,9 +97691,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *663 examples: - default: *663 + default: *664 '404': *6 '422': *7 x-github: @@ -97679,9 +97714,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *341 - *342 - - &664 + - *343 + - &665 name: per description: The time frame to display results for. in: query @@ -97710,7 +97745,7 @@ paths: example: 128 clones: type: array - items: &665 + items: &666 title: Traffic type: object properties: @@ -97797,8 +97832,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -97888,8 +97923,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -97949,9 +97984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *341 - *342 - - *664 + - *343 + - *665 responses: '200': description: Response @@ -97970,7 +98005,7 @@ paths: example: 3782 views: type: array - items: *665 + items: *666 required: - uniques - count @@ -98047,8 +98082,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -98322,8 +98357,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -98346,8 +98381,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -98369,8 +98404,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -98396,8 +98431,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *341 - *342 + - *343 - name: ref in: path required: true @@ -98489,9 +98524,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *346 + default: *347 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -98639,7 +98674,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *149 - - *550 + - *551 requestBody: required: true content: @@ -98703,9 +98738,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *553 + items: *554 examples: - default: *666 + default: *667 '400': *14 '403': *29 '404': *6 @@ -98742,7 +98777,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *149 - - *550 + - *551 requestBody: required: true content: @@ -98807,9 +98842,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *553 + items: *554 examples: - default: *666 + default: *667 '400': *14 '403': *29 '404': *6 @@ -98841,8 +98876,8 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *149 - - *550 - - *240 + - *551 + - *241 responses: '204': description: Issue field value deleted successfully @@ -98879,6 +98914,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 @@ -98981,7 +99019,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &667 + text_matches: &668 title: Search Result Text Matches type: array items: @@ -99143,7 +99181,7 @@ paths: enum: - author-date - committer-date - - &668 + - &669 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 @@ -99214,7 +99252,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *406 + properties: *407 nullable: true comment_count: type: integer @@ -99234,7 +99272,7 @@ paths: url: type: string format: uri - verification: *527 + verification: *528 required: - author - committer @@ -99253,7 +99291,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *406 + properties: *407 nullable: true parents: type: array @@ -99271,7 +99309,7 @@ paths: type: number node_id: type: string - text_matches: *667 + text_matches: *668 required: - sha - node_id @@ -99463,7 +99501,7 @@ paths: - interactions - created - updated - - *668 + - *669 - *17 - *19 - name: advanced_search @@ -99577,11 +99615,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: type: string state_reason: @@ -99598,8 +99636,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *278 - required: *279 + properties: *279 + required: *280 nullable: true comments: type: integer @@ -99613,7 +99651,7 @@ paths: type: string format: date-time nullable: true - text_matches: *667 + text_matches: *668 pull_request: type: object properties: @@ -99657,7 +99695,7 @@ paths: timeline_url: type: string format: uri - type: *241 + type: *242 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -99885,7 +99923,7 @@ paths: enum: - created - updated - - *668 + - *669 - *17 - *19 responses: @@ -99929,7 +99967,7 @@ paths: nullable: true score: type: number - text_matches: *667 + text_matches: *668 required: - id - node_id @@ -100014,7 +100052,7 @@ paths: - forks - help-wanted-issues - updated - - *668 + - *669 - *17 - *19 responses: @@ -100262,7 +100300,7 @@ paths: - admin - pull - push - text_matches: *667 + text_matches: *668 temp_clone_token: type: string allow_merge_commit: @@ -100562,7 +100600,7 @@ paths: type: string format: uri nullable: true - text_matches: *667 + text_matches: *668 related: type: array nullable: true @@ -100753,7 +100791,7 @@ paths: - followers - repositories - joined - - *668 + - *669 - *17 - *19 responses: @@ -100857,7 +100895,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *667 + text_matches: *668 blog: type: string nullable: true @@ -100936,7 +100974,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &671 + - &672 name: team_id description: The unique identifier of the team. in: path @@ -100948,9 +100986,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 '404': *6 x-github: githubCloudOnly: false @@ -100977,7 +101015,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *671 + - *672 requestBody: required: true content: @@ -101040,16 +101078,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 '201': description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 '404': *6 '422': *15 '403': *29 @@ -101077,7 +101115,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *671 + - *672 responses: '204': description: Response @@ -101106,7 +101144,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *671 + - *672 - *17 - *19 responses: @@ -101116,9 +101154,9 @@ paths: application/json: schema: type: array - items: *235 + items: *236 examples: - default: *236 + default: *237 headers: Link: *67 x-github: @@ -101144,7 +101182,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *671 + - *672 - name: role description: Filters members returned by their role in the team. in: query @@ -101195,7 +101233,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *671 + - *672 - *71 responses: '204': @@ -101232,7 +101270,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *671 + - *672 - *71 responses: '204': @@ -101272,7 +101310,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *671 + - *672 - *71 responses: '204': @@ -101309,16 +101347,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *671 + - *672 - *71 responses: '200': description: Response content: application/json: - schema: *340 + schema: *341 examples: - response-if-user-is-a-team-maintainer: *672 + response-if-user-is-a-team-maintainer: *673 '404': *6 x-github: githubCloudOnly: false @@ -101351,7 +101389,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *671 + - *672 - *71 requestBody: required: false @@ -101377,9 +101415,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - response-if-users-membership-with-team-is-now-pending: *673 + response-if-users-membership-with-team-is-now-pending: *674 '403': description: Forbidden if team synchronization is set up '422': @@ -101413,7 +101451,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *671 + - *672 - *71 responses: '204': @@ -101441,7 +101479,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *671 + - *672 - *17 - *19 responses: @@ -101453,7 +101491,7 @@ paths: type: array items: *160 examples: - default: *265 + default: *266 headers: Link: *67 '404': *6 @@ -101483,15 +101521,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *671 - - *341 + - *672 - *342 + - *343 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *674 + schema: *675 examples: alternative-response-with-extra-repository-information: value: @@ -101642,9 +101680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *671 - - *341 + - *672 - *342 + - *343 requestBody: required: false content: @@ -101694,9 +101732,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *671 - - *341 + - *672 - *342 + - *343 responses: '204': description: Response @@ -101721,7 +101759,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *671 + - *672 - *17 - *19 responses: @@ -101733,7 +101771,7 @@ paths: type: array items: *197 examples: - response-if-child-teams-exist: *675 + response-if-child-teams-exist: *676 headers: Link: *67 '404': *6 @@ -101766,7 +101804,7 @@ paths: application/json: schema: oneOf: - - &677 + - &678 title: Private User description: Private User type: object @@ -101969,7 +102007,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *676 + - *677 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -102122,7 +102160,7 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: default: value: @@ -102325,9 +102363,9 @@ paths: type: integer codespaces: type: array - items: *246 + items: *247 examples: - default: *247 + default: *248 '304': *37 '500': *55 '401': *25 @@ -102466,17 +102504,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '401': *25 '403': *29 '404': *6 @@ -102520,7 +102558,7 @@ paths: type: integer secrets: type: array - items: &678 + items: &679 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -102560,7 +102598,7 @@ paths: - visibility - selected_repositories_url examples: - default: *465 + default: *466 headers: Link: *67 x-github: @@ -102636,7 +102674,7 @@ paths: description: Response content: application/json: - schema: *678 + schema: *679 examples: default: value: @@ -102926,15 +102964,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *248 + - *249 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '304': *37 '500': *55 '401': *25 @@ -102960,7 +102998,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *248 + - *249 requestBody: required: false content: @@ -102990,9 +103028,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '401': *25 '403': *29 '404': *6 @@ -103014,7 +103052,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *248 + - *249 responses: '202': *39 '304': *37 @@ -103043,13 +103081,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *248 + - *249 responses: '202': description: Response content: application/json: - schema: &679 + schema: &680 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -103090,7 +103128,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &680 + default: &681 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -103122,7 +103160,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *248 + - *249 - name: export_id in: path required: true @@ -103135,9 +103173,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: - default: *680 + default: *681 '404': *6 x-github: githubCloudOnly: false @@ -103158,7 +103196,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *248 + - *249 responses: '200': description: Response @@ -103174,9 +103212,9 @@ paths: type: integer machines: type: array - items: *681 + items: *682 examples: - default: *682 + default: *683 '304': *37 '500': *55 '401': *25 @@ -103205,7 +103243,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *248 + - *249 requestBody: required: true content: @@ -103255,13 +103293,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *344 + repository: *345 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *463 - required: *464 + properties: *464 + required: *465 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -104035,15 +104073,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *248 + - *249 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '304': *37 '500': *55 '400': *14 @@ -104075,15 +104113,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *248 + - *249 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '500': *55 '401': *25 '403': *29 @@ -104113,9 +104151,9 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: &693 + default: &694 value: - id: 197 name: hello_docker @@ -104216,7 +104254,7 @@ paths: application/json: schema: type: array - items: &683 + items: &684 title: Email description: Email type: object @@ -104281,9 +104319,9 @@ paths: application/json: schema: type: array - items: *683 + items: *684 examples: - default: &695 + default: &696 value: - email: octocat@github.com verified: true @@ -104358,7 +104396,7 @@ paths: application/json: schema: type: array - items: *683 + items: *684 examples: default: value: @@ -104614,7 +104652,7 @@ paths: application/json: schema: type: array - items: &684 + items: &685 title: GPG Key description: A unique encryption key type: object @@ -104745,7 +104783,7 @@ paths: - subkeys - revoked examples: - default: &711 + default: &712 value: - id: 3 name: Octocat's GPG Key @@ -104830,9 +104868,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: &685 + default: &686 value: id: 3 name: Octocat's GPG Key @@ -104889,7 +104927,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &686 + - &687 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -104901,9 +104939,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: *685 + default: *686 '404': *6 '304': *37 '403': *29 @@ -104926,7 +104964,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *686 + - *687 responses: '204': description: Response @@ -105205,12 +105243,12 @@ paths: application/json: schema: anyOf: - - *233 + - *234 - type: object properties: {} additionalProperties: false examples: - default: *234 + default: *235 '204': description: Response when there are no restrictions x-github: @@ -105234,7 +105272,7 @@ paths: required: true content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -105245,7 +105283,7 @@ paths: description: Response content: application/json: - schema: *233 + schema: *234 examples: default: value: @@ -105326,7 +105364,7 @@ paths: - closed - all default: open - - *244 + - *245 - name: sort description: What to sort results by. in: query @@ -105351,7 +105389,7 @@ paths: type: array items: *85 examples: - default: *245 + default: *246 headers: Link: *67 '404': *6 @@ -105384,7 +105422,7 @@ paths: application/json: schema: type: array - items: &687 + items: &688 title: Key description: Key type: object @@ -105485,9 +105523,9 @@ paths: description: Response content: application/json: - schema: *687 + schema: *688 examples: - default: &688 + default: &689 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -105520,15 +105558,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *572 + - *573 responses: '200': description: Response content: application/json: - schema: *687 + schema: *688 examples: - default: *688 + default: *689 '404': *6 '304': *37 '403': *29 @@ -105551,7 +105589,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *572 + - *573 responses: '204': description: Response @@ -105584,7 +105622,7 @@ paths: application/json: schema: type: array - items: &689 + items: &690 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -105652,7 +105690,7 @@ paths: - account - plan examples: - default: &690 + default: &691 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -105714,9 +105752,9 @@ paths: application/json: schema: type: array - items: *689 + items: *690 examples: - default: *690 + default: *691 headers: Link: *67 '304': *37 @@ -105756,7 +105794,7 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: default: value: @@ -105870,7 +105908,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -105957,7 +105995,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -106029,7 +106067,7 @@ paths: application/json: schema: type: array - items: *252 + items: *253 examples: default: value: @@ -106282,7 +106320,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -106462,7 +106500,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *253 + - *254 - name: exclude in: query required: false @@ -106475,7 +106513,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -106669,7 +106707,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *253 + - *254 responses: '302': description: Response @@ -106695,7 +106733,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *253 + - *254 responses: '204': description: Response @@ -106724,8 +106762,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *253 - - *691 + - *254 + - *692 responses: '204': description: Response @@ -106749,7 +106787,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *253 + - *254 - *17 - *19 responses: @@ -106761,7 +106799,7 @@ paths: type: array items: *160 examples: - default: *265 + default: *266 headers: Link: *67 '404': *6 @@ -106840,7 +106878,7 @@ paths: - docker - nuget - container - - *692 + - *693 - *19 - *17 responses: @@ -106850,10 +106888,10 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: *693 - '400': *694 + default: *694 + '400': *695 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106873,16 +106911,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *259 + schema: *260 examples: - default: &712 + default: &713 value: id: 40201 name: octo-name @@ -106995,8 +107033,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -107026,8 +107064,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *261 - *262 + - *263 - name: token description: package token schema: @@ -107059,8 +107097,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: - - *261 - *262 + - *263 - *19 - *17 - name: state @@ -107080,7 +107118,7 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: default: value: @@ -107129,15 +107167,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *261 - *262 - - *264 + - *263 + - *265 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: default: value: @@ -107173,9 +107211,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *261 - *262 - - *264 + - *263 + - *265 responses: '204': description: Response @@ -107205,9 +107243,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *261 - *262 - - *264 + - *263 + - *265 responses: '204': description: Response @@ -107244,9 +107282,9 @@ paths: application/json: schema: type: array - items: *683 + items: *684 examples: - default: *695 + default: *696 headers: Link: *67 '304': *37 @@ -107359,7 +107397,7 @@ paths: type: array items: *79 examples: - default: &702 + default: &703 summary: Default response value: - id: 1296269 @@ -107663,9 +107701,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *346 + default: *347 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -107703,9 +107741,9 @@ paths: application/json: schema: type: array - items: *540 + items: *541 examples: - default: *696 + default: *697 headers: Link: *67 '304': *37 @@ -107728,7 +107766,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *237 + - *238 responses: '204': description: Response @@ -107751,7 +107789,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *237 + - *238 responses: '204': description: Response @@ -107784,7 +107822,7 @@ paths: application/json: schema: type: array - items: &697 + items: &698 title: Social account description: Social media account type: object @@ -107799,7 +107837,7 @@ paths: - provider - url examples: - default: &698 + default: &699 value: - provider: twitter url: https://twitter.com/github @@ -107861,9 +107899,9 @@ paths: application/json: schema: type: array - items: *697 + items: *698 examples: - default: *698 + default: *699 '422': *15 '304': *37 '404': *6 @@ -107950,7 +107988,7 @@ paths: application/json: schema: type: array - items: &699 + items: &700 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -107970,7 +108008,7 @@ paths: - title - created_at examples: - default: &730 + default: &731 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -108034,9 +108072,9 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: &700 + default: &701 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -108066,7 +108104,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: - - &701 + - &702 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -108078,9 +108116,9 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: - default: *700 + default: *701 '404': *6 '304': *37 '403': *29 @@ -108103,7 +108141,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: - - *701 + - *702 responses: '204': description: Response @@ -108132,7 +108170,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &731 + - &732 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 @@ -108157,11 +108195,11 @@ paths: type: array items: *79 examples: - default-response: *702 + default-response: *703 application/vnd.github.v3.star+json: schema: type: array - items: &732 + items: &733 title: Starred Repository description: Starred Repository type: object @@ -108317,8 +108355,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: - - *341 - *342 + - *343 responses: '204': description: Response if this repository is starred by you @@ -108346,8 +108384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -108371,8 +108409,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -108407,7 +108445,7 @@ paths: type: array items: *160 examples: - default: *265 + default: *266 headers: Link: *67 '304': *37 @@ -108444,7 +108482,7 @@ paths: application/json: schema: type: array - items: *337 + items: *338 examples: default: value: @@ -108530,10 +108568,10 @@ paths: application/json: schema: oneOf: + - *678 - *677 - - *676 examples: - default-response: &706 + default-response: &707 summary: Default response value: login: octocat @@ -108568,7 +108606,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &707 + response-with-git-hub-plan-information: &708 summary: Response with GitHub plan information value: login: octocat @@ -108625,14 +108663,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &704 + - &705 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *277 + - *278 requestBody: required: true description: Details of the draft item to create in the project. @@ -108666,9 +108704,9 @@ paths: description: Response content: application/json: - schema: *283 + schema: *284 examples: - draft_issue: *284 + draft_issue: *285 '304': *37 '403': *29 '401': *25 @@ -108691,7 +108729,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *703 + - *704 - *17 responses: '200': @@ -108726,8 +108764,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *704 - - *277 + - *705 + - *278 requestBody: required: true content: @@ -108798,17 +108836,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *705 + schema: *706 examples: table_view: summary: Response for creating a table view - value: *288 + value: *289 board_view: summary: Response for creating a board view with filter - value: *288 + value: *289 roadmap_view: summary: Response for creating a roadmap view - value: *288 + value: *289 '304': *37 '403': *29 '401': *25 @@ -108850,11 +108888,11 @@ paths: application/json: schema: oneOf: + - *678 - *677 - - *676 examples: - default-response: *706 - response-with-git-hub-plan-information: *707 + default-response: *707 + response-with-git-hub-plan-information: *708 '404': *6 x-github: githubCloudOnly: false @@ -108904,8 +108942,8 @@ paths: required: - subject_digests examples: - default: *708 - withPredicateType: *709 + default: *709 + withPredicateType: *710 responses: '200': description: Response @@ -108958,7 +108996,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *710 + default: *711 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -109163,7 +109201,7 @@ paths: initiator: type: string examples: - default: *402 + default: *403 '201': description: Response content: @@ -109202,9 +109240,9 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: *693 + default: *694 '403': *29 '401': *25 x-github: @@ -109588,9 +109626,9 @@ paths: application/json: schema: type: array - items: *684 + items: *685 examples: - default: *711 + default: *712 headers: Link: *67 x-github: @@ -109694,7 +109732,7 @@ paths: application/json: schema: *22 examples: - default: *537 + default: *538 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109818,7 +109856,7 @@ paths: - docker - nuget - container - - *692 + - *693 - *71 - *19 - *17 @@ -109829,12 +109867,12 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: *693 + default: *694 '403': *29 '401': *25 - '400': *694 + '400': *695 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109854,17 +109892,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *261 - *262 + - *263 - *71 responses: '200': description: Response content: application/json: - schema: *259 + schema: *260 examples: - default: *712 + default: *713 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109885,8 +109923,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *261 - *262 + - *263 - *71 responses: '204': @@ -109919,8 +109957,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *261 - *262 + - *263 - *71 - name: token description: package token @@ -109953,8 +109991,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: - - *261 - *262 + - *263 - *71 responses: '200': @@ -109963,7 +110001,7 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: default: value: @@ -110021,16 +110059,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *261 - *262 - - *264 + - *263 + - *265 - *71 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: default: value: @@ -110065,10 +110103,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *261 - *262 + - *263 - *71 - - *264 + - *265 responses: '204': description: Response @@ -110100,10 +110138,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *261 - *262 + - *263 - *71 - - *264 + - *265 responses: '204': description: Response @@ -110144,9 +110182,9 @@ paths: application/json: schema: type: array - items: *275 + items: *276 examples: - default: *276 + default: *277 headers: Link: *67 '304': *37 @@ -110168,16 +110206,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *277 + - *278 - *71 responses: '200': description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: *276 + default: *277 headers: Link: *67 '304': *37 @@ -110199,7 +110237,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *277 + - *278 - *71 - *17 - *47 @@ -110211,9 +110249,9 @@ paths: application/json: schema: type: array - items: *281 + items: *282 examples: - default: *713 + default: *714 headers: Link: *67 '304': *37 @@ -110235,7 +110273,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *71 - - *277 + - *278 requestBody: required: true content: @@ -110273,7 +110311,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *714 + items: *715 required: - name - data_type @@ -110289,7 +110327,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *715 + iteration_configuration: *716 required: - name - data_type @@ -110311,20 +110349,20 @@ paths: value: name: Due date data_type: date - single_select_field: *716 - iteration_field: *717 + single_select_field: *717 + iteration_field: *718 responses: '201': description: Response content: application/json: - schema: *281 + schema: *282 examples: - text_field: *718 - number_field: *719 - date_field: *720 - single_select_field: *721 - iteration_field: *722 + text_field: *719 + number_field: *720 + date_field: *721 + single_select_field: *722 + iteration_field: *723 '304': *37 '403': *29 '401': *25 @@ -110345,17 +110383,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *277 - - *723 + - *278 + - *724 - *71 responses: '200': description: Response content: application/json: - schema: *281 + schema: *282 examples: - default: *724 + default: *725 headers: Link: *67 '304': *37 @@ -110378,7 +110416,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *277 + - *278 - *71 - *47 - *48 @@ -110411,9 +110449,9 @@ paths: application/json: schema: type: array - items: *285 + items: *286 examples: - default: *286 + default: *287 headers: Link: *67 '304': *37 @@ -110435,7 +110473,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *71 - - *277 + - *278 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -110505,22 +110543,22 @@ paths: description: Response content: application/json: - schema: *283 + schema: *284 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *284 + value: *285 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *284 + value: *285 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *284 + value: *285 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *284 + value: *285 '304': *37 '403': *29 '401': *25 @@ -110540,9 +110578,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *277 + - *278 - *71 - - *287 + - *288 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -110562,9 +110600,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 headers: Link: *67 '304': *37 @@ -110585,9 +110623,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *277 + - *278 - *71 - - *287 + - *288 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -110657,13 +110695,13 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - text_field: *286 - number_field: *286 - date_field: *286 - single_select_field: *286 - iteration_field: *286 + text_field: *287 + number_field: *287 + date_field: *287 + single_select_field: *287 + iteration_field: *287 '401': *25 '403': *29 '404': *6 @@ -110683,9 +110721,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *277 + - *278 - *71 - - *287 + - *288 responses: '204': description: Response @@ -110707,9 +110745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *277 + - *278 - *71 - - *725 + - *726 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -110735,9 +110773,9 @@ paths: application/json: schema: type: array - items: *285 + items: *286 examples: - default: *286 + default: *287 headers: Link: *67 '304': *37 @@ -110958,7 +110996,7 @@ paths: type: array items: *160 examples: - default: *265 + default: *266 headers: Link: *67 x-github: @@ -110984,7 +111022,7 @@ paths: - *123 - *125 - *124 - - *726 + - *727 - *126 responses: '200': @@ -111115,7 +111153,7 @@ paths: parameters: - *71 - *123 - - *727 + - *728 - *124 responses: '200': @@ -111214,9 +111252,9 @@ paths: - *123 - *125 - *124 - - *728 - - *126 - *729 + - *126 + - *730 responses: '200': description: Response when getting a billing usage summary @@ -111350,9 +111388,9 @@ paths: application/json: schema: type: array - items: *697 + items: *698 examples: - default: *698 + default: *699 headers: Link: *67 x-github: @@ -111382,9 +111420,9 @@ paths: application/json: schema: type: array - items: *699 + items: *700 examples: - default: *730 + default: *731 headers: Link: *67 x-github: @@ -111409,7 +111447,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *71 - - *731 + - *732 - *61 - *17 - *19 @@ -111421,11 +111459,11 @@ paths: schema: anyOf: - type: array - items: *732 + items: *733 - type: array items: *79 examples: - default-response: *702 + default-response: *703 headers: Link: *67 x-github: @@ -111456,7 +111494,7 @@ paths: type: array items: *160 examples: - default: *265 + default: *266 headers: Link: *67 x-github: @@ -111584,7 +111622,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &733 + enterprise: &734 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -111642,7 +111680,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &734 + installation: &735 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -111661,7 +111699,7 @@ x-webhooks: required: - id - node_id - organization: &735 + organization: &736 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -111721,13 +111759,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &736 + repository: &737 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &768 + properties: &769 id: description: Unique identifier of the repository example: 42 @@ -112422,7 +112460,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &769 + required: &770 - archive_url - assignees_url - blobs_url @@ -112573,10 +112611,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -112652,11 +112690,11 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - rule: &737 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + rule: &738 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) @@ -112879,11 +112917,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - rule: *737 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + rule: *738 sender: *4 required: - action @@ -113066,11 +113104,11 @@ x-webhooks: - everyone required: - from - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - rule: *737 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + rule: *738 sender: *4 required: - action @@ -113154,7 +113192,7 @@ x-webhooks: type: string enum: - completed - check_run: &739 + check_run: &740 title: CheckRun description: A check performed on the code of a given code change type: object @@ -113245,7 +113283,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *738 + deployment: *739 details_url: example: https://example.com type: string @@ -113330,10 +113368,10 @@ x-webhooks: - output - app - pull_requests - installation: *734 - enterprise: *733 - organization: *735 - repository: *736 + installation: *735 + enterprise: *734 + organization: *736 + repository: *737 sender: *4 required: - check_run @@ -113724,11 +113762,11 @@ x-webhooks: type: string enum: - created - check_run: *739 - installation: *734 - enterprise: *733 - organization: *735 - repository: *736 + check_run: *740 + installation: *735 + enterprise: *734 + organization: *736 + repository: *737 sender: *4 required: - check_run @@ -114122,11 +114160,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *739 - installation: *734 - enterprise: *733 - organization: *735 - repository: *736 + check_run: *740 + installation: *735 + enterprise: *734 + organization: *736 + repository: *737 requested_action: description: The action requested by the user. type: object @@ -114529,11 +114567,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *739 - installation: *734 - enterprise: *733 - organization: *735 - repository: *736 + check_run: *740 + installation: *735 + enterprise: *734 + organization: *736 + repository: *737 sender: *4 required: - check_run @@ -115503,10 +115541,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -116195,10 +116233,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -116881,10 +116919,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -117050,7 +117088,7 @@ x-webhooks: required: - login - id - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -117195,20 +117233,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &740 + commit_oid: &741 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: *733 - installation: *734 - organization: *735 - ref: &741 + enterprise: *734 + installation: *735 + organization: *736 + ref: &742 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: *736 + repository: *737 sender: *4 required: - action @@ -117373,7 +117411,7 @@ x-webhooks: required: - login - id - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -117603,12 +117641,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *740 - enterprise: *733 - installation: *734 - organization: *735 - ref: *741 - repository: *736 + commit_oid: *741 + enterprise: *734 + installation: *735 + organization: *736 + ref: *742 + repository: *737 sender: *4 required: - action @@ -117703,7 +117741,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117874,12 +117912,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *740 - enterprise: *733 - installation: *734 - organization: *735 - ref: *741 - repository: *736 + commit_oid: *741 + enterprise: *734 + installation: *735 + organization: *736 + ref: *742 + repository: *737 sender: *4 required: - action @@ -118045,7 +118083,7 @@ x-webhooks: required: - login - id - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -118211,12 +118249,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *740 - enterprise: *733 - installation: *734 - organization: *735 - ref: *741 - repository: *736 + commit_oid: *741 + enterprise: *734 + installation: *735 + organization: *736 + ref: *742 + repository: *737 sender: *4 required: - action @@ -118315,7 +118353,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -118490,16 +118528,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 ref: 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 nullable: true - repository: *736 + repository: *737 sender: *4 required: - action @@ -118596,7 +118634,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -118736,12 +118774,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *740 - enterprise: *733 - installation: *734 - organization: *735 - ref: *741 - repository: *736 + commit_oid: *741 + enterprise: *734 + installation: *735 + organization: *736 + ref: *742 + repository: *737 sender: *4 required: - action @@ -118907,7 +118945,7 @@ x-webhooks: required: - login - id - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -119052,10 +119090,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -119310,10 +119348,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -119393,18 +119431,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *735 - pusher_type: &742 + organization: *736 + pusher_type: &743 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &743 + ref: &744 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -119414,7 +119452,7 @@ x-webhooks: enum: - tag - branch - repository: *736 + repository: *737 sender: *4 required: - ref @@ -119496,10 +119534,10 @@ x-webhooks: type: string enum: - created - definition: *289 - enterprise: *733 - installation: *734 - organization: *735 + definition: *290 + enterprise: *734 + installation: *735 + organization: *736 sender: *4 required: - action @@ -119584,9 +119622,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 sender: *4 required: - action @@ -119663,10 +119701,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *289 - enterprise: *733 - installation: *734 - organization: *735 + definition: *290 + enterprise: *734 + installation: *735 + organization: *736 sender: *4 required: - action @@ -119743,10 +119781,10 @@ x-webhooks: type: string enum: - updated - definition: *289 - enterprise: *733 - installation: *734 - organization: *735 + definition: *290 + enterprise: *734 + installation: *735 + organization: *736 sender: *4 required: - action @@ -119823,19 +119861,19 @@ x-webhooks: type: string enum: - updated - enterprise: *733 - installation: *734 - repository: *736 - organization: *735 + enterprise: *734 + installation: *735 + repository: *737 + organization: *736 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *293 + items: *294 old_property_values: type: array description: The old custom property values for the repository. - items: *293 + items: *294 required: - action - repository @@ -119911,18 +119949,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *733 - installation: *734 - organization: *735 - pusher_type: *742 - ref: *743 + enterprise: *734 + installation: *735 + organization: *736 + pusher_type: *743 + ref: *744 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *736 + repository: *737 sender: *4 required: - ref @@ -120002,11 +120040,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120086,11 +120124,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120171,11 +120209,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120256,11 +120294,11 @@ x-webhooks: type: string enum: - created - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120339,11 +120377,11 @@ x-webhooks: type: string enum: - dismissed - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120422,11 +120460,11 @@ x-webhooks: type: string enum: - fixed - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120506,11 +120544,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120589,11 +120627,11 @@ x-webhooks: type: string enum: - reopened - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120670,9 +120708,9 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - key: &744 + enterprise: *734 + installation: *735 + key: &745 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -120708,8 +120746,8 @@ x-webhooks: - verified - created_at - read_only - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -120786,11 +120824,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - key: *744 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + key: *745 + organization: *736 + repository: *737 sender: *4 required: - action @@ -121346,12 +121384,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - workflow: &750 + workflow: &751 title: Workflow type: object nullable: true @@ -122092,15 +122130,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *745 - required: *746 + properties: *746 + required: *747 nullable: true pull_requests: type: array - items: *591 - repository: *736 - organization: *735 - installation: *734 + items: *592 + repository: *737 + organization: *736 + installation: *735 sender: *4 responses: '200': @@ -122171,7 +122209,7 @@ x-webhooks: type: string enum: - approved - approver: &747 + approver: &748 type: object properties: avatar_url: @@ -122214,11 +122252,11 @@ x-webhooks: type: string comment: type: string - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - reviewers: &748 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + reviewers: &749 type: array items: type: object @@ -122297,7 +122335,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &749 + workflow_job_run: &750 type: object properties: conclusion: @@ -123028,18 +123066,18 @@ x-webhooks: type: string enum: - rejected - approver: *747 + approver: *748 comment: type: string - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - reviewers: *748 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + reviewers: *749 sender: *4 since: type: string - workflow_job_run: *749 + workflow_job_run: *750 workflow_job_runs: type: array items: @@ -123743,13 +123781,13 @@ x-webhooks: type: string enum: - requested - enterprise: *733 + enterprise: *734 environment: type: string - installation: *734 - organization: *735 - repository: *736 - requestor: &755 + installation: *735 + organization: *736 + repository: *737 + requestor: &756 title: User type: object nullable: true @@ -125638,12 +125676,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - workflow: *750 + workflow: *751 workflow_run: title: Deployment Workflow Run type: object @@ -126323,7 +126361,7 @@ x-webhooks: type: string enum: - answered - answer: &753 + answer: &754 type: object properties: author_association: @@ -126480,11 +126518,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -126611,11 +126649,11 @@ x-webhooks: - from required: - category - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -126698,11 +126736,11 @@ x-webhooks: type: string enum: - closed - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -126784,7 +126822,7 @@ x-webhooks: type: string enum: - created - comment: &752 + comment: &753 type: object properties: author_association: @@ -126941,11 +126979,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127028,12 +127066,12 @@ x-webhooks: type: string enum: - deleted - comment: *752 - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + comment: *753 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127128,12 +127166,12 @@ x-webhooks: - from required: - body - comment: *752 - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + comment: *753 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127217,11 +127255,11 @@ x-webhooks: type: string enum: - created - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127303,11 +127341,11 @@ x-webhooks: type: string enum: - deleted - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127407,11 +127445,11 @@ x-webhooks: type: string required: - from - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127493,10 +127531,10 @@ x-webhooks: type: string enum: - labeled - discussion: *751 - enterprise: *733 - installation: *734 - label: &754 + discussion: *752 + enterprise: *734 + installation: *735 + label: &755 title: Label type: object properties: @@ -127528,8 +127566,8 @@ x-webhooks: - color - default - description - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127612,11 +127650,11 @@ x-webhooks: type: string enum: - locked - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127698,11 +127736,11 @@ x-webhooks: type: string enum: - pinned - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127784,11 +127822,11 @@ x-webhooks: type: string enum: - reopened - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127873,16 +127911,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *751 - new_repository: *736 + new_discussion: *752 + new_repository: *737 required: - new_discussion - new_repository - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127965,10 +128003,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *751 - old_answer: *753 - organization: *735 - repository: *736 + discussion: *752 + old_answer: *754 + organization: *736 + repository: *737 sender: *4 required: - action @@ -128050,12 +128088,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *751 - enterprise: *733 - installation: *734 - label: *754 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -128138,11 +128176,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -128224,11 +128262,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -128301,7 +128339,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *733 + enterprise: *734 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -128961,9 +128999,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - forkee @@ -129109,9 +129147,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pages: description: The pages that were updated. type: array @@ -129148,7 +129186,7 @@ x-webhooks: - action - sha - html_url - repository: *736 + repository: *737 sender: *4 required: - pages @@ -129224,10 +129262,10 @@ x-webhooks: type: string enum: - created - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories: &756 + organization: *736 + repositories: &757 description: An array of repository objects that the installation can access. type: array @@ -129253,8 +129291,8 @@ x-webhooks: - name - full_name - private - repository: *736 - requester: *755 + repository: *737 + requester: *756 sender: *4 required: - action @@ -129329,11 +129367,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories: *756 - repository: *736 + organization: *736 + repositories: *757 + repository: *737 requester: nullable: true sender: *4 @@ -129409,11 +129447,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories: *756 - repository: *736 + organization: *736 + repositories: *757 + repository: *737 requester: nullable: true sender: *4 @@ -129489,10 +129527,10 @@ x-webhooks: type: string enum: - added - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories_added: &757 + organization: *736 + repositories_added: &758 description: An array of repository objects, which were added to the installation. type: array @@ -129538,15 +129576,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *736 - repository_selection: &758 + repository: *737 + repository_selection: &759 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *755 + requester: *756 sender: *4 required: - action @@ -129625,10 +129663,10 @@ x-webhooks: type: string enum: - removed - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories_added: *757 + organization: *736 + repositories_added: *758 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -129655,9 +129693,9 @@ x-webhooks: - name - full_name - private - repository: *736 - repository_selection: *758 - requester: *755 + repository: *737 + repository_selection: *759 + requester: *756 sender: *4 required: - action @@ -129736,11 +129774,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories: *756 - repository: *736 + organization: *736 + repositories: *757 + repository: *737 requester: nullable: true sender: *4 @@ -129918,10 +129956,10 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 target_type: type: string @@ -130000,11 +130038,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories: *756 - repository: *736 + organization: *736 + repositories: *757 + repository: *737 requester: nullable: true sender: *4 @@ -130178,8 +130216,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *568 - required: *569 + properties: *569 + required: *570 nullable: true user: title: User @@ -130264,8 +130302,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131054,8 +131092,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131071,7 +131109,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -131404,8 +131442,8 @@ x-webhooks: - state - locked - assignee - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -131485,7 +131523,7 @@ x-webhooks: type: string enum: - deleted - comment: &759 + comment: &760 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -131642,8 +131680,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *568 - required: *569 + properties: *569 + required: *570 nullable: true required: - url @@ -131658,8 +131696,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132444,8 +132482,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132461,7 +132499,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -132796,8 +132834,8 @@ x-webhooks: - state - locked - assignee - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -132877,7 +132915,7 @@ x-webhooks: type: string enum: - edited - changes: &788 + changes: &789 description: The changes to the comment. type: object properties: @@ -132889,9 +132927,9 @@ x-webhooks: type: string required: - from - comment: *759 - enterprise: *733 - installation: *734 + comment: *760 + enterprise: *734 + installation: *735 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133679,8 +133717,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133696,7 +133734,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -134029,8 +134067,8 @@ x-webhooks: - state - locked - assignee - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -134111,9 +134149,9 @@ x-webhooks: type: string enum: - pinned - comment: *759 - enterprise: *733 - installation: *734 + comment: *760 + enterprise: *734 + installation: *735 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -134903,8 +134941,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134920,7 +134958,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -135255,8 +135293,8 @@ x-webhooks: - state - locked - assignee - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -135336,9 +135374,9 @@ x-webhooks: type: string enum: - unpinned - comment: *759 - enterprise: *733 - installation: *734 + comment: *760 + enterprise: *734 + installation: *735 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136128,8 +136166,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136145,7 +136183,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -136480,8 +136518,8 @@ x-webhooks: - state - locked - assignee - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -136570,9 +136608,9 @@ x-webhooks: type: number blocking_issue: *85 blocking_issue_repo: *79 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -136661,9 +136699,9 @@ x-webhooks: type: number blocking_issue: *85 blocking_issue_repo: *79 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -136751,9 +136789,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *85 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -136842,9 +136880,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *85 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -136924,10 +136962,10 @@ x-webhooks: type: string enum: - assigned - assignee: *755 - enterprise: *733 - installation: *734 - issue: &762 + assignee: *756 + enterprise: *734 + installation: *735 + issue: &763 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -137719,11 +137757,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137739,7 +137777,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -137840,8 +137878,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -137921,8 +137959,8 @@ x-webhooks: type: string enum: - closed - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -138719,11 +138757,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138739,7 +138777,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -138975,8 +139013,8 @@ x-webhooks: required: - state - closed_at - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -139055,8 +139093,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139844,11 +139882,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139864,7 +139902,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -139964,8 +140002,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -140044,8 +140082,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140855,11 +140893,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140875,7 +140913,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -140954,7 +140992,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &760 + milestone: &761 title: Milestone description: A collection of related issues and pull requests. type: object @@ -141092,8 +141130,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -141192,8 +141230,8 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141985,11 +142023,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142002,7 +142040,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *241 + type: *242 title: description: Title of the issue type: string @@ -142106,9 +142144,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *754 - organization: *735 - repository: *736 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -142188,8 +142226,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142980,11 +143018,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142997,7 +143035,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *241 + type: *242 title: description: Title of the issue type: string @@ -143101,9 +143139,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *754 - organization: *735 - repository: *736 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -143183,8 +143221,8 @@ x-webhooks: type: string enum: - locked - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143999,11 +144037,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144016,7 +144054,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *241 + type: *242 title: description: Title of the issue type: string @@ -144097,8 +144135,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -144177,8 +144215,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144987,11 +145025,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145007,7 +145045,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -145085,9 +145123,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *760 - organization: *735 - repository: *736 + milestone: *761 + organization: *736 + repository: *737 sender: *4 required: - action @@ -145950,11 +145988,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146055,7 +146093,7 @@ x-webhooks: required: - login - id - type: *241 + type: *242 required: - id - number @@ -146535,8 +146573,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147320,11 +147358,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147340,7 +147378,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -147448,8 +147486,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -147529,9 +147567,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *733 - installation: *734 - issue: &761 + enterprise: *734 + installation: *735 + issue: &762 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -148317,11 +148355,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148337,7 +148375,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -148437,8 +148475,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -148517,8 +148555,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149331,11 +149369,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149429,9 +149467,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *241 - organization: *735 - repository: *736 + type: *242 + organization: *736 + repository: *737 sender: *4 required: - action @@ -150300,11 +150338,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150320,7 +150358,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -150899,11 +150937,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *733 - installation: *734 - issue: *761 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + issue: *762 + organization: *736 + repository: *737 sender: *4 required: - action @@ -150983,12 +151021,12 @@ x-webhooks: type: string enum: - typed - enterprise: *733 - installation: *734 - issue: *762 - type: *241 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + issue: *763 + type: *242 + organization: *736 + repository: *737 sender: *4 required: - action @@ -151069,7 +151107,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &791 + assignee: &792 title: User type: object nullable: true @@ -151139,11 +151177,11 @@ x-webhooks: required: - login - id - enterprise: *733 - installation: *734 - issue: *762 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + issue: *763 + organization: *736 + repository: *737 sender: *4 required: - action @@ -151222,12 +151260,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *733 - installation: *734 - issue: *762 - label: *754 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + issue: *763 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -151307,8 +151345,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152121,11 +152159,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152141,7 +152179,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -152219,8 +152257,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -152300,11 +152338,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *733 - installation: *734 - issue: *761 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + issue: *762 + organization: *736 + repository: *737 sender: *4 required: - action @@ -152383,12 +152421,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *733 - installation: *734 - issue: *762 - type: *241 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + issue: *763 + type: *242 + organization: *736 + repository: *737 sender: *4 required: - action @@ -152468,11 +152506,11 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - label: *754 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -152550,11 +152588,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - label: *754 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -152664,11 +152702,11 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - label: *754 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -152750,9 +152788,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *733 - installation: *734 - marketplace_purchase: &763 + enterprise: *734 + installation: *735 + marketplace_purchase: &764 title: Marketplace Purchase type: object required: @@ -152835,8 +152873,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *735 - previous_marketplace_purchase: &764 + organization: *736 + previous_marketplace_purchase: &765 title: Marketplace Purchase type: object properties: @@ -152916,7 +152954,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *736 + repository: *737 sender: *4 required: - action @@ -152996,10 +153034,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *733 - installation: *734 - marketplace_purchase: *763 - organization: *735 + enterprise: *734 + installation: *735 + marketplace_purchase: *764 + organization: *736 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -153082,7 +153120,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *736 + repository: *737 sender: *4 required: - action @@ -153164,10 +153202,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *733 - installation: *734 - marketplace_purchase: *763 - organization: *735 + enterprise: *734 + installation: *735 + marketplace_purchase: *764 + organization: *736 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -153249,7 +153287,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *736 + repository: *737 sender: *4 required: - action @@ -153330,8 +153368,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 marketplace_purchase: title: Marketplace Purchase type: object @@ -153413,9 +153451,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *735 - previous_marketplace_purchase: *764 - repository: *736 + organization: *736 + previous_marketplace_purchase: *765 + repository: *737 sender: *4 required: - action @@ -153495,12 +153533,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *733 - installation: *734 - marketplace_purchase: *763 - organization: *735 - previous_marketplace_purchase: *764 - repository: *736 + enterprise: *734 + installation: *735 + marketplace_purchase: *764 + organization: *736 + previous_marketplace_purchase: *765 + repository: *737 sender: *4 required: - action @@ -153602,11 +153640,11 @@ x-webhooks: type: string required: - to - enterprise: *733 - installation: *734 - member: *755 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + member: *756 + organization: *736 + repository: *737 sender: *4 required: - action @@ -153706,11 +153744,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *733 - installation: *734 - member: *755 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + member: *756 + organization: *736 + repository: *737 sender: *4 required: - action @@ -153789,11 +153827,11 @@ x-webhooks: type: string enum: - removed - enterprise: *733 - installation: *734 - member: *755 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + member: *756 + organization: *736 + repository: *737 sender: *4 required: - action @@ -153871,11 +153909,11 @@ x-webhooks: type: string enum: - added - enterprise: *733 - installation: *734 - member: *755 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + member: *756 + organization: *736 + repository: *737 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153951,7 +153989,7 @@ x-webhooks: required: - login - id - team: &765 + team: &766 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -154174,11 +154212,11 @@ x-webhooks: type: string enum: - removed - enterprise: *733 - installation: *734 - member: *755 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + member: *756 + organization: *736 + repository: *737 scope: description: The scope of the membership. Currently, can only be `team`. @@ -154255,7 +154293,7 @@ x-webhooks: required: - login - id - team: *765 + team: *766 required: - action - scope @@ -154337,8 +154375,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *734 - merge_group: &767 + installation: *735 + merge_group: &768 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -154357,15 +154395,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *766 + head_commit: *767 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -154451,10 +154489,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *734 - merge_group: *767 - organization: *735 - repository: *736 + installation: *735 + merge_group: *768 + organization: *736 + repository: *737 sender: *4 required: - action @@ -154527,7 +154565,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 + enterprise: *734 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -154636,16 +154674,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *734 - organization: *735 + installation: *735 + organization: *736 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *768 - required: *769 + properties: *769 + required: *770 nullable: true sender: *4 required: @@ -154726,11 +154764,11 @@ x-webhooks: type: string enum: - closed - enterprise: *733 - installation: *734 - milestone: *760 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + milestone: *761 + organization: *736 + repository: *737 sender: *4 required: - action @@ -154809,9 +154847,9 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - milestone: &770 + enterprise: *734 + installation: *735 + milestone: &771 title: Milestone description: A collection of related issues and pull requests. type: object @@ -154948,8 +154986,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155028,11 +155066,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - milestone: *760 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + milestone: *761 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155142,11 +155180,11 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - milestone: *760 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + milestone: *761 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155226,11 +155264,11 @@ x-webhooks: type: string enum: - opened - enterprise: *733 - installation: *734 - milestone: *770 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + milestone: *771 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155309,11 +155347,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *755 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + blocked_user: *756 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155392,11 +155430,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *755 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + blocked_user: *756 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155475,9 +155513,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - membership: &771 + enterprise: *734 + installation: *735 + membership: &772 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -155584,8 +155622,8 @@ x-webhooks: - role - organization_url - user - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155663,11 +155701,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *733 - installation: *734 - membership: *771 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + membership: *772 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155746,8 +155784,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -155863,10 +155901,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 - user: *755 + user: *756 required: - action - invitation @@ -155944,11 +155982,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *733 - installation: *734 - membership: *771 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + membership: *772 + organization: *736 + repository: *737 sender: *4 required: - action @@ -156035,11 +156073,11 @@ x-webhooks: properties: from: type: string - enterprise: *733 - installation: *734 - membership: *771 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + membership: *772 + organization: *736 + repository: *737 sender: *4 required: - action @@ -156116,9 +156154,9 @@ x-webhooks: type: string enum: - published - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 package: description: Information about the package. type: object @@ -156617,7 +156655,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &772 + items: &773 title: Ruby Gems metadata type: object properties: @@ -156712,7 +156750,7 @@ x-webhooks: - owner - package_version - registry - repository: *736 + repository: *737 sender: *4 required: - action @@ -156788,9 +156826,9 @@ x-webhooks: type: string enum: - updated - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 package: description: Information about the package. type: object @@ -157143,7 +157181,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *772 + items: *773 source_url: type: string format: uri @@ -157213,7 +157251,7 @@ x-webhooks: - owner - package_version - registry - repository: *736 + repository: *737 sender: *4 required: - action @@ -157389,12 +157427,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *733 + enterprise: *734 id: type: integer - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - id @@ -157471,7 +157509,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &773 + personal_access_token_request: &774 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -157617,10 +157655,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *733 - organization: *735 + enterprise: *734 + organization: *736 sender: *4 - installation: *734 + installation: *735 required: - action - personal_access_token_request @@ -157697,11 +157735,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *773 - enterprise: *733 - organization: *735 + personal_access_token_request: *774 + enterprise: *734 + organization: *736 sender: *4 - installation: *734 + installation: *735 required: - action - personal_access_token_request @@ -157777,11 +157815,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *773 - enterprise: *733 - organization: *735 + personal_access_token_request: *774 + enterprise: *734 + organization: *736 sender: *4 - installation: *734 + installation: *735 required: - action - personal_access_token_request @@ -157856,11 +157894,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *773 - organization: *735 - enterprise: *733 + personal_access_token_request: *774 + organization: *736 + enterprise: *734 sender: *4 - installation: *734 + installation: *735 required: - action - personal_access_token_request @@ -157965,7 +158003,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *774 + last_response: *775 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -157997,8 +158035,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 zen: description: Random string of GitHub zen. @@ -158243,10 +158281,10 @@ x-webhooks: - from required: - note - enterprise: *733 - installation: *734 - organization: *735 - project_card: &775 + enterprise: *734 + installation: *735 + organization: *736 + project_card: &776 title: Project Card type: object properties: @@ -158365,7 +158403,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *736 + repository: *737 sender: *4 required: - action @@ -158446,11 +158484,11 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - project_card: *775 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project_card: *776 + repository: *737 sender: *4 required: - action @@ -158530,9 +158568,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 project_card: title: Project Card type: object @@ -158660,8 +158698,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *768 - required: *769 + properties: *769 + required: *770 nullable: true sender: *4 required: @@ -158755,11 +158793,11 @@ x-webhooks: - from required: - note - enterprise: *733 - installation: *734 - organization: *735 - project_card: *775 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project_card: *776 + repository: *737 sender: *4 required: - action @@ -158853,9 +158891,9 @@ x-webhooks: - from required: - column_id - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 project_card: allOf: - title: Project Card @@ -159045,7 +159083,7 @@ x-webhooks: type: string required: - after_id - repository: *736 + repository: *737 sender: *4 required: - action @@ -159125,10 +159163,10 @@ x-webhooks: type: string enum: - closed - enterprise: *733 - installation: *734 - organization: *735 - project: &777 + enterprise: *734 + installation: *735 + organization: *736 + project: &778 title: Project type: object properties: @@ -159252,7 +159290,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *736 + repository: *737 sender: *4 required: - action @@ -159332,10 +159370,10 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - project_column: &776 + enterprise: *734 + installation: *735 + organization: *736 + project_column: &777 title: Project Column type: object properties: @@ -159374,7 +159412,7 @@ x-webhooks: - name - created_at - updated_at - repository: *736 + repository: *737 sender: *4 required: - action @@ -159453,18 +159491,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - project_column: *776 + enterprise: *734 + installation: *735 + organization: *736 + project_column: *777 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *768 - required: *769 + properties: *769 + required: *770 nullable: true sender: *4 required: @@ -159554,11 +159592,11 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - organization: *735 - project_column: *776 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project_column: *777 + repository: *737 sender: *4 required: - action @@ -159638,11 +159676,11 @@ x-webhooks: type: string enum: - moved - enterprise: *733 - installation: *734 - organization: *735 - project_column: *776 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project_column: *777 + repository: *737 sender: *4 required: - action @@ -159722,11 +159760,11 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - project: *777 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project: *778 + repository: *737 sender: *4 required: - action @@ -159806,18 +159844,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - project: *777 + enterprise: *734 + installation: *735 + organization: *736 + project: *778 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *768 - required: *769 + properties: *769 + required: *770 nullable: true sender: *4 required: @@ -159919,11 +159957,11 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - organization: *735 - project: *777 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project: *778 + repository: *737 sender: *4 required: - action @@ -160002,11 +160040,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *733 - installation: *734 - organization: *735 - project: *777 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project: *778 + repository: *737 sender: *4 required: - action @@ -160087,9 +160125,9 @@ x-webhooks: type: string enum: - closed - installation: *734 - organization: *735 - projects_v2: *275 + installation: *735 + organization: *736 + projects_v2: *276 sender: *4 required: - action @@ -160170,9 +160208,9 @@ x-webhooks: type: string enum: - created - installation: *734 - organization: *735 - projects_v2: *275 + installation: *735 + organization: *736 + projects_v2: *276 sender: *4 required: - action @@ -160253,9 +160291,9 @@ x-webhooks: type: string enum: - deleted - installation: *734 - organization: *735 - projects_v2: *275 + installation: *735 + organization: *736 + projects_v2: *276 sender: *4 required: - action @@ -160372,9 +160410,9 @@ x-webhooks: type: string to: type: string - installation: *734 - organization: *735 - projects_v2: *275 + installation: *735 + organization: *736 + projects_v2: *276 sender: *4 required: - action @@ -160457,7 +160495,7 @@ x-webhooks: type: string enum: - archived - changes: &781 + changes: &782 type: object properties: archived_at: @@ -160471,9 +160509,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *734 - organization: *735 - projects_v2_item: &778 + installation: *735 + organization: *736 + projects_v2_item: &779 title: Projects v2 Item description: An item belonging to a project type: object @@ -160491,7 +160529,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *282 + content_type: *283 creator: *4 created_at: type: string @@ -160608,9 +160646,9 @@ x-webhooks: nullable: true to: type: string - installation: *734 - organization: *735 - projects_v2_item: *778 + installation: *735 + organization: *736 + projects_v2_item: *779 sender: *4 required: - action @@ -160692,9 +160730,9 @@ x-webhooks: type: string enum: - created - installation: *734 - organization: *735 - projects_v2_item: *778 + installation: *735 + organization: *736 + projects_v2_item: *779 sender: *4 required: - action @@ -160775,9 +160813,9 @@ x-webhooks: type: string enum: - deleted - installation: *734 - organization: *735 - projects_v2_item: *778 + installation: *735 + organization: *736 + projects_v2_item: *779 sender: *4 required: - action @@ -160883,7 +160921,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &779 + - &780 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -160905,7 +160943,7 @@ x-webhooks: required: - id - name - - &780 + - &781 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -160939,8 +160977,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *779 - *780 + - *781 required: - field_value - type: object @@ -160956,9 +160994,9 @@ x-webhooks: nullable: true required: - body - installation: *734 - organization: *735 - projects_v2_item: *778 + installation: *735 + organization: *736 + projects_v2_item: *779 sender: *4 required: - action @@ -161053,9 +161091,9 @@ x-webhooks: to: type: string nullable: true - installation: *734 - organization: *735 - projects_v2_item: *778 + installation: *735 + organization: *736 + projects_v2_item: *779 sender: *4 required: - action @@ -161138,10 +161176,10 @@ x-webhooks: type: string enum: - restored - changes: *781 - installation: *734 - organization: *735 - projects_v2_item: *778 + changes: *782 + installation: *735 + organization: *736 + projects_v2_item: *779 sender: *4 required: - action @@ -161223,9 +161261,9 @@ x-webhooks: type: string enum: - reopened - installation: *734 - organization: *735 - projects_v2: *275 + installation: *735 + organization: *736 + projects_v2: *276 sender: *4 required: - action @@ -161306,14 +161344,14 @@ x-webhooks: type: string enum: - created - installation: *734 - organization: *735 - projects_v2_status_update: &784 + installation: *735 + organization: *736 + projects_v2_status_update: &785 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *782 - required: *783 + properties: *783 + required: *784 sender: *4 required: - action @@ -161394,9 +161432,9 @@ x-webhooks: type: string enum: - deleted - installation: *734 - organization: *735 - projects_v2_status_update: *784 + installation: *735 + organization: *736 + projects_v2_status_update: *785 sender: *4 required: - action @@ -161532,9 +161570,9 @@ x-webhooks: type: string format: date nullable: true - installation: *734 - organization: *735 - projects_v2_status_update: *784 + installation: *735 + organization: *736 + projects_v2_status_update: *785 sender: *4 required: - action @@ -161605,10 +161643,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - repository @@ -161685,13 +161723,13 @@ x-webhooks: type: string enum: - assigned - assignee: *755 - enterprise: *733 - installation: *734 - number: &785 + assignee: *756 + enterprise: *734 + installation: *735 + number: &786 description: The pull request number. type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -163996,7 +164034,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -164078,11 +164116,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -166382,7 +166420,7 @@ x-webhooks: - draft reason: type: string - repository: *736 + repository: *737 sender: *4 required: - action @@ -166464,11 +166502,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -168768,7 +168806,7 @@ x-webhooks: - draft reason: type: string - repository: *736 + repository: *737 sender: *4 required: - action @@ -168850,13 +168888,13 @@ x-webhooks: type: string enum: - closed - enterprise: *733 - installation: *734 - number: *785 - organization: *735 - pull_request: &786 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 + pull_request: &787 allOf: - - *591 + - *592 - type: object properties: allow_auto_merge: @@ -168918,7 +168956,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *736 + repository: *737 sender: *4 required: - action @@ -168999,12 +169037,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *733 - installation: *734 - number: *785 - organization: *735 - pull_request: *786 - repository: *736 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 + pull_request: *787 + repository: *737 sender: *4 required: - action @@ -169084,11 +169122,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *733 - milestone: *575 - number: *785 - organization: *735 - pull_request: &787 + enterprise: *734 + milestone: *576 + number: *786 + organization: *736 + pull_request: &788 title: Pull Request type: object properties: @@ -171373,7 +171411,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -171452,11 +171490,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -173760,7 +173798,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *736 + repository: *737 sender: *4 required: - action @@ -173884,12 +173922,12 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - number: *785 - organization: *735 - pull_request: *786 - repository: *736 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 + pull_request: *787 + repository: *737 sender: *4 required: - action @@ -173969,11 +174007,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -176262,7 +176300,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -176342,11 +176380,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *733 - installation: *734 - label: *754 - number: *785 - organization: *735 + enterprise: *734 + installation: *735 + label: *755 + number: *786 + organization: *736 pull_request: title: Pull Request type: object @@ -178650,7 +178688,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -178731,10 +178769,10 @@ x-webhooks: type: string enum: - locked - enterprise: *733 - installation: *734 - number: *785 - organization: *735 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 pull_request: title: Pull Request type: object @@ -181036,7 +181074,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -181116,12 +181154,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *733 - milestone: *575 - number: *785 - organization: *735 - pull_request: *787 - repository: *736 + enterprise: *734 + milestone: *576 + number: *786 + organization: *736 + pull_request: *788 + repository: *737 sender: *4 required: - action @@ -181200,12 +181238,12 @@ x-webhooks: type: string enum: - opened - enterprise: *733 - installation: *734 - number: *785 - organization: *735 - pull_request: *786 - repository: *736 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 + pull_request: *787 + repository: *737 sender: *4 required: - action @@ -181286,12 +181324,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *733 - installation: *734 - number: *785 - organization: *735 - pull_request: *786 - repository: *736 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 + pull_request: *787 + repository: *737 sender: *4 required: - action @@ -181371,12 +181409,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *733 - installation: *734 - number: *785 - organization: *735 - pull_request: *786 - repository: *736 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 + pull_request: *787 + repository: *737 sender: *4 required: - action @@ -181742,9 +181780,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: type: object properties: @@ -183936,7 +183974,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *736 + repository: *737 sender: *4 required: - action @@ -184016,7 +184054,7 @@ x-webhooks: type: string enum: - deleted - comment: &789 + comment: &790 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -184301,9 +184339,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: type: object properties: @@ -186483,7 +186521,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *736 + repository: *737 sender: *4 required: - action @@ -186563,11 +186601,11 @@ x-webhooks: type: string enum: - edited - changes: *788 - comment: *789 - enterprise: *733 - installation: *734 - organization: *735 + changes: *789 + comment: *790 + enterprise: *734 + installation: *735 + organization: *736 pull_request: type: object properties: @@ -188750,7 +188788,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *736 + repository: *737 sender: *4 required: - action @@ -188831,9 +188869,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: title: Simple Pull Request type: object @@ -191028,7 +191066,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *736 + repository: *737 review: description: The review that was affected. type: object @@ -191275,9 +191313,9 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: title: Simple Pull Request type: object @@ -193331,8 +193369,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *736 - review: &790 + repository: *737 + review: &791 description: The review that was affected. type: object properties: @@ -193565,12 +193603,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: description: The pull request number. type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -195875,7 +195913,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 requested_reviewer: title: User type: object @@ -195959,12 +195997,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: description: The pull request number. type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -198276,7 +198314,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 requested_team: title: Team description: Groups of organization members that gives permissions @@ -198468,12 +198506,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: description: The pull request number. type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -200780,7 +200818,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 requested_reviewer: title: User type: object @@ -200865,12 +200903,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: description: The pull request number. type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -203168,7 +203206,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 requested_team: title: Team description: Groups of organization members that gives permissions @@ -203349,9 +203387,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: title: Simple Pull Request type: object @@ -205548,8 +205586,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *736 - review: *790 + repository: *737 + review: *791 sender: *4 required: - action @@ -205629,9 +205667,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: title: Simple Pull Request type: object @@ -207723,7 +207761,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *736 + repository: *737 sender: *4 thread: type: object @@ -208110,9 +208148,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: title: Simple Pull Request type: object @@ -210190,7 +210228,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *736 + repository: *737 sender: *4 thread: type: object @@ -210580,10 +210618,10 @@ x-webhooks: type: string before: type: string - enterprise: *733 - installation: *734 - number: *785 - organization: *735 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 pull_request: title: Pull Request type: object @@ -212876,7 +212914,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -212958,11 +212996,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *791 - enterprise: *733 - installation: *734 - number: *785 - organization: *735 + assignee: *792 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 pull_request: title: Pull Request type: object @@ -215267,7 +215305,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -215346,11 +215384,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *733 - installation: *734 - label: *754 - number: *785 - organization: *735 + enterprise: *734 + installation: *735 + label: *755 + number: *786 + organization: *736 pull_request: title: Pull Request type: object @@ -217645,7 +217683,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -217726,10 +217764,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *733 - installation: *734 - number: *785 - organization: *735 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 pull_request: title: Pull Request type: object @@ -220016,7 +220054,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -220216,7 +220254,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *733 + enterprise: *734 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -220308,8 +220346,8 @@ x-webhooks: - url - author - committer - installation: *734 - organization: *735 + installation: *735 + organization: *736 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -220895,9 +220933,9 @@ x-webhooks: type: string enum: - published - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 registry_package: type: object properties: @@ -221343,7 +221381,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *772 + items: *773 summary: type: string tag_name: @@ -221397,7 +221435,7 @@ x-webhooks: - owner - package_version - registry - repository: *736 + repository: *737 sender: *4 required: - action @@ -221475,9 +221513,9 @@ x-webhooks: type: string enum: - updated - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 registry_package: type: object properties: @@ -221785,7 +221823,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *772 + items: *773 summary: type: string tag_name: @@ -221834,7 +221872,7 @@ x-webhooks: - owner - package_version - registry - repository: *736 + repository: *737 sender: *4 required: - action @@ -221911,10 +221949,10 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - release: &792 + enterprise: *734 + installation: *735 + organization: *736 + release: &793 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -222232,7 +222270,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *736 + repository: *737 sender: *4 required: - action @@ -222309,11 +222347,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - release: *792 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + release: *793 + repository: *737 sender: *4 required: - action @@ -222430,11 +222468,11 @@ x-webhooks: type: boolean required: - to - enterprise: *733 - installation: *734 - organization: *735 - release: *792 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + release: *793 + repository: *737 sender: *4 required: - action @@ -222512,9 +222550,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -222836,7 +222874,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *736 + repository: *737 sender: *4 required: - action @@ -222912,10 +222950,10 @@ x-webhooks: type: string enum: - published - enterprise: *733 - installation: *734 - organization: *735 - release: &793 + enterprise: *734 + installation: *735 + organization: *736 + release: &794 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -223234,7 +223272,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *736 + repository: *737 sender: *4 required: - action @@ -223310,11 +223348,11 @@ x-webhooks: type: string enum: - released - enterprise: *733 - installation: *734 - organization: *735 - release: *792 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + release: *793 + repository: *737 sender: *4 required: - action @@ -223390,11 +223428,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *733 - installation: *734 - organization: *735 - release: *793 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + release: *794 + repository: *737 sender: *4 required: - action @@ -223470,11 +223508,11 @@ x-webhooks: type: string enum: - published - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - repository_advisory: *655 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + repository_advisory: *656 sender: *4 required: - action @@ -223550,11 +223588,11 @@ x-webhooks: type: string enum: - reported - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - repository_advisory: *655 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + repository_advisory: *656 sender: *4 required: - action @@ -223630,10 +223668,10 @@ x-webhooks: type: string enum: - archived - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -223710,10 +223748,10 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -223791,10 +223829,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -223878,10 +223916,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -223993,10 +224031,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -224068,10 +224106,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 status: type: string @@ -224152,10 +224190,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -224232,10 +224270,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -224329,10 +224367,10 @@ x-webhooks: - name required: - repository - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -224412,11 +224450,11 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - repository_ruleset: *323 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + repository_ruleset: *324 sender: *4 required: - action @@ -224494,11 +224532,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - repository_ruleset: *323 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + repository_ruleset: *324 sender: *4 required: - action @@ -224576,11 +224614,11 @@ x-webhooks: type: string enum: - edited - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - repository_ruleset: *323 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + repository_ruleset: *324 changes: type: object properties: @@ -224599,16 +224637,16 @@ x-webhooks: properties: added: type: array - items: *297 + items: *298 deleted: type: array - items: *297 + items: *298 updated: type: array items: type: object properties: - condition: *297 + condition: *298 changes: type: object properties: @@ -224641,16 +224679,16 @@ x-webhooks: properties: added: type: array - items: *611 + items: *612 deleted: type: array - items: *611 + items: *612 updated: type: array items: type: object properties: - rule: *611 + rule: *612 changes: type: object properties: @@ -224884,10 +224922,10 @@ x-webhooks: - from required: - owner - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -224965,10 +225003,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225046,7 +225084,7 @@ x-webhooks: type: string enum: - create - alert: &794 + alert: &795 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -225168,10 +225206,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225377,10 +225415,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225458,11 +225496,11 @@ x-webhooks: type: string enum: - reopen - alert: *794 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + alert: *795 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225661,10 +225699,10 @@ x-webhooks: enum: - fixed - open - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225742,7 +225780,7 @@ x-webhooks: type: string enum: - assigned - alert: &795 + alert: &796 type: object properties: number: *178 @@ -225876,10 +225914,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225957,11 +225995,11 @@ x-webhooks: type: string enum: - created - alert: *795 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + alert: *796 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -226042,11 +226080,11 @@ x-webhooks: type: string enum: - created - alert: *795 - installation: *734 - location: *796 - organization: *735 - repository: *736 + alert: *796 + installation: *735 + location: *797 + organization: *736 + repository: *737 sender: *4 required: - location @@ -226284,11 +226322,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *795 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + alert: *796 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -226366,11 +226404,11 @@ x-webhooks: type: string enum: - reopened - alert: *795 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + alert: *796 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -226448,11 +226486,11 @@ x-webhooks: type: string enum: - resolved - alert: *795 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + alert: *796 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -226530,12 +226568,12 @@ x-webhooks: type: string enum: - unassigned - alert: *795 + alert: *796 assignee: *4 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -226613,11 +226651,11 @@ x-webhooks: type: string enum: - validated - alert: *795 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + alert: *796 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -226743,10 +226781,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *736 - enterprise: *733 - installation: *734 - organization: *735 + repository: *737 + enterprise: *734 + installation: *735 + organization: *736 sender: *4 required: - action @@ -226824,11 +226862,11 @@ x-webhooks: type: string enum: - published - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - security_advisory: &797 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + security_advisory: &798 description: The details of the security advisory, including summary, description, and severity. type: object @@ -227011,11 +227049,11 @@ x-webhooks: type: string enum: - updated - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - security_advisory: *797 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + security_advisory: *798 sender: *4 required: - action @@ -227088,10 +227126,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -227275,11 +227313,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *296 - enterprise: *733 - installation: *734 - organization: *735 - repository: *344 + security_and_analysis: *297 + enterprise: *734 + installation: *735 + organization: *736 + repository: *345 sender: *4 required: - changes @@ -227357,12 +227395,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - sponsorship: &798 + sponsorship: &799 type: object properties: created_at: @@ -227663,12 +227701,12 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - sponsorship: *798 + sponsorship: *799 required: - action - sponsorship @@ -227756,12 +227794,12 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - sponsorship: *798 + sponsorship: *799 required: - action - changes @@ -227838,17 +227876,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &799 + effective_date: &800 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: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - sponsorship: *798 + sponsorship: *799 required: - action - sponsorship @@ -227922,7 +227960,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &800 + changes: &801 type: object properties: tier: @@ -227966,13 +228004,13 @@ x-webhooks: - from required: - tier - effective_date: *799 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + effective_date: *800 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - sponsorship: *798 + sponsorship: *799 required: - action - changes @@ -228049,13 +228087,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *800 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + changes: *801 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - sponsorship: *798 + sponsorship: *799 required: - action - changes @@ -228129,10 +228167,10 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -228215,10 +228253,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -228638,15 +228676,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *733 + enterprise: *734 id: description: The unique identifier of the status. type: integer - installation: *734 + installation: *735 name: type: string - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 sha: description: The Commit SHA. @@ -228761,9 +228799,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *85 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -228853,9 +228891,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *85 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -228945,9 +228983,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *85 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -229037,9 +229075,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *85 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -229116,12 +229154,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - team: &801 + team: &802 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -229344,9 +229382,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 repository: title: Repository description: A git repository @@ -229804,7 +229842,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *801 + team: *802 required: - action - team @@ -229880,9 +229918,9 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 repository: title: Repository description: A git repository @@ -230340,7 +230378,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *801 + team: *802 required: - action - team @@ -230417,9 +230455,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 repository: title: Repository description: A git repository @@ -230877,7 +230915,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *801 + team: *802 required: - action - team @@ -231021,9 +231059,9 @@ x-webhooks: - from required: - permissions - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 repository: title: Repository description: A git repository @@ -231481,7 +231519,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *801 + team: *802 required: - action - changes @@ -231559,9 +231597,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 repository: title: Repository description: A git repository @@ -232019,7 +232057,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *801 + team: *802 required: - action - team @@ -232095,10 +232133,10 @@ x-webhooks: type: string enum: - started - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -232171,16 +232209,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *733 + enterprise: *734 inputs: type: object nullable: true additionalProperties: true - installation: *734 - organization: *735 + installation: *735 + organization: *736 ref: type: string - repository: *736 + repository: *737 sender: *4 workflow: type: string @@ -232262,10 +232300,10 @@ x-webhooks: type: string enum: - completed - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 workflow_job: allOf: @@ -232502,7 +232540,7 @@ x-webhooks: type: string required: - conclusion - deployment: *502 + deployment: *503 required: - action - repository @@ -232581,10 +232619,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 workflow_job: allOf: @@ -232844,7 +232882,7 @@ x-webhooks: required: - status - steps - deployment: *502 + deployment: *503 required: - action - repository @@ -232923,10 +232961,10 @@ x-webhooks: type: string enum: - queued - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 workflow_job: type: object @@ -233061,7 +233099,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *502 + deployment: *503 required: - action - repository @@ -233140,10 +233178,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 workflow_job: type: object @@ -233279,7 +233317,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *502 + deployment: *503 required: - action - repository @@ -233359,12 +233397,12 @@ x-webhooks: type: string enum: - completed - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - workflow: *750 + workflow: *751 workflow_run: title: Workflow Run type: object @@ -234363,12 +234401,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - workflow: *750 + workflow: *751 workflow_run: title: Workflow Run type: object @@ -235352,12 +235390,12 @@ x-webhooks: type: string enum: - requested - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - workflow: *750 + workflow: *751 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index 9888d2856a..166d1d69dd 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -1963,7 +1963,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" ], @@ -2056,9 +2056,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", @@ -2621,7 +2622,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" ], @@ -2681,7 +2682,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", @@ -2694,21 +2695,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" } } }, @@ -3171,7 +3157,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" ], @@ -3928,7 +3914,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" ], @@ -4003,9 +3989,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", @@ -4506,7 +4493,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" ], @@ -25714,6 +25701,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", @@ -26046,6 +26041,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, @@ -113430,6 +113434,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", @@ -113787,6 +113799,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, @@ -322836,6 +322857,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", @@ -323176,6 +323205,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, @@ -324491,6 +324529,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, @@ -325643,6 +325690,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, @@ -548443,7 +548499,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" ], @@ -760189,6 +760245,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, @@ -762627,6 +762692,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, @@ -765065,6 +765139,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, @@ -767503,6 +767586,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, @@ -769941,6 +770033,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, @@ -772379,6 +772480,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, @@ -774817,6 +774927,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, @@ -777255,6 +777374,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": "object", "nullable": true, diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index b1d785a1fb..1342c9585c 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -829,7 +829,7 @@ paths: - subscriptions_url - type - url - type: &329 + type: &330 type: string description: The type of credit the user is receiving. enum: @@ -994,7 +994,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &657 + - &658 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1087,7 +1087,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 @@ -1156,8 +1160,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: @@ -1593,7 +1599,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 @@ -1639,7 +1649,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 @@ -1649,17 +1663,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: @@ -2011,7 +2014,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 @@ -2589,7 +2596,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 @@ -2646,8 +2657,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: @@ -3031,7 +3044,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 @@ -4060,7 +4077,7 @@ paths: schema: type: integer default: 30 - - &215 + - &216 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 @@ -4069,7 +4086,7 @@ paths: required: false schema: type: string - - &216 + - &217 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4089,7 +4106,7 @@ paths: application/json: schema: type: array - items: &217 + items: &218 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4169,7 +4186,7 @@ paths: - installation_id - repository_id examples: - default: &218 + default: &219 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4297,7 +4314,7 @@ paths: description: Response content: application/json: - schema: &219 + schema: &220 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4411,7 +4428,7 @@ paths: - request - response examples: - default: &220 + default: &221 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5388,7 +5405,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &294 + properties: &295 id: description: Unique identifier of the repository example: 42 @@ -5824,7 +5841,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &295 + required: &296 - archive_url - assignees_url - blobs_url @@ -11627,6 +11644,15 @@ paths: parameters: - *40 - &199 + 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 + - &200 name: state in: query description: |- @@ -11635,7 +11661,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &200 + - &201 name: severity in: query description: |- @@ -11644,7 +11670,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &201 + - &202 name: ecosystem in: query description: |- @@ -11653,14 +11679,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &202 + - &203 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 - - &203 + - &204 name: epss_percentage in: query description: |- @@ -11672,7 +11698,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 - - &492 + - &493 name: has in: query description: |- @@ -11686,7 +11712,7 @@ paths: type: string enum: - patch - - &204 + - &205 name: assignee in: query description: |- @@ -11695,7 +11721,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &205 + - &206 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -11705,7 +11731,7 @@ paths: enum: - development - runtime - - &206 + - &207 name: sort in: query description: |- @@ -11731,7 +11757,7 @@ paths: application/json: schema: type: array - items: &207 + items: &208 type: object description: A Dependabot alert. properties: @@ -11798,7 +11824,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &493 + security_advisory: &494 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -11879,6 +11905,13 @@ paths: - medium - high - critical + classification: + type: string + description: The classification of the advisory. + readOnly: true + enum: + - general + - malware cvss_severities: *63 epss: *64 cwes: @@ -12038,14 +12071,14 @@ paths: format: date-time readOnly: true nullable: true - auto_dismissed_at: &494 + auto_dismissed_at: &495 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &495 + dismissal_request: &496 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12107,7 +12140,7 @@ paths: - repository additionalProperties: false examples: - default: &208 + default: &209 value: - number: 2 state: dismissed @@ -13443,7 +13476,7 @@ paths: properties: action: type: string - discussion: &751 + discussion: &752 title: Discussion description: A Discussion in a repository. type: object @@ -13810,7 +13843,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &546 + properties: &547 id: type: integer format: int64 @@ -13916,7 +13949,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &278 + properties: &279 url: type: string format: uri @@ -13986,7 +14019,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &279 + required: &280 - closed_issues - creator - description @@ -14065,7 +14098,7 @@ paths: timeline_url: type: string format: uri - type: &241 + type: &242 title: Issue Type description: The type of issue. type: object @@ -14179,7 +14212,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &669 + sub_issues_summary: &670 title: Sub-issues Summary type: object properties: @@ -14266,7 +14299,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &568 + properties: &569 pinned_at: type: string format: date-time @@ -14278,7 +14311,7 @@ paths: properties: *20 required: *21 nullable: true - required: &569 + required: &570 - pinned_at - pinned_by nullable: true @@ -14292,7 +14325,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &670 + issue_dependencies_summary: &671 title: Issue Dependencies Summary type: object properties: @@ -14311,7 +14344,7 @@ paths: - total_blocking issue_field_values: type: array - items: &553 + items: &554 title: Issue Field Value description: A value assigned to an issue field type: object @@ -14372,7 +14405,7 @@ paths: - node_id - data_type - value - required: &547 + required: &548 - closed_at - comments - comments_url @@ -14409,7 +14442,7 @@ paths: action: type: string issue: *85 - comment: &542 + comment: &543 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -15073,7 +15106,7 @@ paths: type: string release: allOf: - - &602 + - &603 title: Release description: A release. type: object @@ -15144,7 +15177,7 @@ paths: author: *4 assets: type: array - items: &603 + items: &604 title: Release Asset description: Data related to a release. type: object @@ -17382,7 +17415,7 @@ paths: - closed - all default: open - - &244 + - &245 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -17433,7 +17466,7 @@ paths: type: array items: *85 examples: - default: &245 + default: &246 value: - id: 1 node_id: MDU6SXNzdWUx @@ -18818,14 +18851,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &341 + - &342 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &342 + - &343 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -18887,7 +18920,7 @@ paths: '404': *6 '403': *29 '304': *37 - '301': &345 + '301': &346 description: Moved permanently content: application/json: @@ -18909,7 +18942,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &578 + - &579 name: all description: If `true`, show notifications marked as read. in: query @@ -18917,7 +18950,7 @@ paths: schema: type: boolean default: false - - &579 + - &580 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -18927,7 +18960,7 @@ paths: type: boolean default: false - *92 - - &580 + - &581 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: @@ -18963,7 +18996,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &210 + properties: &211 id: type: integer format: int64 @@ -19247,7 +19280,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &296 + security_and_analysis: &297 nullable: true type: object properties: @@ -19360,7 +19393,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &211 + required: &212 - archive_url - assignees_url - blobs_url @@ -19448,7 +19481,7 @@ paths: - url - subscription_url examples: - default: &581 + default: &582 value: - id: '1' repository: @@ -20995,7 +21028,7 @@ paths: required: false schema: type: string - - &726 + - &727 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -21141,7 +21174,7 @@ paths: parameters: - *75 - *123 - - &727 + - &728 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 @@ -21253,7 +21286,7 @@ paths: - *123 - *125 - *124 - - &728 + - &729 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -21261,7 +21294,7 @@ paths: schema: type: string - *126 - - &729 + - &730 name: sku description: The SKU to query for usage. in: query @@ -22154,7 +22187,7 @@ paths: type: integer repository_cache_usages: type: array - items: &352 + items: &353 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -23470,7 +23503,7 @@ paths: - all - local_only - selected - selected_actions_url: &358 + selected_actions_url: &359 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` @@ -23553,7 +23586,7 @@ paths: description: Response content: application/json: - schema: &362 + schema: &363 type: object properties: days: @@ -23595,7 +23628,7 @@ paths: required: true content: application/json: - schema: &363 + schema: &364 type: object properties: days: @@ -23652,7 +23685,7 @@ paths: required: - approval_policy examples: - default: &364 + default: &365 value: approval_policy: first_time_contributors '404': *6 @@ -23711,7 +23744,7 @@ paths: description: Response content: application/json: - schema: &365 + schema: &366 type: object required: - run_workflows_from_fork_pull_requests @@ -23765,7 +23798,7 @@ paths: required: true content: application/json: - schema: &366 + schema: &367 type: object required: - run_workflows_from_fork_pull_requests @@ -24400,7 +24433,7 @@ paths: description: Response content: application/json: - schema: &367 + schema: &368 type: object properties: default_workflow_permissions: &153 @@ -24451,7 +24484,7 @@ paths: required: false content: application/json: - schema: &368 + schema: &369 type: object properties: default_workflow_permissions: *153 @@ -25582,7 +25615,7 @@ paths: application/json: schema: type: array - items: &369 + items: &370 title: Runner Application description: Runner Application type: object @@ -25607,7 +25640,7 @@ paths: - download_url - filename examples: - default: &370 + default: &371 value: - os: osx architecture: x64 @@ -25693,7 +25726,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &371 + '201': &372 description: Response content: application/json: @@ -25804,7 +25837,7 @@ paths: - token - expires_at examples: - default: &372 + default: &373 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -25843,7 +25876,7 @@ paths: application/json: schema: *164 examples: - default: &373 + default: &374 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -25877,7 +25910,7 @@ paths: application/json: schema: *162 examples: - default: &374 + default: &375 value: id: 23 name: MBP @@ -26103,7 +26136,7 @@ paths: - *75 - *161 responses: - '200': &375 + '200': &376 description: Response content: application/json: @@ -26160,7 +26193,7 @@ paths: parameters: - *75 - *161 - - &376 + - &377 name: name description: The name of a self-hosted runner's custom label. in: path @@ -26290,7 +26323,7 @@ paths: description: Response content: application/json: - schema: &388 + schema: &389 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -26319,7 +26352,7 @@ paths: - key_id - key examples: - default: &389 + default: &390 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -26732,7 +26765,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *75 - - &357 + - &358 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)." @@ -27928,12 +27961,12 @@ paths: required: - subject_digests examples: - default: &708 + default: &709 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &709 + withPredicateType: &710 value: subject_digests: - sha256:abc123 @@ -27977,7 +28010,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &710 + default: &711 value: attestations_subject_digests: - sha256:abc: @@ -28310,7 +28343,7 @@ paths: initiator: type: string examples: - default: &402 + default: &403 value: attestations: - bundle: @@ -28661,7 +28694,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &256 + properties: &257 id: description: Unique identifier of the team type: integer @@ -28733,7 +28766,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &257 + required: &258 - id - node_id - url @@ -29239,7 +29272,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *75 - - &427 + - &428 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`, @@ -29249,7 +29282,7 @@ paths: schema: &185 type: string description: The name of the tool used to generate the code scanning analysis. - - &428 + - &429 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 @@ -29272,7 +29305,7 @@ paths: be returned. in: query required: false - schema: &430 + schema: &431 type: string description: State of a code scanning alert. enum: @@ -29295,7 +29328,7 @@ paths: be returned. in: query required: false - schema: &431 + schema: &432 type: string description: Severity of a code scanning alert. enum: @@ -29329,7 +29362,7 @@ paths: updated_at: *180 url: *181 html_url: *182 - instances_url: &432 + instances_url: &433 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -29352,7 +29385,7 @@ paths: required: *21 nullable: true dismissed_at: *184 - dismissed_reason: &433 + dismissed_reason: &434 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -29361,13 +29394,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &434 + dismissed_comment: &435 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &435 + rule: &436 type: object properties: id: @@ -29420,7 +29453,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &436 + tool: &437 type: object properties: name: *185 @@ -29430,26 +29463,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *186 - most_recent_instance: &437 + most_recent_instance: &438 type: object properties: - ref: &429 + ref: &430 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &447 + analysis_key: &448 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: &448 + environment: &449 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: &449 + category: &450 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -29469,7 +29502,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: &450 + location: &451 type: object description: Describe a region within a file for the alert. properties: @@ -29490,7 +29523,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: &451 + items: &452 type: string description: A classification of the file. For example to identify it as generated. @@ -30781,7 +30814,7 @@ paths: type: integer codespaces: type: array - items: &246 + items: &247 type: object title: Codespace description: A codespace. @@ -30811,7 +30844,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &463 + properties: &464 name: type: string description: The name of the machine. @@ -30853,7 +30886,7 @@ paths: - ready - in_progress nullable: true - required: &464 + required: &465 - name - display_name - operating_system @@ -31058,7 +31091,7 @@ paths: - pulls_url - recent_folders examples: - default: &247 + default: &248 value: total_count: 3 codespaces: @@ -31721,7 +31754,7 @@ paths: - updated_at - visibility examples: - default: &465 + default: &466 value: total_count: 2 secrets: @@ -31759,7 +31792,7 @@ paths: description: Response content: application/json: - schema: &466 + schema: &467 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -31788,7 +31821,7 @@ paths: - key_id - key examples: - default: &467 + default: &468 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -31820,7 +31853,7 @@ paths: application/json: schema: *194 examples: - default: &469 + default: &470 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -32287,7 +32320,7 @@ paths: currently being billed. seats: type: array - items: &249 + items: &250 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -33258,7 +33291,7 @@ paths: application/json: schema: type: array - items: &334 + items: &335 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -33565,7 +33598,7 @@ paths: - date additionalProperties: true examples: - default: &335 + default: &336 value: - date: '2024-06-24' total_active_users: 24 @@ -33667,7 +33700,7 @@ paths: '500': *55 '403': *29 '404': *6 - '422': &336 + '422': &337 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -33852,6 +33885,7 @@ paths: - *201 - *202 - *203 + - *204 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -33881,7 +33915,7 @@ paths: enum: - patch - deployment - - *204 + - *205 - name: runtime_risk in: query description: |- @@ -33890,8 +33924,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *205 - *206 + - *207 - *61 - *47 - *48 @@ -33903,9 +33937,9 @@ paths: application/json: schema: type: array - items: *207 + items: *208 examples: - default: *208 + default: *209 '304': *37 '400': *14 '403': *29 @@ -33949,7 +33983,7 @@ paths: type: integer secrets: type: array - items: &209 + items: &210 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -34026,7 +34060,7 @@ paths: description: Response content: application/json: - schema: &498 + schema: &499 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -34043,7 +34077,7 @@ paths: - key_id - key examples: - default: &499 + default: &500 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34073,7 +34107,7 @@ paths: description: Response content: application/json: - schema: *209 + schema: *210 examples: default: value: @@ -34370,7 +34404,7 @@ paths: application/json: schema: type: array - items: &259 + items: &260 title: Package description: A software package type: object @@ -34420,8 +34454,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *210 - required: *211 + properties: *211 + required: *212 nullable: true created_at: type: string @@ -34440,7 +34474,7 @@ paths: - created_at - updated_at examples: - default: &260 + default: &261 value: - id: 197 name: hello_docker @@ -34610,7 +34644,7 @@ paths: application/json: schema: type: array - items: &235 + items: &236 title: Organization Invitation description: Organization Invitation type: object @@ -34657,7 +34691,7 @@ paths: - invitation_teams_url - node_id examples: - default: &236 + default: &237 value: - id: 1 login: monalisa @@ -34724,7 +34758,7 @@ paths: application/json: schema: type: array - items: &212 + items: &213 title: Org Hook description: Org Hook type: object @@ -34895,9 +34929,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: - default: &213 + default: &214 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -34945,7 +34979,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *75 - - &214 + - &215 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. @@ -34958,9 +34992,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: - default: *213 + default: *214 '404': *6 x-github: githubCloudOnly: false @@ -34988,7 +35022,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *75 - - *214 + - *215 requestBody: required: false content: @@ -35033,7 +35067,7 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: default: value: @@ -35075,7 +35109,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *75 - - *214 + - *215 responses: '204': description: Response @@ -35103,7 +35137,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *75 - - *214 + - *215 responses: '200': description: Response @@ -35134,7 +35168,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *75 - - *214 + - *215 requestBody: required: false content: @@ -35185,10 +35219,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *75 - - *214 - - *17 - *215 + - *17 - *216 + - *217 responses: '200': description: Response @@ -35196,9 +35230,9 @@ paths: application/json: schema: type: array - items: *217 + items: *218 examples: - default: *218 + default: *219 '400': *14 '422': *15 x-github: @@ -35224,16 +35258,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *75 - - *214 + - *215 - *16 responses: '200': description: Response content: application/json: - schema: *219 + schema: *220 examples: - default: *220 + default: *221 '400': *14 '422': *15 x-github: @@ -35259,7 +35293,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *75 - - *214 + - *215 - *16 responses: '202': *39 @@ -35289,7 +35323,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *75 - - *214 + - *215 responses: '204': description: Response @@ -35312,7 +35346,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *75 - - &225 + - &226 name: actor_type in: path description: The type of the actor @@ -35325,14 +35359,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &226 + - &227 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &221 + - &222 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`.' @@ -35340,7 +35374,7 @@ paths: required: true schema: type: string - - &222 + - &223 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) @@ -35434,12 +35468,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *75 - - *221 - *222 + - *223 - *19 - *17 - *61 - - &231 + - &232 name: sort description: The property to sort the results by. in: query @@ -35517,14 +35551,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *75 - - *221 - *222 + - *223 responses: '200': description: Response content: application/json: - schema: &223 + schema: &224 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -35540,7 +35574,7 @@ paths: type: integer format: int64 examples: - default: &224 + default: &225 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -35561,23 +35595,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *75 - - &227 + - &228 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *221 - *222 + - *223 responses: '200': description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *224 + default: *225 x-github: enabledForGitHubApps: true category: orgs @@ -35596,18 +35630,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *75 - - *221 - *222 - - *225 + - *223 - *226 + - *227 responses: '200': description: Response content: application/json: - schema: *223 + schema: *224 examples: - default: *224 + default: *225 x-github: enabledForGitHubApps: true category: orgs @@ -35625,9 +35659,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *75 - - *221 - *222 - - &228 + - *223 + - &229 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -35640,7 +35674,7 @@ paths: description: Response content: application/json: - schema: &229 + schema: &230 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -35656,7 +35690,7 @@ paths: type: integer format: int64 examples: - default: &230 + default: &231 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -35693,18 +35727,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *75 - - *227 - - *221 - - *222 - *228 + - *222 + - *223 + - *229 responses: '200': description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 x-github: enabledForGitHubApps: true category: orgs @@ -35722,19 +35756,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *75 - - *225 - *226 - - *221 + - *227 - *222 - - *228 + - *223 + - *229 responses: '200': description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 x-github: enabledForGitHubApps: true category: orgs @@ -35752,13 +35786,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *75 - - *227 - - *221 + - *228 - *222 + - *223 - *19 - *17 - *61 - - *231 + - *232 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -35839,7 +35873,7 @@ paths: application/json: schema: *22 examples: - default: &537 + default: &538 value: id: 1 account: @@ -36005,12 +36039,12 @@ paths: application/json: schema: anyOf: - - &233 + - &234 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &232 + limit: &233 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -36035,7 +36069,7 @@ paths: properties: {} additionalProperties: false examples: - default: &234 + default: &235 value: limit: collaborators_only origin: organization @@ -36064,13 +36098,13 @@ paths: required: true content: application/json: - schema: &538 + schema: &539 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *232 + limit: *233 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -36094,9 +36128,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: *234 + default: *235 '422': *15 x-github: githubCloudOnly: false @@ -36172,9 +36206,9 @@ paths: application/json: schema: type: array - items: *235 + items: *236 examples: - default: *236 + default: *237 headers: Link: *67 '404': *6 @@ -36251,7 +36285,7 @@ paths: description: Response content: application/json: - schema: *235 + schema: *236 examples: default: value: @@ -36306,7 +36340,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *75 - - &237 + - &238 name: invitation_id description: The unique identifier of the invitation. in: path @@ -36337,7 +36371,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *75 - - *237 + - *238 - *17 - *19 responses: @@ -36349,7 +36383,7 @@ paths: type: array items: *197 examples: - default: &258 + default: &259 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -36392,7 +36426,7 @@ paths: application/json: schema: type: array - items: &238 + items: &239 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -36625,9 +36659,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: &239 + default: &240 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -36683,7 +36717,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *75 - - &240 + - &241 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -36782,9 +36816,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *239 + default: *240 '404': *6 '422': *7 x-github: @@ -36809,7 +36843,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *75 - - *240 + - *241 responses: '204': *191 '404': *6 @@ -36839,7 +36873,7 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: default: value: @@ -36924,9 +36958,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - default: &242 + default: &243 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -36959,7 +36993,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *75 - - &243 + - &244 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -37012,9 +37046,9 @@ paths: description: Response content: application/json: - schema: *241 + schema: *242 examples: - default: *242 + default: *243 '404': *6 '422': *7 x-github: @@ -37039,7 +37073,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *75 - - *243 + - *244 responses: '204': description: Response @@ -37102,7 +37136,7 @@ paths: - closed - all default: open - - *244 + - *245 - name: type description: Can be the name of an issue type. in: query @@ -37133,7 +37167,7 @@ paths: type: array items: *85 examples: - default: *245 + default: *246 headers: Link: *67 '404': *6 @@ -37293,9 +37327,9 @@ paths: type: integer codespaces: type: array - items: *246 + items: *247 examples: - default: *247 + default: *248 '304': *37 '500': *55 '401': *25 @@ -37322,7 +37356,7 @@ paths: parameters: - *75 - *71 - - &248 + - &249 name: codespace_name in: path required: true @@ -37357,15 +37391,15 @@ paths: parameters: - *75 - *71 - - *248 + - *249 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: &462 + default: &463 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -37545,7 +37579,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *249 + schema: *250 examples: default: value: @@ -37621,7 +37655,7 @@ paths: description: Response content: application/json: - schema: &250 + schema: &251 title: Org Membership description: Org Membership type: object @@ -37688,7 +37722,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &251 + response-if-user-has-an-active-admin-membership-with-organization: &252 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -37789,9 +37823,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: - response-if-user-already-had-membership-with-organization: *251 + response-if-user-already-had-membership-with-organization: *252 '422': *15 '403': *29 '451': *15 @@ -37863,7 +37897,7 @@ paths: application/json: schema: type: array - items: &252 + items: &253 title: Migration description: A migration. type: object @@ -38192,7 +38226,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -38371,7 +38405,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *75 - - &253 + - &254 name: migration_id description: The unique identifier of the migration. in: path @@ -38398,7 +38432,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -38568,7 +38602,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *75 - - *253 + - *254 responses: '302': description: Response @@ -38590,7 +38624,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *75 - - *253 + - *254 responses: '204': description: Response @@ -38614,8 +38648,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *75 - - *253 - - &690 + - *254 + - &691 name: repo_name description: repo_name parameter in: path @@ -38643,7 +38677,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *75 - - *253 + - *254 - *17 - *19 responses: @@ -38697,7 +38731,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &255 + items: &256 title: Organization Role description: Organization roles type: object @@ -38872,7 +38906,7 @@ paths: parameters: - *75 - *77 - - &254 + - &255 name: role_id description: The unique identifier of the role. in: path @@ -38909,7 +38943,7 @@ paths: parameters: - *75 - *77 - - *254 + - *255 responses: '204': description: Response @@ -38962,7 +38996,7 @@ paths: parameters: - *75 - *71 - - *254 + - *255 responses: '204': description: Response @@ -38994,7 +39028,7 @@ paths: parameters: - *75 - *71 - - *254 + - *255 responses: '204': description: Response @@ -39023,13 +39057,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *75 - - *254 + - *255 responses: '200': description: Response content: application/json: - schema: *255 + schema: *256 examples: default: value: @@ -39080,7 +39114,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *75 - - *254 + - *255 - *17 - *19 responses: @@ -39158,8 +39192,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *256 - required: *257 + properties: *257 + required: *258 nullable: true type: description: The ownership type of the team @@ -39191,7 +39225,7 @@ paths: - type - parent examples: - default: *258 + default: *259 headers: Link: *67 '404': @@ -39221,7 +39255,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *75 - - *254 + - *255 - *17 - *19 responses: @@ -39249,13 +39283,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &330 + items: &331 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *256 - required: *257 + properties: *257 + required: *258 name: nullable: true type: string @@ -39543,7 +39577,7 @@ paths: - nuget - container - *75 - - &691 + - &692 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -39579,12 +39613,12 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: *260 + default: *261 '403': *29 '401': *25 - '400': &693 + '400': &694 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -39606,7 +39640,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &261 + - &262 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 @@ -39624,7 +39658,7 @@ paths: - docker - nuget - container - - &262 + - &263 name: package_name description: The name of the package. in: path @@ -39637,7 +39671,7 @@ paths: description: Response content: application/json: - schema: *259 + schema: *260 examples: default: value: @@ -39689,8 +39723,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *261 - *262 + - *263 - *75 responses: '204': @@ -39723,8 +39757,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *261 - *262 + - *263 - *75 - name: token description: package token @@ -39757,8 +39791,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: - - *261 - *262 + - *263 - *75 - *19 - *17 @@ -39779,7 +39813,7 @@ paths: application/json: schema: type: array - items: &263 + items: &264 title: Package Version description: A version of a software package type: object @@ -39904,10 +39938,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *261 - *262 + - *263 - *75 - - &264 + - &265 name: package_version_id description: Unique identifier of the package version. in: path @@ -39919,7 +39953,7 @@ paths: description: Response content: application/json: - schema: *263 + schema: *264 examples: default: value: @@ -39955,10 +39989,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *261 - *262 + - *263 - *75 - - *264 + - *265 responses: '204': description: Response @@ -39990,10 +40024,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *261 - *262 + - *263 - *75 - - *264 + - *265 responses: '204': description: Response @@ -40023,7 +40057,7 @@ paths: - *75 - *17 - *19 - - &265 + - &266 name: sort description: The property by which to sort the results. in: query @@ -40034,7 +40068,7 @@ paths: - created_at default: created_at - *61 - - &266 + - &267 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -40045,7 +40079,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &267 + - &268 name: repository description: The name of the repository to use to filter the results. in: query @@ -40053,7 +40087,7 @@ paths: schema: type: string example: Hello-World - - &268 + - &269 name: permission description: The permission to use to filter the results. in: query @@ -40061,7 +40095,7 @@ paths: schema: type: string example: issues_read - - &269 + - &270 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) @@ -40071,7 +40105,7 @@ paths: schema: type: string format: date-time - - &270 + - &271 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) @@ -40081,7 +40115,7 @@ paths: schema: type: string format: date-time - - &271 + - &272 name: token_id description: The ID of the token in: query @@ -40394,7 +40428,7 @@ paths: type: array items: *160 examples: - default: &272 + default: &273 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -40531,14 +40565,14 @@ paths: - *75 - *17 - *19 - - *265 - - *61 - *266 + - *61 - *267 - *268 - *269 - *270 - *271 + - *272 responses: '500': *55 '422': *15 @@ -40820,7 +40854,7 @@ paths: type: array items: *160 examples: - default: *272 + default: *273 headers: Link: *67 x-github: @@ -40862,7 +40896,7 @@ paths: type: integer configurations: type: array - items: &273 + items: &274 title: Organization private registry description: Private registry configuration for an organization type: object @@ -41290,7 +41324,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &274 + org-private-registry-with-selected-visibility: &275 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -41386,9 +41420,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *273 + schema: *274 examples: - default: *274 + default: *275 '404': *6 x-github: githubCloudOnly: false @@ -41615,7 +41649,7 @@ paths: application/json: schema: type: array - items: &275 + items: &276 title: Projects v2 Project description: A projects v2 project type: object @@ -41685,7 +41719,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &782 + properties: &783 id: type: number description: The unique identifier of the status update. @@ -41733,7 +41767,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &783 + required: &784 - id - node_id - created_at @@ -41758,7 +41792,7 @@ paths: - deleted_at - deleted_by examples: - default: &276 + default: &277 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -41861,7 +41895,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &277 + - &278 name: project_number description: The project's number. in: path @@ -41874,9 +41908,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: *276 + default: *277 headers: Link: *67 '304': *37 @@ -41899,7 +41933,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *75 - - *277 + - *278 requestBody: required: true description: Details of the draft item to create in the project. @@ -41933,7 +41967,7 @@ paths: description: Response content: application/json: - schema: &283 + schema: &284 title: Projects v2 Item description: An item belonging to a project type: object @@ -41947,7 +41981,7 @@ paths: content: oneOf: - *85 - - &479 + - &480 title: Pull Request Simple description: Pull Request Simple type: object @@ -42053,8 +42087,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *278 - required: *279 + properties: *279 + required: *280 nullable: true active_lock_reason: type: string @@ -42136,7 +42170,7 @@ paths: _links: type: object properties: - comments: &280 + comments: &281 title: Link description: Hypermedia Link type: object @@ -42145,13 +42179,13 @@ paths: type: string required: - href - commits: *280 - statuses: *280 - html: *280 - issue: *280 - review_comments: *280 - review_comment: *280 - self: *280 + commits: *281 + statuses: *281 + html: *281 + issue: *281 + review_comments: *281 + review_comment: *281 + self: *281 required: - comments - commits @@ -42162,7 +42196,7 @@ paths: - review_comment - self author_association: *82 - auto_merge: &588 + auto_merge: &589 title: Auto merge description: The status of auto merging a pull request. type: object @@ -42262,7 +42296,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &282 + content_type: &283 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -42302,7 +42336,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &284 + draft_issue: &285 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -42376,7 +42410,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *277 + - *278 - *75 - *17 - *47 @@ -42388,7 +42422,7 @@ paths: application/json: schema: type: array - items: &281 + items: &282 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -42538,7 +42572,7 @@ paths: - updated_at - project_url examples: - default: &713 + default: &714 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -42668,7 +42702,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *277 + - *278 - *75 requestBody: required: true @@ -42715,7 +42749,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &714 + items: &715 type: object properties: name: @@ -42752,7 +42786,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &715 + iteration_configuration: &716 type: object description: The configuration for iteration fields. properties: @@ -42802,7 +42836,7 @@ paths: value: name: Due date data_type: date - single_select_field: &716 + single_select_field: &717 summary: Create a single select field value: name: Priority @@ -42829,7 +42863,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &717 + iteration_field: &718 summary: Create an iteration field value: name: Sprint @@ -42853,9 +42887,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *281 + schema: *282 examples: - text_field: &718 + text_field: &719 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -42864,7 +42898,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: &719 + number_field: &720 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -42873,7 +42907,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: &720 + date_field: &721 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -42882,7 +42916,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: &721 + single_select_field: &722 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -42916,7 +42950,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &722 + iteration_field: &723 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -42961,8 +42995,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *277 - - &723 + - *278 + - &724 name: field_id description: The unique identifier of the field. in: path @@ -42975,9 +43009,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *282 examples: - default: &724 + default: &725 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43033,7 +43067,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *277 + - *278 - *75 - 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) @@ -43066,7 +43100,7 @@ paths: application/json: schema: type: array - items: &285 + items: &286 title: Projects v2 Item description: An item belonging to a project type: object @@ -43082,7 +43116,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *282 + content_type: *283 content: type: object additionalProperties: true @@ -43125,7 +43159,7 @@ paths: - updated_at - archived_at examples: - default: &286 + default: &287 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -43823,7 +43857,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *75 - - *277 + - *278 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -43893,22 +43927,22 @@ paths: description: Response content: application/json: - schema: *283 + schema: *284 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *284 + value: *285 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *284 + value: *285 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *284 + value: *285 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *284 + value: *285 '304': *37 '403': *29 '401': *25 @@ -43928,9 +43962,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *277 + - *278 - *75 - - &287 + - &288 name: item_id description: The unique identifier of the project item. in: path @@ -43956,9 +43990,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 headers: Link: *67 '304': *37 @@ -43979,9 +44013,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *277 + - *278 - *75 - - *287 + - *288 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -44051,13 +44085,13 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - text_field: *286 - number_field: *286 - date_field: *286 - single_select_field: *286 - iteration_field: *286 + text_field: *287 + number_field: *287 + date_field: *287 + single_select_field: *287 + iteration_field: *287 '401': *25 '403': *29 '404': *6 @@ -44077,9 +44111,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *277 + - *278 - *75 - - *287 + - *288 responses: '204': description: Response @@ -44103,7 +44137,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *75 - - *277 + - *278 requestBody: required: true content: @@ -44174,7 +44208,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &705 + schema: &706 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -44272,7 +44306,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &288 + value: &289 value: id: 1 number: 1 @@ -44318,10 +44352,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *288 + value: *289 roadmap_view: summary: Response for creating a roadmap view - value: *288 + value: *289 '304': *37 '403': *29 '401': *25 @@ -44349,9 +44383,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *277 + - *278 - *75 - - &725 + - &726 name: view_number description: The number that identifies the project view. in: path @@ -44383,9 +44417,9 @@ paths: application/json: schema: type: array - items: *285 + items: *286 examples: - default: *286 + default: *287 headers: Link: *67 '304': *37 @@ -44418,7 +44452,7 @@ paths: application/json: schema: type: array - items: &289 + items: &290 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -44486,7 +44520,7 @@ paths: - property_name - value_type examples: - default: &290 + default: &291 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -44546,7 +44580,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *289 + items: *290 minItems: 1 maxItems: 100 required: @@ -44576,9 +44610,9 @@ paths: application/json: schema: type: array - items: *289 + items: *290 examples: - default: *290 + default: *291 '403': *29 '404': *6 x-github: @@ -44600,7 +44634,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *75 - - &291 + - &292 name: custom_property_name description: The custom property name in: path @@ -44612,9 +44646,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *290 examples: - default: &292 + default: &293 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -44649,7 +44683,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *75 - - *291 + - *292 requestBody: required: true content: @@ -44720,9 +44754,9 @@ paths: description: Response content: application/json: - schema: *289 + schema: *290 examples: - default: *292 + default: *293 '403': *29 '404': *6 x-github: @@ -44746,7 +44780,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *75 - - *291 + - *292 responses: '204': *191 '403': *29 @@ -44807,7 +44841,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &293 + items: &294 title: Custom Property Value description: Custom property name and associated value type: object @@ -44894,7 +44928,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *293 + items: *294 required: - repository_names - properties @@ -45086,7 +45120,7 @@ paths: type: array items: *160 examples: - default: *272 + default: *273 headers: Link: *67 x-github: @@ -45288,7 +45322,7 @@ paths: description: Response content: application/json: - schema: &344 + schema: &345 title: Full Repository description: Full Repository type: object @@ -45573,8 +45607,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *294 - required: *295 + properties: *295 + required: *296 nullable: true temp_clone_token: type: string @@ -45686,7 +45720,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &484 + properties: &485 url: type: string format: uri @@ -45702,12 +45736,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &485 + required: &486 - url - key - name - html_url - security_and_analysis: *296 + security_and_analysis: *297 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -45791,7 +45825,7 @@ paths: - network_count - subscribers_count examples: - default: &346 + default: &347 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -46313,7 +46347,7 @@ paths: - *75 - *17 - *19 - - &610 + - &611 name: targets description: | A comma-separated list of rule targets to filter by. @@ -46331,7 +46365,7 @@ paths: application/json: schema: type: array - items: &323 + items: &324 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -46366,7 +46400,7 @@ paths: source: type: string description: The name of the source - enforcement: &299 + enforcement: &300 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -46379,7 +46413,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &300 + items: &301 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -46449,7 +46483,7 @@ paths: conditions: nullable: true anyOf: - - &297 + - &298 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -46473,7 +46507,7 @@ paths: match. items: type: string - - &301 + - &302 title: Organization ruleset conditions type: object description: |- @@ -46487,7 +46521,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *297 + - *298 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -46521,7 +46555,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *297 + - *298 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -46543,7 +46577,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *297 + - *298 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -46556,7 +46590,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &298 + items: &299 title: Repository ruleset property targeting definition type: object @@ -46589,17 +46623,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *298 + items: *299 required: - repository_property rules: type: array - items: &611 + items: &612 title: Repository Rule type: object description: A repository rule. oneOf: - - &302 + - &303 title: creation description: Only allow users with bypass permission to create matching refs. @@ -46611,7 +46645,7 @@ paths: type: string enum: - creation - - &303 + - &304 title: update description: Only allow users with bypass permission to update matching refs. @@ -46632,7 +46666,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &304 + - &305 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -46644,7 +46678,7 @@ paths: type: string enum: - deletion - - &305 + - &306 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -46656,7 +46690,7 @@ paths: type: string enum: - required_linear_history - - &609 + - &610 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -46734,7 +46768,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &306 + - &307 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -46758,7 +46792,7 @@ paths: type: string required: - required_deployment_environments - - &307 + - &308 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -46770,7 +46804,7 @@ paths: type: string enum: - required_signatures - - &308 + - &309 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -46876,7 +46910,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &309 + - &310 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -46924,7 +46958,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &310 + - &311 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -46936,7 +46970,7 @@ paths: type: string enum: - non_fast_forward - - &311 + - &312 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -46973,7 +47007,7 @@ paths: required: - operator - pattern - - &312 + - &313 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -47010,7 +47044,7 @@ paths: required: - operator - pattern - - &313 + - &314 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -47047,7 +47081,7 @@ paths: required: - operator - pattern - - &314 + - &315 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -47084,7 +47118,7 @@ paths: required: - operator - pattern - - &315 + - &316 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -47121,7 +47155,7 @@ paths: required: - operator - pattern - - &316 + - &317 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -47146,7 +47180,7 @@ paths: type: string required: - restricted_file_paths - - &317 + - &318 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -47170,7 +47204,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &318 + - &319 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -47193,7 +47227,7 @@ paths: type: string required: - restricted_file_extensions - - &319 + - &320 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -47218,7 +47252,7 @@ paths: maximum: 100 required: - max_file_size - - &320 + - &321 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -47268,7 +47302,7 @@ paths: - repository_id required: - workflows - - &321 + - &322 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -47329,7 +47363,7 @@ paths: - tool required: - code_scanning_tools - - &322 + - &323 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -47428,21 +47462,20 @@ paths: - push - repository default: branch - enforcement: *299 + enforcement: *300 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *300 - conditions: *301 + items: *301 + conditions: *302 rules: type: array description: An array of rules within the ruleset. - items: &325 + items: &326 title: Repository Rule type: object description: A repository rule. oneOf: - - *302 - *303 - *304 - *305 @@ -47463,6 +47496,7 @@ paths: - *320 - *321 - *322 + - *323 required: - name - enforcement @@ -47500,9 +47534,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: &324 + default: &325 value: id: 21 name: super cool ruleset @@ -47558,7 +47592,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *75 - - &612 + - &613 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 @@ -47573,7 +47607,7 @@ paths: in: query schema: type: string - - &613 + - &614 name: time_period description: |- The time period to filter by. @@ -47589,14 +47623,14 @@ paths: - week - month default: day - - &614 + - &615 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 - - &615 + - &616 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -47616,7 +47650,7 @@ paths: description: Response content: application/json: - schema: &616 + schema: &617 title: Rule Suites description: Response type: array @@ -47671,7 +47705,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &617 + default: &618 value: - id: 21 actor_id: 12 @@ -47715,7 +47749,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *75 - - &618 + - &619 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -47731,7 +47765,7 @@ paths: description: Response content: application/json: - schema: &619 + schema: &620 title: Rule Suite description: Response type: object @@ -47830,7 +47864,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &620 + default: &621 value: id: 21 actor_id: 12 @@ -47903,9 +47937,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: *324 + default: *325 '404': *6 '500': *55 put: @@ -47949,16 +47983,16 @@ paths: - tag - push - repository - enforcement: *299 + enforcement: *300 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *300 - conditions: *301 + items: *301 + conditions: *302 rules: description: An array of rules within the ruleset. type: array - items: *325 + items: *326 examples: default: value: @@ -47993,9 +48027,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: *324 + default: *325 '404': *6 '422': *15 '500': *55 @@ -48053,7 +48087,7 @@ paths: application/json: schema: type: array - items: &326 + items: &327 title: Ruleset version type: object description: The historical version of a ruleset @@ -48077,7 +48111,7 @@ paths: type: string format: date-time examples: - default: &622 + default: &623 value: - version_id: 3 actor: @@ -48130,9 +48164,9 @@ paths: description: Response content: application/json: - schema: &623 + schema: &624 allOf: - - *326 + - *327 - type: object required: - state @@ -48202,7 +48236,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *75 - - &624 + - &625 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -48213,7 +48247,7 @@ paths: enum: - open - resolved - - &625 + - &626 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -48223,7 +48257,7 @@ paths: required: false schema: type: string - - &626 + - &627 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -48232,7 +48266,7 @@ paths: required: false schema: type: string - - &627 + - &628 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -48251,7 +48285,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &628 + - &629 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. @@ -48266,7 +48300,7 @@ paths: - *61 - *19 - *17 - - &629 + - &630 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 @@ -48276,7 +48310,7 @@ paths: required: false schema: type: string - - &630 + - &631 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 @@ -48286,7 +48320,7 @@ paths: required: false schema: type: string - - &631 + - &632 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -48295,7 +48329,7 @@ paths: required: false schema: type: string - - &632 + - &633 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -48304,7 +48338,7 @@ paths: schema: type: boolean default: false - - &633 + - &634 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -48313,7 +48347,7 @@ paths: schema: type: boolean default: false - - &634 + - &635 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -48348,14 +48382,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &635 + state: &636 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: &636 + resolution: &637 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -48462,8 +48496,8 @@ paths: pull request. ' - oneOf: &637 - - &639 + oneOf: &638 + - &640 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -48521,7 +48555,7 @@ paths: - blob_url - commit_sha - commit_url - - &640 + - &641 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. @@ -48576,7 +48610,7 @@ paths: - page_url - commit_sha - commit_url - - &641 + - &642 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -48596,7 +48630,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &642 + - &643 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -48616,7 +48650,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &643 + - &644 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -48636,7 +48670,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &644 + - &645 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -48650,7 +48684,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &645 + - &646 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -48664,7 +48698,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &646 + - &647 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -48678,7 +48712,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &647 + - &648 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. @@ -48698,7 +48732,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &648 + - &649 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. @@ -48718,7 +48752,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &649 + - &650 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. @@ -48738,7 +48772,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &650 + - &651 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. @@ -48758,7 +48792,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &651 + - &652 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 request. @@ -49021,7 +49055,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &328 + pattern_config_version: &329 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -49030,7 +49064,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &327 + items: &328 type: object properties: token_type: @@ -49096,7 +49130,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *327 + items: *328 examples: default: value: @@ -49153,7 +49187,7 @@ paths: schema: type: object properties: - pattern_config_version: *328 + pattern_config_version: *329 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -49179,7 +49213,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *328 + custom_pattern_version: *329 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -49277,7 +49311,7 @@ paths: application/json: schema: type: array - items: &655 + items: &656 description: A repository security advisory. type: object properties: @@ -49479,7 +49513,7 @@ paths: login: type: string description: The username of the user credited. - type: *329 + type: *330 credits_detailed: type: array nullable: true @@ -49489,7 +49523,7 @@ paths: type: object properties: user: *4 - type: *329 + type: *330 state: type: string description: The state of the user's acceptance of the @@ -49549,7 +49583,7 @@ paths: - private_fork additionalProperties: false examples: - default: &656 + default: &657 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -49936,7 +49970,7 @@ paths: application/json: schema: type: array - items: *330 + items: *331 examples: default: value: @@ -50289,7 +50323,7 @@ paths: type: integer network_configurations: type: array - items: &331 + items: &332 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -50435,9 +50469,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: &332 + default: &333 value: id: 123456789ABCDEF name: My network configuration @@ -50466,7 +50500,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *75 - - &333 + - &334 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -50478,9 +50512,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: *332 + default: *333 headers: Link: *67 x-github: @@ -50502,7 +50536,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *75 - - *333 + - *334 requestBody: required: true content: @@ -50555,9 +50589,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: *332 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50577,7 +50611,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *75 - - *333 + - *334 responses: '204': description: Response @@ -50717,13 +50751,13 @@ paths: application/json: schema: type: array - items: *334 + items: *335 examples: - default: *335 + default: *336 '500': *55 '403': *29 '404': *6 - '422': *336 + '422': *337 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -50765,7 +50799,7 @@ paths: type: array items: *197 examples: - default: *258 + default: *259 headers: Link: *67 '403': *29 @@ -50851,7 +50885,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &338 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -50914,8 +50948,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *256 - required: *257 + properties: *257 + required: *258 nullable: true members_count: type: integer @@ -51178,7 +51212,7 @@ paths: - repos_count - organization examples: - default: &338 + default: &339 value: id: 1 node_id: MDQ6VGVhbTE= @@ -51255,9 +51289,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 '404': *6 x-github: githubCloudOnly: false @@ -51341,16 +51375,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 '201': description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 '404': *6 '422': *15 '403': *29 @@ -51380,7 +51414,7 @@ paths: responses: '204': description: Response - '422': &339 + '422': &340 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -51414,12 +51448,12 @@ paths: application/json: schema: type: array - items: *235 + items: *236 examples: - default: *236 + default: *237 headers: Link: *67 - '422': *339 + '422': *340 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51501,7 +51535,7 @@ paths: description: Response content: application/json: - schema: &340 + schema: &341 title: Team Membership description: Team Membership type: object @@ -51528,7 +51562,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &672 + response-if-user-is-a-team-maintainer: &673 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -51591,9 +51625,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - response-if-users-membership-with-team-is-now-pending: &673 + response-if-users-membership-with-team-is-now-pending: &674 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -51669,7 +51703,7 @@ paths: type: array items: *160 examples: - default: *272 + default: *273 headers: Link: *67 x-github: @@ -51700,14 +51734,14 @@ paths: parameters: - *75 - *77 - - *341 - *342 + - *343 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &674 + schema: &675 title: Team Repository description: A team's access to a repository. type: object @@ -52272,8 +52306,8 @@ paths: parameters: - *75 - *77 - - *341 - *342 + - *343 requestBody: required: false content: @@ -52320,8 +52354,8 @@ paths: parameters: - *75 - *77 - - *341 - *342 + - *343 responses: '204': description: Response @@ -52358,7 +52392,7 @@ paths: type: array items: *197 examples: - response-if-child-teams-exist: &675 + response-if-child-teams-exist: &676 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -52512,7 +52546,7 @@ paths: resources: type: object properties: - core: &343 + core: &344 title: Rate Limit type: object properties: @@ -52529,17 +52563,17 @@ paths: - remaining - reset - used - graphql: *343 - search: *343 - code_search: *343 - source_import: *343 - integration_manifest: *343 - code_scanning_upload: *343 - actions_runner_registration: *343 - scim: *343 - dependency_snapshots: *343 - dependency_sbom: *343 - code_scanning_autofix: *343 + graphql: *344 + search: *344 + code_search: *344 + source_import: *344 + integration_manifest: *344 + code_scanning_upload: *344 + actions_runner_registration: *344 + scim: *344 + dependency_snapshots: *344 + dependency_sbom: *344 + code_scanning_autofix: *344 required: - core - search @@ -52646,14 +52680,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *344 + schema: *345 examples: default-response: summary: Default response @@ -53158,7 +53192,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *345 + '301': *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53176,8 +53210,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: false content: @@ -53468,10 +53502,10 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *346 - '307': &347 + default: *347 + '307': &348 description: Temporary Redirect content: application/json: @@ -53500,8 +53534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -53523,7 +53557,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *347 + '307': *348 '404': *6 '409': *54 x-github: @@ -53547,11 +53581,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *341 - *342 + - *343 - *17 - *19 - - &380 + - &381 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -53574,7 +53608,7 @@ paths: type: integer artifacts: type: array - items: &348 + items: &349 title: Artifact description: An artifact type: object @@ -53652,7 +53686,7 @@ paths: - expires_at - updated_at examples: - default: &381 + default: &382 value: total_count: 2 artifacts: @@ -53713,9 +53747,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *341 - *342 - - &349 + - *343 + - &350 name: artifact_id description: The unique identifier of the artifact. in: path @@ -53727,7 +53761,7 @@ paths: description: Response content: application/json: - schema: *348 + schema: *349 examples: default: value: @@ -53765,9 +53799,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *341 - *342 - - *349 + - *343 + - *350 responses: '204': description: Response @@ -53791,9 +53825,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *341 - *342 - - *349 + - *343 + - *350 - name: archive_format in: path required: true @@ -53807,7 +53841,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': &541 + '410': &542 description: Gone content: application/json: @@ -53832,14 +53866,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: &350 + schema: &351 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -53872,13 +53906,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: application/json: - schema: *350 + schema: *351 examples: selected_actions: *42 responses: @@ -53907,14 +53941,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: &351 + schema: &352 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -53947,13 +53981,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: application/json: - schema: *351 + schema: *352 examples: selected_actions: *44 responses: @@ -53984,14 +54018,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *352 + schema: *353 examples: default: value: @@ -54017,11 +54051,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *341 - *342 + - *343 - *17 - *19 - - &353 + - &354 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 @@ -54055,7 +54089,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &355 title: Repository actions caches description: Repository actions caches type: object @@ -54097,7 +54131,7 @@ paths: - total_count - actions_caches examples: - default: &355 + default: &356 value: total_count: 1 actions_caches: @@ -54129,23 +54163,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: - - *341 - *342 + - *343 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *353 + - *354 responses: '200': description: Response content: application/json: - schema: *354 + schema: *355 examples: - default: *355 + default: *356 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54165,8 +54199,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: - - *341 - *342 + - *343 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -54197,9 +54231,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *341 - *342 - - &356 + - *343 + - &357 name: job_id description: The unique identifier of the job. in: path @@ -54211,7 +54245,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &385 title: Job description: Information of a job execution in a workflow run type: object @@ -54518,9 +54552,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *341 - *342 - - *356 + - *343 + - *357 responses: '302': description: Response @@ -54548,9 +54582,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *341 - *342 - - *356 + - *343 + - *357 requestBody: required: false content: @@ -54595,8 +54629,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: - - *341 - *342 + - *343 responses: '200': description: Status response @@ -54646,8 +54680,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: - - *341 - *342 + - *343 requestBody: required: true content: @@ -54710,8 +54744,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -54729,7 +54763,7 @@ paths: type: integer secrets: type: array - items: &386 + items: &387 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -54749,7 +54783,7 @@ paths: - created_at - updated_at examples: - default: &387 + default: &388 value: total_count: 2 secrets: @@ -54782,9 +54816,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *341 - *342 - - *357 + - *343 + - *358 - *19 responses: '200': @@ -54801,7 +54835,7 @@ paths: type: integer variables: type: array - items: &390 + items: &391 title: Actions Variable type: object properties: @@ -54831,7 +54865,7 @@ paths: - created_at - updated_at examples: - default: &391 + default: &392 value: total_count: 2 variables: @@ -54864,8 +54898,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -54874,11 +54908,11 @@ paths: schema: type: object properties: - enabled: &359 + enabled: &360 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *145 - selected_actions_url: *358 + selected_actions_url: *359 sha_pinning_required: *146 required: - enabled @@ -54907,8 +54941,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -54919,7 +54953,7 @@ paths: schema: type: object properties: - enabled: *359 + enabled: *360 allowed_actions: *145 sha_pinning_required: *146 required: @@ -54951,14 +54985,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: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: &360 + schema: &361 type: object properties: access_level: @@ -54975,7 +55009,7 @@ paths: required: - access_level examples: - default: &361 + default: &362 value: access_level: organization x-github: @@ -54999,15 +55033,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: - - *341 - *342 + - *343 requestBody: required: true content: application/json: - schema: *360 + schema: *361 examples: - default: *361 + default: *362 responses: '204': description: Response @@ -55031,14 +55065,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *362 + schema: *363 examples: default: value: @@ -55062,8 +55096,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Empty response for successful settings update @@ -55073,7 +55107,7 @@ paths: required: true content: application/json: - schema: *363 + schema: *364 examples: default: summary: Set retention days @@ -55097,8 +55131,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -55106,7 +55140,7 @@ paths: application/json: schema: *147 examples: - default: *364 + default: *365 '404': *6 x-github: enabledForGitHubApps: true @@ -55125,8 +55159,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -55160,14 +55194,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: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *365 + schema: *366 examples: default: *148 '403': *29 @@ -55189,13 +55223,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: - - *341 - *342 + - *343 requestBody: required: true content: application/json: - schema: *366 + schema: *367 examples: default: *148 responses: @@ -55221,8 +55255,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -55249,8 +55283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -55282,14 +55316,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *367 + schema: *368 examples: default: *155 x-github: @@ -55312,8 +55346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Success response @@ -55324,7 +55358,7 @@ paths: required: true content: application/json: - schema: *368 + schema: *369 examples: default: *155 x-github: @@ -55353,8 +55387,8 @@ paths: in: query schema: type: string - - *341 - *342 + - *343 - *17 - *19 responses: @@ -55398,8 +55432,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -55407,9 +55441,9 @@ paths: application/json: schema: type: array - items: *369 + items: *370 examples: - default: *370 + default: *371 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55431,8 +55465,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: - - *341 - *342 + - *343 requestBody: required: true content: @@ -55475,7 +55509,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *371 + '201': *372 '404': *6 '422': *7 '409': *54 @@ -55506,8 +55540,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *341 - *342 + - *343 responses: '201': description: Response @@ -55515,7 +55549,7 @@ paths: application/json: schema: *164 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55543,8 +55577,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *341 - *342 + - *343 responses: '201': description: Response @@ -55552,7 +55586,7 @@ paths: application/json: schema: *164 examples: - default: *373 + default: *374 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55574,8 +55608,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: - - *341 - *342 + - *343 - *161 responses: '200': @@ -55584,7 +55618,7 @@ paths: application/json: schema: *162 examples: - default: *374 + default: *375 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55605,8 +55639,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: - - *341 - *342 + - *343 - *161 responses: '204': @@ -55633,8 +55667,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: - - *341 - *342 + - *343 - *161 responses: '200': *166 @@ -55659,8 +55693,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: - - *341 - *342 + - *343 - *161 requestBody: required: true @@ -55709,8 +55743,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: - - *341 - *342 + - *343 - *161 requestBody: required: true @@ -55760,11 +55794,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: - - *341 - *342 + - *343 - *161 responses: - '200': *375 + '200': *376 '404': *6 x-github: githubCloudOnly: false @@ -55791,10 +55825,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: - - *341 - *342 + - *343 - *161 - - *376 + - *377 responses: '200': *166 '404': *6 @@ -55822,9 +55856,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *341 - *342 - - &394 + - *343 + - &395 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. @@ -55832,7 +55866,7 @@ paths: required: false schema: type: string - - &395 + - &396 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -55840,7 +55874,7 @@ paths: required: false schema: type: string - - &396 + - &397 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -55849,7 +55883,7 @@ paths: required: false schema: type: string - - &397 + - &398 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 @@ -55876,7 +55910,7 @@ paths: - pending - *17 - *19 - - &398 + - &399 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)." @@ -55885,7 +55919,7 @@ paths: schema: type: string format: date-time - - &377 + - &378 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -55894,13 +55928,13 @@ paths: schema: type: boolean default: false - - &399 + - &400 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &400 + - &401 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -55923,7 +55957,7 @@ paths: type: integer workflow_runs: type: array - items: &378 + items: &379 title: Workflow Run description: An invocation of a workflow type: object @@ -56071,7 +56105,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &422 + properties: &423 id: type: string description: SHA for the commit @@ -56122,7 +56156,7 @@ paths: - name - email nullable: true - required: &423 + required: &424 - id - tree_id - message @@ -56169,7 +56203,7 @@ paths: - workflow_url - pull_requests examples: - default: &401 + default: &402 value: total_count: 1 workflow_runs: @@ -56405,24 +56439,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *341 - *342 - - &379 + - *343 + - &380 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *377 + - *378 responses: '200': description: Response content: application/json: - schema: *378 + schema: *379 examples: - default: &382 + default: &383 value: id: 30433642 name: Build @@ -56663,9 +56697,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '204': description: Response @@ -56688,9 +56722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '200': description: Response @@ -56809,9 +56843,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: - - *341 - *342 - - *379 + - *343 + - *380 responses: '201': description: Response @@ -56844,12 +56878,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *341 - *342 - - *379 + - *343 + - *380 - *17 - *19 - - *380 + - *381 - *61 responses: '200': @@ -56866,9 +56900,9 @@ paths: type: integer artifacts: type: array - items: *348 + items: *349 examples: - default: *381 + default: *382 headers: Link: *67 x-github: @@ -56892,25 +56926,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *341 - *342 - - *379 - - &383 + - *343 + - *380 + - &384 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *377 + - *378 responses: '200': description: Response content: application/json: - schema: *378 + schema: *379 examples: - default: *382 + default: *383 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56933,10 +56967,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *341 - *342 - - *379 - - *383 + - *343 + - *380 + - *384 - *17 - *19 responses: @@ -56954,9 +56988,9 @@ paths: type: integer jobs: type: array - items: *384 + items: *385 examples: - default: &385 + default: &386 value: total_count: 1 jobs: @@ -57069,10 +57103,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *341 - *342 - - *379 - - *383 + - *343 + - *380 + - *384 responses: '302': description: Response @@ -57100,9 +57134,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '202': description: Response @@ -57135,9 +57169,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: - - *341 - *342 - - *379 + - *343 + - *380 requestBody: required: true content: @@ -57204,9 +57238,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '202': description: Response @@ -57239,9 +57273,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 - 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 @@ -57271,9 +57305,9 @@ paths: type: integer jobs: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 headers: Link: *67 x-github: @@ -57298,9 +57332,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '302': description: Response @@ -57327,9 +57361,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '204': description: Response @@ -57356,9 +57390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '200': description: Response @@ -57418,7 +57452,7 @@ paths: items: type: object properties: - type: &507 + type: &508 type: string description: The type of reviewer. enum: @@ -57503,9 +57537,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 requestBody: required: true content: @@ -57552,12 +57586,12 @@ paths: application/json: schema: type: array - items: &502 + items: &503 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &745 + properties: &746 url: type: string format: uri @@ -57642,7 +57676,7 @@ paths: nullable: true properties: *80 required: *81 - required: &746 + required: &747 - id - node_id - sha @@ -57658,7 +57692,7 @@ paths: - created_at - updated_at examples: - default: &503 + default: &504 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -57714,9 +57748,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *341 - *342 - - *379 + - *343 + - *380 requestBody: required: false content: @@ -57760,9 +57794,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *341 - *342 - - *379 + - *343 + - *380 requestBody: required: false content: @@ -57815,9 +57849,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *341 - *342 - - *379 + - *343 + - *380 responses: '200': description: Response @@ -57954,8 +57988,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -57973,9 +58007,9 @@ paths: type: integer secrets: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -58000,16 +58034,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *388 + schema: *389 examples: - default: *389 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58031,17 +58065,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: &520 + default: &521 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -58067,8 +58101,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 requestBody: required: true @@ -58126,8 +58160,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 responses: '204': @@ -58153,9 +58187,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *341 - *342 - - *357 + - *343 + - *358 - *19 responses: '200': @@ -58172,9 +58206,9 @@ paths: type: integer variables: type: array - items: *390 + items: *391 examples: - default: *391 + default: *392 headers: Link: *67 x-github: @@ -58197,8 +58231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -58250,17 +58284,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *341 - *342 + - *343 - *171 responses: '200': description: Response content: application/json: - schema: *390 + schema: *391 examples: - default: &521 + default: &522 value: name: USERNAME value: octocat @@ -58286,8 +58320,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *341 - *342 + - *343 - *171 requestBody: required: true @@ -58330,8 +58364,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *341 - *342 + - *343 - *171 responses: '204': @@ -58357,8 +58391,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -58376,7 +58410,7 @@ paths: type: integer workflows: type: array - items: &392 + items: &393 title: Workflow description: A GitHub Actions workflow type: object @@ -58483,9 +58517,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *341 - *342 - - &393 + - *343 + - &394 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -58500,7 +58534,7 @@ paths: description: Response content: application/json: - schema: *392 + schema: *393 examples: default: value: @@ -58533,9 +58567,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *341 - *342 - - *393 + - *343 + - *394 responses: '204': description: Response @@ -58560,9 +58594,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *341 - *342 - - *393 + - *343 + - *394 responses: '200': description: Response including the workflow run ID and URLs when `return_run_details` @@ -58643,9 +58677,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *341 - *342 - - *393 + - *343 + - *394 responses: '204': description: Response @@ -58672,19 +58706,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *341 - *342 - - *393 + - *343 - *394 - *395 - *396 - *397 + - *398 - *17 - *19 - - *398 - - *377 - *399 + - *378 - *400 + - *401 responses: '200': description: Response @@ -58700,9 +58734,9 @@ paths: type: integer workflow_runs: type: array - items: *378 + items: *379 examples: - default: *401 + default: *402 headers: Link: *67 x-github: @@ -58734,9 +58768,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *341 - *342 - - *393 + - *343 + - *394 responses: '200': description: Response @@ -58797,8 +58831,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *341 - *342 + - *343 - *61 - *17 - *47 @@ -58962,8 +58996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -59000,8 +59034,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *341 - *342 + - *343 - name: assignee in: path required: true @@ -59037,8 +59071,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -59148,8 +59182,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *341 - *342 + - *343 - *17 - *47 - *48 @@ -59190,7 +59224,7 @@ paths: initiator: type: string examples: - default: *402 + default: *403 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59210,8 +59244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -59219,7 +59253,7 @@ paths: application/json: schema: type: array - items: &403 + items: &404 title: Autolink reference description: An autolink reference. type: object @@ -59273,8 +59307,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -59313,9 +59347,9 @@ paths: description: response content: application/json: - schema: *403 + schema: *404 examples: - default: &404 + default: &405 value: id: 1 key_prefix: TICKET- @@ -59346,9 +59380,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *341 - *342 - - &405 + - *343 + - &406 name: autolink_id description: The unique identifier of the autolink. in: path @@ -59360,9 +59394,9 @@ paths: description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: *404 + default: *405 '404': *6 x-github: githubCloudOnly: false @@ -59382,9 +59416,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *341 - *342 - - *405 + - *343 + - *406 responses: '204': description: Response @@ -59408,8 +59442,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: - - *341 - *342 + - *343 responses: '200': description: Response if Dependabot is enabled @@ -59457,8 +59491,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -59479,8 +59513,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -59500,8 +59534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *341 - *342 + - *343 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -59539,7 +59573,7 @@ paths: - url protected: type: boolean - protection: &407 + protection: &408 title: Branch Protection description: Branch Protection type: object @@ -59581,7 +59615,7 @@ paths: required: - contexts - checks - enforce_admins: &410 + enforce_admins: &411 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -59596,7 +59630,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &412 + required_pull_request_reviews: &413 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -59672,7 +59706,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &409 + restrictions: &410 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -59949,9 +59983,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *341 - *342 - - &408 + - *343 + - &409 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). @@ -59965,14 +59999,14 @@ paths: description: Response content: application/json: - schema: &418 + schema: &419 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &475 + commit: &476 title: Commit description: Commit type: object @@ -60006,7 +60040,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &406 + properties: &407 name: type: string example: '"Chris Wanstrath"' @@ -60022,7 +60056,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *406 + properties: *407 nullable: true message: type: string @@ -60043,7 +60077,7 @@ paths: required: - sha - url - verification: &527 + verification: &528 title: Verification type: object properties: @@ -60113,7 +60147,7 @@ paths: type: integer files: type: array - items: &488 + items: &489 title: Diff Entry description: Diff Entry type: object @@ -60197,7 +60231,7 @@ paths: - self protected: type: boolean - protection: *407 + protection: *408 protection_url: type: string format: uri @@ -60304,7 +60338,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *345 + '301': *346 '404': *6 x-github: githubCloudOnly: false @@ -60326,15 +60360,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *407 + schema: *408 examples: default: value: @@ -60528,9 +60562,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -60785,7 +60819,7 @@ paths: url: type: string format: uri - required_status_checks: &415 + required_status_checks: &416 title: Status Check Policy description: Status Check Policy type: object @@ -60937,7 +60971,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *409 + restrictions: *410 required_conversation_resolution: type: object properties: @@ -61049,9 +61083,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '204': description: Response @@ -61076,17 +61110,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: &411 + default: &412 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -61108,17 +61142,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *411 + default: *412 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61137,9 +61171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '204': description: Response @@ -61164,17 +61198,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *412 + schema: *413 examples: - default: &413 + default: &414 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -61270,9 +61304,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: false content: @@ -61370,9 +61404,9 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: - default: *413 + default: *414 '422': *15 x-github: githubCloudOnly: false @@ -61393,9 +61427,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '204': description: Response @@ -61422,17 +61456,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: &414 + default: &415 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -61455,17 +61489,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *414 + default: *415 '404': *6 x-github: githubCloudOnly: false @@ -61485,9 +61519,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '204': description: Response @@ -61512,17 +61546,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *415 + schema: *416 examples: - default: &416 + default: &417 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -61548,9 +61582,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: false content: @@ -61602,9 +61636,9 @@ paths: description: Response content: application/json: - schema: *415 + schema: *416 examples: - default: *416 + default: *417 '404': *6 '422': *15 x-github: @@ -61626,9 +61660,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '204': description: Response @@ -61652,9 +61686,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response @@ -61688,9 +61722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: false content: @@ -61757,9 +61791,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: false content: @@ -61823,9 +61857,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: content: application/json: @@ -61891,15 +61925,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: default: value: @@ -61990,9 +62024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '204': description: Response @@ -62015,9 +62049,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response @@ -62027,7 +62061,7 @@ paths: type: array items: *5 examples: - default: &417 + default: &418 value: - id: 1 slug: octoapp @@ -62084,9 +62118,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -62120,7 +62154,7 @@ paths: type: array items: *5 examples: - default: *417 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -62141,9 +62175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -62177,7 +62211,7 @@ paths: type: array items: *5 examples: - default: *417 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -62198,9 +62232,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -62234,7 +62268,7 @@ paths: type: array items: *5 examples: - default: *417 + default: *418 '422': *15 x-github: githubCloudOnly: false @@ -62256,9 +62290,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response @@ -62268,7 +62302,7 @@ paths: type: array items: *197 examples: - default: *258 + default: *259 '404': *6 x-github: githubCloudOnly: false @@ -62288,9 +62322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: false content: @@ -62328,7 +62362,7 @@ paths: type: array items: *197 examples: - default: *258 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -62349,9 +62383,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: false content: @@ -62389,7 +62423,7 @@ paths: type: array items: *197 examples: - default: *258 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -62410,9 +62444,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: content: application/json: @@ -62449,7 +62483,7 @@ paths: type: array items: *197 examples: - default: *258 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -62471,9 +62505,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *341 - *342 - - *408 + - *343 + - *409 responses: '200': description: Response @@ -62507,9 +62541,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -62567,9 +62601,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -62627,9 +62661,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -62689,9 +62723,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *341 - *342 - - *408 + - *343 + - *409 requestBody: required: true content: @@ -62713,7 +62747,7 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: default: value: @@ -62829,8 +62863,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -63109,7 +63143,7 @@ paths: description: Response content: application/json: - schema: &419 + schema: &420 title: CheckRun description: A check performed on the code of a given code change type: object @@ -63229,7 +63263,7 @@ paths: check. type: array items: *90 - deployment: &738 + deployment: &739 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -63509,9 +63543,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *341 - *342 - - &420 + - *343 + - &421 name: check_run_id description: The unique identifier of the check run. in: path @@ -63523,9 +63557,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: &421 + default: &422 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -63625,9 +63659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *341 - *342 - - *420 + - *343 + - *421 requestBody: required: true content: @@ -63867,9 +63901,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: *421 + default: *422 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63889,9 +63923,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *341 - *342 - - *420 + - *343 + - *421 - *17 - *19 responses: @@ -63986,9 +64020,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *341 - *342 - - *420 + - *343 + - *421 responses: '201': description: Response @@ -64032,8 +64066,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -64055,7 +64089,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &424 + schema: &425 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -64141,12 +64175,12 @@ paths: type: string format: date-time nullable: true - head_commit: &766 + head_commit: &767 title: Simple Commit description: A commit. type: object - properties: *422 - required: *423 + properties: *423 + required: *424 latest_check_runs_count: type: integer check_runs_url: @@ -64174,7 +64208,7 @@ paths: - check_runs_url - pull_requests examples: - default: &425 + default: &426 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -64465,9 +64499,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64486,8 +64520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -64796,9 +64830,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *341 - *342 - - &426 + - *343 + - &427 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -64810,9 +64844,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64835,17 +64869,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *341 - *342 - - *426 - - &481 + - *343 + - *427 + - &482 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &482 + - &483 name: status description: Returns check runs with the specified `status`. in: query @@ -64884,9 +64918,9 @@ paths: type: integer check_runs: type: array - items: *419 + items: *420 examples: - default: &483 + default: &484 value: total_count: 1 check_runs: @@ -64988,9 +65022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *341 - *342 - - *426 + - *343 + - *427 responses: '201': description: Response @@ -65023,21 +65057,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *341 - *342 - - *427 + - *343 - *428 + - *429 - *19 - *17 - - &445 + - &446 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: *429 - - &446 + schema: *430 + - &447 name: pr description: The number of the pull request for the results you want to list. in: query @@ -65062,13 +65096,13 @@ paths: be returned. in: query required: false - schema: *430 + schema: *431 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *431 + schema: *432 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -65092,7 +65126,7 @@ paths: updated_at: *180 url: *181 html_url: *182 - instances_url: *432 + instances_url: *433 state: *187 fixed_at: *183 dismissed_by: @@ -65103,11 +65137,11 @@ paths: required: *21 nullable: true dismissed_at: *184 - dismissed_reason: *433 - dismissed_comment: *434 - rule: *435 - tool: *436 - most_recent_instance: *437 + dismissed_reason: *434 + dismissed_comment: *435 + rule: *436 + tool: *437 + most_recent_instance: *438 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -65233,7 +65267,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &438 + '403': &439 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -65260,9 +65294,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *341 - *342 - - &439 + - *343 + - &440 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -65276,7 +65310,7 @@ paths: description: Response content: application/json: - schema: &440 + schema: &441 type: object properties: number: *178 @@ -65284,7 +65318,7 @@ paths: updated_at: *180 url: *181 html_url: *182 - instances_url: *432 + instances_url: *433 state: *187 fixed_at: *183 dismissed_by: @@ -65295,8 +65329,8 @@ paths: required: *21 nullable: true dismissed_at: *184 - dismissed_reason: *433 - dismissed_comment: *434 + dismissed_reason: *434 + dismissed_comment: *435 rule: type: object properties: @@ -65350,8 +65384,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *436 - most_recent_instance: *437 + tool: *437 + most_recent_instance: *438 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -65450,7 +65484,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -65470,9 +65504,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *341 - *342 - - *439 + - *343 + - *440 requestBody: required: true content: @@ -65487,8 +65521,8 @@ paths: enum: - open - dismissed - dismissed_reason: *433 - dismissed_comment: *434 + dismissed_reason: *434 + dismissed_comment: *435 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -65516,7 +65550,7 @@ paths: description: Response content: application/json: - schema: *440 + schema: *441 examples: default: value: @@ -65592,7 +65626,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &444 + '403': &445 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -65619,15 +65653,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: - - *341 - *342 - - *439 + - *343 + - *440 responses: '200': description: Response content: application/json: - schema: &441 + schema: &442 type: object properties: status: @@ -65653,13 +65687,13 @@ paths: - description - started_at examples: - default: &442 + default: &443 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &443 + '400': &444 description: Bad Request content: application/json: @@ -65670,7 +65704,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': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -65695,29 +65729,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: - - *341 - *342 - - *439 + - *343 + - *440 responses: '200': description: OK content: application/json: - schema: *441 + schema: *442 examples: - default: *442 + default: *443 '202': description: Accepted content: application/json: - schema: *441 + schema: *442 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *443 + '400': *444 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -65749,9 +65783,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: - - *341 - *342 - - *439 + - *343 + - *440 requestBody: required: false content: @@ -65796,8 +65830,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *443 - '403': *444 + '400': *444 + '403': *445 '404': *6 '422': description: Unprocessable Entity @@ -65821,13 +65855,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *341 - *342 - - *439 + - *343 + - *440 - *19 - *17 - - *445 - *446 + - *447 responses: '200': description: Response @@ -65838,10 +65872,10 @@ paths: items: type: object properties: - ref: *429 - analysis_key: *447 - environment: *448 - category: *449 + ref: *430 + analysis_key: *448 + environment: *449 + category: *450 state: type: string description: State of a code scanning alert instance. @@ -65856,7 +65890,7 @@ paths: properties: text: type: string - location: *450 + location: *451 html_url: type: string classifications: @@ -65864,7 +65898,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: *451 + items: *452 examples: default: value: @@ -65901,7 +65935,7 @@ paths: end_column: 50 classifications: - source - '403': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -65935,25 +65969,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *341 - *342 - - *427 + - *343 - *428 + - *429 - *19 - *17 - - *446 + - *447 - 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: *429 + schema: *430 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &452 + schema: &453 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -65974,23 +66008,23 @@ paths: application/json: schema: type: array - items: &453 + items: &454 type: object properties: - ref: *429 - commit_sha: &461 + ref: *430 + commit_sha: &462 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: *447 + analysis_key: *448 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *449 + category: *450 error: type: string example: error reading field xyz @@ -66014,8 +66048,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *452 - tool: *436 + sarif_id: *453 + tool: *437 deletable: type: boolean warning: @@ -66076,7 +66110,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -66112,8 +66146,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: - - *341 - *342 + - *343 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -66126,7 +66160,7 @@ paths: description: Response content: application/json: - schema: *453 + schema: *454 examples: response: summary: application/json response @@ -66180,7 +66214,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *438 + '403': *439 '404': *6 '422': description: Response if analysis could not be processed @@ -66267,8 +66301,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: - - *341 - *342 + - *343 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -66321,7 +66355,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': *444 + '403': *445 '404': *6 '503': *121 x-github: @@ -66343,8 +66377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -66352,7 +66386,7 @@ paths: application/json: schema: type: array - items: &454 + items: &455 title: CodeQL Database description: A CodeQL database. type: object @@ -66463,7 +66497,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': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -66492,8 +66526,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *341 - *342 + - *343 - name: language in: path description: The language of the CodeQL database. @@ -66505,7 +66539,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *455 examples: default: value: @@ -66537,9 +66571,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': &490 + '302': &491 description: Found - '403': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -66561,8 +66595,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *341 - *342 + - *343 - name: language in: path description: The language of the CodeQL database. @@ -66572,7 +66606,7 @@ paths: responses: '204': description: Response - '403': *444 + '403': *445 '404': *6 '503': *121 x-github: @@ -66600,8 +66634,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -66610,7 +66644,7 @@ paths: type: object additionalProperties: false properties: - language: &455 + language: &456 type: string description: The language targeted by the CodeQL query enum: @@ -66690,7 +66724,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &459 + schema: &460 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -66700,7 +66734,7 @@ paths: description: The ID of the variant analysis. controller_repo: *66 actor: *4 - query_language: *455 + query_language: *456 query_pack_url: type: string description: The download url for the query pack. @@ -66747,7 +66781,7 @@ paths: items: type: object properties: - repository: &456 + repository: &457 title: Repository Identifier description: Repository Identifier type: object @@ -66783,7 +66817,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &460 + analysis_status: &461 type: string description: The new status of the CodeQL variant analysis repository task. @@ -66815,7 +66849,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &457 + access_mismatch_repos: &458 type: object properties: repository_count: @@ -66829,7 +66863,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: *456 + items: *457 required: - repository_count - repositories @@ -66851,8 +66885,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *457 - over_limit_repos: *457 + no_codeql_db_repos: *458 + over_limit_repos: *458 required: - access_mismatch_repos - not_found_repos @@ -66868,7 +66902,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &458 + value: &459 summary: Default response value: id: 1 @@ -67014,10 +67048,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *458 + value: *459 repository_lists: summary: Response for a successful variant analysis submission - value: *458 + value: *459 '404': *6 '422': description: Unable to process variant analysis submission @@ -67045,8 +67079,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: - - *341 - *342 + - *343 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -67058,9 +67092,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: - default: *458 + default: *459 '404': *6 '503': *121 x-github: @@ -67083,7 +67117,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: - - *341 + - *342 - name: repo in: path description: The name of the controller repository. @@ -67118,7 +67152,7 @@ paths: type: object properties: repository: *66 - analysis_status: *460 + analysis_status: *461 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -67243,8 +67277,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -67327,7 +67361,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *438 + '403': *439 '404': *6 '503': *121 x-github: @@ -67348,8 +67382,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -67441,7 +67475,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *444 + '403': *445 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -67512,8 +67546,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -67521,7 +67555,7 @@ paths: schema: type: object properties: - commit_sha: *461 + commit_sha: *462 ref: type: string description: |- @@ -67579,7 +67613,7 @@ paths: schema: type: object properties: - id: *452 + id: *453 url: type: string description: The REST API URL for checking the status of the upload. @@ -67593,7 +67627,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': *444 + '403': *445 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -67616,8 +67650,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *341 - *342 + - *343 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -67663,7 +67697,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': *438 + '403': *439 '404': description: Not Found if the sarif id does not match any upload '503': *121 @@ -67688,8 +67722,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: - - *341 - *342 + - *343 responses: '200': description: Response @@ -67770,8 +67804,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *341 - *342 + - *343 - 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 @@ -67891,8 +67925,8 @@ paths: parameters: - *17 - *19 - - *341 - *342 + - *343 responses: '200': description: Response @@ -67908,7 +67942,7 @@ paths: type: integer codespaces: type: array - items: *246 + items: *247 examples: default: value: @@ -68206,8 +68240,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -68270,17 +68304,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '400': *14 '401': *25 '403': *29 @@ -68309,8 +68343,8 @@ paths: parameters: - *17 - *19 - - *341 - *342 + - *343 responses: '200': description: Response @@ -68374,8 +68408,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *341 - *342 + - *343 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -68410,14 +68444,14 @@ paths: type: integer machines: type: array - items: &680 + items: &681 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *463 - required: *464 + properties: *464 + required: *465 examples: - default: &681 + default: &682 value: total_count: 2 machines: @@ -68457,8 +68491,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *341 - *342 + - *343 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -68542,8 +68576,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: - - *341 - *342 + - *343 - 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 @@ -68609,8 +68643,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -68628,7 +68662,7 @@ paths: type: integer secrets: type: array - items: &468 + items: &469 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -68648,7 +68682,7 @@ paths: - created_at - updated_at examples: - default: *465 + default: *466 headers: Link: *67 x-github: @@ -68671,16 +68705,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *466 + schema: *467 examples: - default: *467 + default: *468 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -68700,17 +68734,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 responses: '200': description: Response content: application/json: - schema: *468 + schema: *469 examples: - default: *469 + default: *470 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68730,8 +68764,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 requestBody: required: true @@ -68784,8 +68818,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 responses: '204': @@ -68814,8 +68848,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *341 - *342 + - *343 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -68857,7 +68891,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &470 + properties: &471 login: type: string example: octocat @@ -68950,7 +68984,7 @@ paths: user_view_type: type: string example: public - required: &471 + required: &472 - avatar_url - events_url - followers_url @@ -69024,8 +69058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *341 - *342 + - *343 - *71 responses: '204': @@ -69072,8 +69106,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *341 - *342 + - *343 - *71 requestBody: required: false @@ -69100,7 +69134,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &540 + schema: &541 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -69329,8 +69363,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *341 - *342 + - *343 - *71 responses: '204': @@ -69362,8 +69396,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *341 - *342 + - *343 - *71 responses: '200': @@ -69384,8 +69418,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *470 - required: *471 + properties: *471 + required: *472 nullable: true required: - permission @@ -69440,8 +69474,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -69451,7 +69485,7 @@ paths: application/json: schema: type: array - items: &472 + items: &473 title: Commit Comment description: Commit Comment type: object @@ -69509,7 +69543,7 @@ paths: - created_at - updated_at examples: - default: &477 + default: &478 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -69568,17 +69602,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *341 - *342 + - *343 - *101 responses: '200': description: Response content: application/json: - schema: *472 + schema: *473 examples: - default: &478 + default: &479 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -69635,8 +69669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *341 - *342 + - *343 - *101 requestBody: required: true @@ -69659,7 +69693,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *473 examples: default: value: @@ -69710,8 +69744,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *341 - *342 + - *343 - *101 responses: '204': @@ -69733,8 +69767,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *341 - *342 + - *343 - *101 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -69761,7 +69795,7 @@ paths: application/json: schema: type: array - items: &473 + items: &474 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -69804,7 +69838,7 @@ paths: - content - created_at examples: - default: &544 + default: &545 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -69849,8 +69883,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *341 - *342 + - *343 - *101 requestBody: required: true @@ -69883,9 +69917,9 @@ paths: description: Reaction exists content: application/json: - schema: *473 + schema: *474 examples: - default: &474 + default: &475 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -69914,9 +69948,9 @@ paths: description: Reaction created content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -69938,10 +69972,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *341 - *342 + - *343 - *101 - - &545 + - &546 name: reaction_id description: The unique identifier of the reaction. in: path @@ -69996,8 +70030,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *341 - *342 + - *343 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -70053,9 +70087,9 @@ paths: application/json: schema: type: array - items: *475 + items: *476 examples: - default: &595 + default: &596 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -70149,9 +70183,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *341 - *342 - - &476 + - *343 + - &477 name: commit_sha description: The SHA of the commit. in: path @@ -70223,9 +70257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *341 - *342 - - *476 + - *343 + - *477 - *17 - *19 responses: @@ -70235,9 +70269,9 @@ paths: application/json: schema: type: array - items: *472 + items: *473 examples: - default: *477 + default: *478 headers: Link: *67 x-github: @@ -70265,9 +70299,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *341 - *342 - - *476 + - *343 + - *477 requestBody: required: true content: @@ -70302,9 +70336,9 @@ paths: description: Response content: application/json: - schema: *472 + schema: *473 examples: - default: *478 + default: *479 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -70332,9 +70366,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *341 - *342 - - *476 + - *343 + - *477 - *17 - *19 responses: @@ -70344,9 +70378,9 @@ paths: application/json: schema: type: array - items: *479 + items: *480 examples: - default: &587 + default: &588 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -70883,11 +70917,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *341 - *342 + - *343 - *19 - *17 - - &480 + - &481 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)" @@ -70902,9 +70936,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *476 examples: - default: &574 + default: &575 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -71017,11 +71051,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *341 - *342 - - *480 + - *343 - *481 - *482 + - *483 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -71055,9 +71089,9 @@ paths: type: integer check_runs: type: array - items: *419 + items: *420 examples: - default: *483 + default: *484 headers: Link: *67 x-github: @@ -71082,9 +71116,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *341 - *342 - - *480 + - *343 + - *481 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -71092,7 +71126,7 @@ paths: schema: type: integer example: 1 - - *481 + - *482 - *17 - *19 responses: @@ -71110,7 +71144,7 @@ paths: type: integer check_suites: type: array - items: *424 + items: *425 examples: default: value: @@ -71310,9 +71344,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *341 - *342 - - *480 + - *343 + - *481 - *17 - *19 responses: @@ -71510,9 +71544,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *341 - *342 - - *480 + - *343 + - *481 - *17 - *19 responses: @@ -71522,7 +71556,7 @@ paths: application/json: schema: type: array - items: &660 + items: &661 title: Status description: The status of a commit. type: object @@ -71603,7 +71637,7 @@ paths: site_admin: false headers: Link: *67 - '301': *345 + '301': *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71631,8 +71665,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -71661,20 +71695,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *484 - required: *485 + properties: *485 + required: *486 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &486 + properties: &487 url: type: string format: uri html_url: type: string format: uri - required: &487 + required: &488 - url - html_url nullable: true @@ -71688,26 +71722,26 @@ paths: contributing: title: Community Health File type: object - properties: *486 - required: *487 + properties: *487 + required: *488 nullable: true readme: title: Community Health File type: object - properties: *486 - required: *487 + properties: *487 + required: *488 nullable: true issue_template: title: Community Health File type: object - properties: *486 - required: *487 + properties: *487 + required: *488 nullable: true pull_request_template: title: Community Health File type: object - properties: *486 - required: *487 + properties: *487 + required: *488 nullable: true required: - code_of_conduct @@ -71834,8 +71868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *341 - *342 + - *343 - *19 - *17 - name: basehead @@ -71878,8 +71912,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *475 - merge_base_commit: *475 + base_commit: *476 + merge_base_commit: *476 status: type: string enum: @@ -71899,10 +71933,10 @@ paths: example: 6 commits: type: array - items: *475 + items: *476 files: type: array - items: *488 + items: *489 required: - url - html_url @@ -72188,8 +72222,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *341 - *342 + - *343 - name: path description: path parameter in: path @@ -72349,7 +72383,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &489 + response-if-content-is-a-file-github-object: &490 summary: Response if content is a file value: type: file @@ -72481,7 +72515,7 @@ paths: - size - type - url - - &600 + - &601 title: Content File description: Content File type: object @@ -72682,7 +72716,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *489 + response-if-content-is-a-file: *490 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -72751,7 +72785,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *490 + '302': *491 '304': *37 x-github: githubCloudOnly: false @@ -72774,8 +72808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *341 - *342 + - *343 - name: path description: path parameter in: path @@ -72868,7 +72902,7 @@ paths: description: Response content: application/json: - schema: &491 + schema: &492 title: File Commit description: File Commit type: object @@ -73020,7 +73054,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: example-for-creating-a-file: value: @@ -73074,7 +73108,7 @@ paths: schema: oneOf: - *3 - - &522 + - &523 description: Repository rule violation was detected type: object properties: @@ -73095,7 +73129,7 @@ paths: items: type: object properties: - placeholder_id: &652 + placeholder_id: &653 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -73127,8 +73161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *341 - *342 + - *343 - name: path description: path parameter in: path @@ -73189,7 +73223,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: default: value: @@ -73244,8 +73278,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *341 - *342 + - *343 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -73368,23 +73402,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *341 - *342 + - *343 - *199 - *200 - *201 - *202 + - *203 - 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 - - *203 - - *492 - *204 + - *493 - *205 - *206 + - *207 - *61 - *47 - *48 @@ -73396,7 +73431,7 @@ paths: application/json: schema: type: array - items: &496 + items: &497 type: object description: A Dependabot alert. properties: @@ -73443,7 +73478,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *493 + security_advisory: *494 security_vulnerability: *65 url: *181 html_url: *182 @@ -73474,8 +73509,8 @@ paths: nullable: true maxLength: 280 fixed_at: *183 - auto_dismissed_at: *494 - dismissal_request: *495 + auto_dismissed_at: *495 + dismissal_request: *496 assignees: type: array description: The users assigned to this alert. @@ -73730,9 +73765,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *341 - *342 - - &497 + - *343 + - &498 name: alert_number in: path description: |- @@ -73747,7 +73782,7 @@ paths: description: Response content: application/json: - schema: *496 + schema: *497 examples: default: value: @@ -73879,9 +73914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *341 - *342 - - *497 + - *343 + - *498 requestBody: required: true content: @@ -73937,7 +73972,7 @@ paths: description: Response content: application/json: - schema: *496 + schema: *497 examples: default: value: @@ -74067,8 +74102,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -74086,7 +74121,7 @@ paths: type: integer secrets: type: array - items: &500 + items: &501 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -74139,16 +74174,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *498 + schema: *499 examples: - default: *499 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74168,15 +74203,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 responses: '200': description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -74202,8 +74237,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 requestBody: required: true @@ -74256,8 +74291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *341 - *342 + - *343 - *168 responses: '204': @@ -74280,8 +74315,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: - - *341 - *342 + - *343 - 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 @@ -74441,8 +74476,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: - - *341 - *342 + - *343 responses: '200': description: Response @@ -74681,8 +74716,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: - - *341 - *342 + - *343 requestBody: required: true content: @@ -74757,7 +74792,7 @@ paths: - version - url additionalProperties: false - metadata: &501 + metadata: &502 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -74790,7 +74825,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *501 + metadata: *502 resolved: type: object description: A collection of resolved package dependencies. @@ -74803,7 +74838,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *501 + metadata: *502 relationship: type: string description: A notation of whether a dependency is requested @@ -74932,8 +74967,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *341 - *342 + - *343 - name: sha description: The SHA recorded at creation time. in: query @@ -74973,9 +75008,9 @@ paths: application/json: schema: type: array - items: *502 + items: *503 examples: - default: *503 + default: *504 headers: Link: *67 x-github: @@ -75041,8 +75076,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -75123,7 +75158,7 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: simple-example: summary: Simple example @@ -75196,9 +75231,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *341 - *342 - - &504 + - *343 + - &505 name: deployment_id description: deployment_id parameter in: path @@ -75210,7 +75245,7 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: default: value: @@ -75275,9 +75310,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *341 - *342 - - *504 + - *343 + - *505 responses: '204': description: Response @@ -75299,9 +75334,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *341 - *342 - - *504 + - *343 + - *505 - *17 - *19 responses: @@ -75311,7 +75346,7 @@ paths: application/json: schema: type: array - items: &505 + items: &506 title: Deployment Status description: The status of a deployment. type: object @@ -75472,9 +75507,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *341 - *342 - - *504 + - *343 + - *505 requestBody: required: true content: @@ -75549,9 +75584,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *506 examples: - default: &506 + default: &507 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -75607,9 +75642,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *341 - *342 - - *504 + - *343 + - *505 - name: status_id in: path required: true @@ -75620,9 +75655,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *506 examples: - default: *506 + default: *507 '404': *6 x-github: githubCloudOnly: false @@ -75647,8 +75682,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -75705,8 +75740,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -75723,7 +75758,7 @@ paths: type: integer environments: type: array - items: &508 + items: &509 title: Environment description: Details of a deployment environment type: object @@ -75775,7 +75810,7 @@ paths: type: type: string example: wait_timer - wait_timer: &510 + wait_timer: &511 type: integer example: 30 description: The amount of time to delay a job after @@ -75812,7 +75847,7 @@ paths: items: type: object properties: - type: *507 + type: *508 reviewer: anyOf: - *4 @@ -75836,7 +75871,7 @@ paths: - id - node_id - type - deployment_branch_policy: &511 + deployment_branch_policy: &512 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -75952,9 +75987,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *341 - *342 - - &509 + - *343 + - &510 name: environment_name in: path required: true @@ -75967,9 +76002,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: &512 + default: &513 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -76053,9 +76088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *341 - *342 - - *509 + - *343 + - *510 requestBody: required: false content: @@ -76064,7 +76099,7 @@ paths: type: object nullable: true properties: - wait_timer: *510 + wait_timer: *511 prevent_self_review: type: boolean example: false @@ -76081,13 +76116,13 @@ paths: items: type: object properties: - type: *507 + type: *508 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *511 + deployment_branch_policy: *512 additionalProperties: false examples: default: @@ -76107,9 +76142,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: - default: *512 + default: *513 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -76133,9 +76168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *341 - *342 - - *509 + - *343 + - *510 responses: '204': description: Default response @@ -76160,9 +76195,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *341 - *342 - - *509 + - *343 + - *510 - *17 - *19 responses: @@ -76180,7 +76215,7 @@ paths: example: 2 branch_policies: type: array - items: &513 + items: &514 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -76237,9 +76272,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *341 - *342 - - *509 + - *343 + - *510 requestBody: required: true content: @@ -76285,9 +76320,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: - example-wildcard: &514 + example-wildcard: &515 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -76329,10 +76364,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *341 - *342 - - *509 - - &515 + - *343 + - *510 + - &516 name: branch_policy_id in: path required: true @@ -76344,9 +76379,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: - default: *514 + default: *515 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76365,10 +76400,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *341 - *342 - - *509 - - *515 + - *343 + - *510 + - *516 requestBody: required: true content: @@ -76396,9 +76431,9 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: - default: *514 + default: *515 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76417,10 +76452,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *341 - *342 - - *509 - - *515 + - *343 + - *510 + - *516 responses: '204': description: Response @@ -76445,9 +76480,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *509 + - *510 + - *343 - *342 - - *341 responses: '200': description: List of deployment protection rules @@ -76463,7 +76498,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &516 + items: &517 title: Deployment protection rule description: Deployment protection rule type: object @@ -76482,7 +76517,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &517 + app: &518 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -76581,9 +76616,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: - - *509 + - *510 + - *343 - *342 - - *341 requestBody: content: application/json: @@ -76604,9 +76639,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *516 + schema: *517 examples: - default: &518 + default: &519 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -76641,9 +76676,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: - - *509 + - *510 + - *343 - *342 - - *341 - *19 - *17 responses: @@ -76662,7 +76697,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *517 + items: *518 examples: default: value: @@ -76697,10 +76732,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *341 - *342 - - *509 - - &519 + - *343 + - *510 + - &520 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -76712,9 +76747,9 @@ paths: description: Response content: application/json: - schema: *516 + schema: *517 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76735,10 +76770,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *509 + - *510 + - *343 - *342 - - *341 - - *519 + - *520 responses: '204': description: Response @@ -76764,9 +76799,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *341 - *342 - - *509 + - *343 + - *510 - *17 - *19 responses: @@ -76784,9 +76819,9 @@ paths: type: integer secrets: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -76811,17 +76846,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *341 - *342 - - *509 + - *343 + - *510 responses: '200': description: Response content: application/json: - schema: *388 + schema: *389 examples: - default: *389 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76843,18 +76878,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *341 - *342 - - *509 + - *343 + - *510 - *168 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *520 + default: *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76876,9 +76911,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *341 - *342 - - *509 + - *343 + - *510 - *168 requestBody: required: true @@ -76936,9 +76971,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *341 - *342 - - *509 + - *343 + - *510 - *168 responses: '204': @@ -76964,10 +76999,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *341 - *342 - - *509 - - *357 + - *343 + - *510 + - *358 - *19 responses: '200': @@ -76984,9 +77019,9 @@ paths: type: integer variables: type: array - items: *390 + items: *391 examples: - default: *391 + default: *392 headers: Link: *67 x-github: @@ -77009,9 +77044,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *341 - *342 - - *509 + - *343 + - *510 requestBody: required: true content: @@ -77063,18 +77098,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *341 - *342 - - *509 + - *343 + - *510 - *171 responses: '200': description: Response content: application/json: - schema: *390 + schema: *391 examples: - default: *521 + default: *522 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77095,10 +77130,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *341 - *342 + - *343 - *171 - - *509 + - *510 requestBody: required: true content: @@ -77140,10 +77175,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *341 - *342 + - *343 - *171 - - *509 + - *510 responses: '204': description: Response @@ -77165,8 +77200,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -77234,8 +77269,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *341 - *342 + - *343 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -77394,8 +77429,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *341 - *342 + - *343 requestBody: required: false content: @@ -77427,9 +77462,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *346 + default: *347 '400': *14 '422': *15 '403': *29 @@ -77450,8 +77485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -77511,7 +77546,7 @@ paths: schema: oneOf: - *129 - - *522 + - *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77536,8 +77571,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *341 - *342 + - *343 - name: file_sha in: path required: true @@ -77636,8 +77671,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -77746,7 +77781,7 @@ paths: description: Response content: application/json: - schema: &523 + schema: &524 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -77960,15 +77995,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *341 - *342 - - *476 + - *343 + - *477 responses: '200': description: Response content: application/json: - schema: *523 + schema: *524 examples: default: value: @@ -78024,9 +78059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *341 - *342 - - &524 + - *343 + - &525 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. @@ -78043,7 +78078,7 @@ paths: application/json: schema: type: array - items: &525 + items: &526 title: Git Reference description: Git references within a repository type: object @@ -78118,17 +78153,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *341 - *342 - - *524 + - *343 + - *525 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: &526 + default: &527 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -78157,8 +78192,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -78187,9 +78222,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *526 + default: *527 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -78215,9 +78250,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *341 - *342 - - *524 + - *343 + - *525 requestBody: required: true content: @@ -78246,9 +78281,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *526 + default: *527 '422': *15 '409': *54 x-github: @@ -78266,9 +78301,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *341 - *342 - - *524 + - *343 + - *525 responses: '204': description: Response @@ -78323,8 +78358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -78391,7 +78426,7 @@ paths: description: Response content: application/json: - schema: &528 + schema: &529 title: Git Tag description: Metadata for a Git tag type: object @@ -78442,7 +78477,7 @@ paths: - sha - type - url - verification: *527 + verification: *528 required: - sha - url @@ -78452,7 +78487,7 @@ paths: - tag - message examples: - default: &529 + default: &530 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -78525,8 +78560,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *341 - *342 + - *343 - name: tag_sha in: path required: true @@ -78537,9 +78572,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *529 + default: *530 '404': *6 '409': *54 x-github: @@ -78563,8 +78598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -78637,7 +78672,7 @@ paths: description: Response content: application/json: - schema: &530 + schema: &531 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -78733,8 +78768,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *341 - *342 + - *343 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -78757,7 +78792,7 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: default-response: summary: Default response @@ -78816,8 +78851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -78827,7 +78862,7 @@ paths: application/json: schema: type: array - items: &531 + items: &532 title: Webhook description: Webhooks for repositories. type: object @@ -78881,7 +78916,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &774 + last_response: &775 title: Hook Response type: object properties: @@ -78955,8 +78990,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *341 - *342 + - *343 requestBody: required: false content: @@ -79008,9 +79043,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: - default: &532 + default: &533 value: type: Repository id: 12345678 @@ -79058,17 +79093,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 responses: '200': description: Response content: application/json: - schema: *531 + schema: *532 examples: - default: *532 + default: *533 '404': *6 x-github: githubCloudOnly: false @@ -79088,9 +79123,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 requestBody: required: true content: @@ -79135,9 +79170,9 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: - default: *532 + default: *533 '422': *15 '404': *6 x-github: @@ -79158,9 +79193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 responses: '204': description: Response @@ -79184,9 +79219,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *341 - *342 - - *214 + - *343 + - *215 responses: '200': description: Response @@ -79213,9 +79248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *341 - *342 - - *214 + - *343 + - *215 requestBody: required: false content: @@ -79259,12 +79294,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *341 - *342 - - *214 - - *17 + - *343 - *215 + - *17 - *216 + - *217 responses: '200': description: Response @@ -79272,9 +79307,9 @@ paths: application/json: schema: type: array - items: *217 + items: *218 examples: - default: *218 + default: *219 '400': *14 '422': *15 x-github: @@ -79293,18 +79328,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 - *16 responses: '200': description: Response content: application/json: - schema: *219 + schema: *220 examples: - default: *220 + default: *221 '400': *14 '422': *15 x-github: @@ -79323,9 +79358,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 - *16 responses: '202': *39 @@ -79348,9 +79383,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 responses: '204': description: Response @@ -79375,9 +79410,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *341 - *342 - - *214 + - *343 + - *215 responses: '204': description: Response @@ -79400,8 +79435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response if immutable releases are enabled @@ -79447,8 +79482,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *341 - *342 + - *343 responses: '204': *191 '409': *54 @@ -79468,8 +79503,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *341 - *342 + - *343 responses: '204': *191 '409': *54 @@ -79526,14 +79561,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: &533 + schema: &534 title: Import description: A repository import from an external source. type: object @@ -79632,7 +79667,7 @@ paths: - html_url - authors_url examples: - default: &536 + default: &537 value: vcs: subversion use_lfs: true @@ -79648,7 +79683,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': &534 + '503': &535 description: Unavailable due to service under maintenance. content: application/json: @@ -79677,8 +79712,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -79726,7 +79761,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: default: value: @@ -79751,7 +79786,7 @@ paths: type: string '422': *15 '404': *6 - '503': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79779,8 +79814,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *341 - *342 + - *343 requestBody: required: false content: @@ -79829,7 +79864,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: example-1: summary: Example 1 @@ -79877,7 +79912,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': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79900,12 +79935,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *341 - *342 + - *343 responses: '204': description: Response - '503': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79931,9 +79966,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *341 - *342 - - &703 + - *343 + - &704 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -79947,7 +79982,7 @@ paths: application/json: schema: type: array - items: &535 + items: &536 title: Porter Author description: Porter Author type: object @@ -80001,7 +80036,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': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80026,8 +80061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *341 - *342 + - *343 - name: author_id in: path required: true @@ -80057,7 +80092,7 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: default: value: @@ -80070,7 +80105,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80094,8 +80129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -80136,7 +80171,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80164,8 +80199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -80192,11 +80227,11 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *536 + default: *537 '422': *15 - '503': *534 + '503': *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80219,8 +80254,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -80228,8 +80263,8 @@ paths: application/json: schema: *22 examples: - default: *537 - '301': *345 + default: *538 + '301': *346 '404': *6 x-github: githubCloudOnly: false @@ -80249,8 +80284,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -80258,12 +80293,12 @@ paths: application/json: schema: anyOf: - - *233 + - *234 - type: object properties: {} additionalProperties: false examples: - default: &539 + default: &540 value: limit: collaborators_only origin: repository @@ -80288,13 +80323,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: application/json: - schema: *538 + schema: *539 examples: default: summary: Example request body @@ -80306,9 +80341,9 @@ paths: description: Response content: application/json: - schema: *233 + schema: *234 examples: - default: *539 + default: *540 '409': description: Response x-github: @@ -80330,8 +80365,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -80354,8 +80389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -80365,9 +80400,9 @@ paths: application/json: schema: type: array - items: *540 + items: *541 examples: - default: &695 + default: &696 value: - id: 1 repository: @@ -80498,9 +80533,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *341 - *342 - - *237 + - *343 + - *238 requestBody: required: false content: @@ -80529,7 +80564,7 @@ paths: description: Response content: application/json: - schema: *540 + schema: *541 examples: default: value: @@ -80660,9 +80695,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *341 - *342 - - *237 + - *343 + - *238 responses: '204': description: Response @@ -80693,8 +80728,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *341 - *342 + - *343 - 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 @@ -80742,7 +80777,7 @@ paths: required: false schema: type: string - - *244 + - *245 - name: sort description: What to sort results by. in: query @@ -80767,7 +80802,7 @@ paths: type: array items: *85 examples: - default: &552 + default: &553 value: - id: 1 node_id: MDU6SXNzdWUx @@ -80916,7 +80951,7 @@ paths: state_reason: completed headers: Link: *67 - '301': *345 + '301': *346 '422': *15 '404': *6 x-github: @@ -80945,8 +80980,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -81023,7 +81058,7 @@ paths: application/json: schema: *85 examples: - default: &549 + default: &550 value: id: 1 node_id: MDU6SXNzdWUx @@ -81180,7 +81215,7 @@ paths: '422': *15 '503': *121 '404': *6 - '410': *541 + '410': *542 x-github: triggersNotification: true githubCloudOnly: false @@ -81208,8 +81243,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *341 - *342 + - *343 - *109 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -81230,9 +81265,9 @@ paths: application/json: schema: type: array - items: *542 + items: *543 examples: - default: &551 + default: &552 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -81290,17 +81325,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: &543 + default: &544 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -81355,8 +81390,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 requestBody: required: true @@ -81379,9 +81414,9 @@ paths: description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *543 + default: *544 '422': *15 x-github: githubCloudOnly: false @@ -81399,8 +81434,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 responses: '204': @@ -81429,15 +81464,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: default: value: @@ -81493,7 +81528,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *541 + '410': *542 '422': *15 x-github: githubCloudOnly: false @@ -81510,8 +81545,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 responses: '204': @@ -81519,7 +81554,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *541 + '410': *542 '503': *121 x-github: githubCloudOnly: false @@ -81537,8 +81572,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -81565,9 +81600,9 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: *544 + default: *545 headers: Link: *67 '404': *6 @@ -81588,8 +81623,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *341 - *342 + - *343 - *101 requestBody: required: true @@ -81622,16 +81657,16 @@ paths: description: Reaction exists content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '201': description: Reaction created content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -81653,10 +81688,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *341 - *342 + - *343 - *101 - - *545 + - *546 responses: '204': description: Response @@ -81676,8 +81711,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -81687,7 +81722,7 @@ paths: application/json: schema: type: array - items: &548 + items: &549 title: Issue Event description: Issue Event type: object @@ -81730,8 +81765,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *546 - required: *547 + properties: *547 + required: *548 nullable: true label: title: Issue Event Label @@ -82039,8 +82074,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *341 - *342 + - *343 - name: event_id in: path required: true @@ -82051,7 +82086,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *549 examples: default: value: @@ -82244,7 +82279,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *541 + '410': *542 '403': *29 x-github: githubCloudOnly: false @@ -82278,9 +82313,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *341 - *342 - - &550 + - *343 + - &551 name: issue_number description: The number that identifies the issue. in: path @@ -82296,7 +82331,7 @@ paths: examples: default: summary: Issue - value: *549 + value: *550 pinned_comment: summary: Issue with pinned comment value: @@ -82495,9 +82530,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 '304': *37 x-github: githubCloudOnly: false @@ -82522,9 +82557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: false content: @@ -82645,13 +82680,13 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 '422': *15 '503': *121 '403': *29 - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82669,9 +82704,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: false content: @@ -82699,7 +82734,7 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82715,9 +82750,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: content: application/json: @@ -82744,7 +82779,7 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82766,9 +82801,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: - - *341 - *342 - - *550 + - *343 + - *551 - name: assignee in: path required: true @@ -82808,9 +82843,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *92 - *17 - *19 @@ -82821,13 +82856,13 @@ paths: application/json: schema: type: array - items: *542 + items: *543 examples: - default: *551 + default: *552 headers: Link: *67 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82856,9 +82891,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: true content: @@ -82880,16 +82915,16 @@ paths: description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *543 + default: *544 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *541 + '410': *542 '422': *15 '404': *6 x-github: @@ -82917,9 +82952,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -82931,12 +82966,12 @@ paths: type: array items: *85 examples: - default: *552 + default: *553 headers: Link: *67 - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82964,9 +82999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: true content: @@ -82990,15 +83025,15 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *345 + '301': *346 '403': *29 - '410': *541 + '410': *542 '422': *15 '404': *6 x-github: @@ -83029,9 +83064,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *341 - *342 - - *550 + - *343 + - *551 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -83045,13 +83080,13 @@ paths: application/json: schema: *85 examples: - default: *549 - '301': *345 + default: *550 + '301': *346 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *541 + '410': *542 x-github: triggersNotification: true githubCloudOnly: false @@ -83077,9 +83112,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -83091,12 +83126,12 @@ paths: type: array items: *85 examples: - default: *552 + default: *553 headers: Link: *67 - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83113,9 +83148,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -83129,7 +83164,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &555 + - &556 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -83183,7 +83218,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &557 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -83319,7 +83354,7 @@ paths: - performed_via_github_app - assignee - assigner - - &557 + - &558 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -83370,7 +83405,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &559 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -83421,7 +83456,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &560 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -83475,7 +83510,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &561 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -83522,7 +83557,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &562 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -83569,7 +83604,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &562 + - &563 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -83629,7 +83664,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &563 + - &564 title: Locked Issue Event description: Locked Issue Event type: object @@ -83677,7 +83712,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &564 + - &565 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -83743,7 +83778,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &565 + - &566 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -83809,7 +83844,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &566 + - &567 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -83875,7 +83910,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &567 + - &568 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -83966,7 +84001,7 @@ paths: color: red headers: Link: *67 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83983,9 +84018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -83995,9 +84030,9 @@ paths: application/json: schema: type: array - items: *553 + items: *554 examples: - default: &666 + default: &667 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -84021,9 +84056,9 @@ paths: value: '2025-12-25' headers: Link: *67 - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84040,9 +84075,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -84054,7 +84089,7 @@ paths: type: array items: *84 examples: - default: &554 + default: &555 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84072,9 +84107,9 @@ paths: default: false headers: Link: *67 - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84090,9 +84125,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: false content: @@ -84137,10 +84172,10 @@ paths: type: array items: *84 examples: - default: *554 - '301': *345 + default: *555 + '301': *346 '404': *6 - '410': *541 + '410': *542 '422': *15 x-github: githubCloudOnly: false @@ -84157,9 +84192,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: false content: @@ -84221,10 +84256,10 @@ paths: type: array items: *84 examples: - default: *554 - '301': *345 + default: *555 + '301': *346 '404': *6 - '410': *541 + '410': *542 '422': *15 x-github: githubCloudOnly: false @@ -84241,15 +84276,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 responses: '204': description: Response - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84268,9 +84303,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 - name: name in: path required: true @@ -84294,9 +84329,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *345 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84316,9 +84351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: false content: @@ -84346,7 +84381,7 @@ paths: '204': description: Response '403': *29 - '410': *541 + '410': *542 '404': *6 '422': *15 x-github: @@ -84364,9 +84399,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 responses: '204': description: Response @@ -84396,9 +84431,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 responses: '200': description: Response @@ -84406,10 +84441,10 @@ paths: application/json: schema: *85 examples: - default: *549 - '301': *345 + default: *550 + '301': *346 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84426,9 +84461,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 - 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. @@ -84454,13 +84489,13 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: *544 + default: *545 headers: Link: *67 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84478,9 +84513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: true content: @@ -84512,16 +84547,16 @@ paths: description: Response content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '201': description: Response content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -84543,10 +84578,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *341 - *342 - - *550 - - *545 + - *343 + - *551 + - *546 responses: '204': description: Response @@ -84575,9 +84610,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: true content: @@ -84601,7 +84636,7 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -84634,9 +84669,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -84648,11 +84683,11 @@ paths: type: array items: *85 examples: - default: *552 + default: *553 headers: Link: *67 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84680,9 +84715,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: true content: @@ -84711,14 +84746,14 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *541 + '410': *542 '422': *15 '404': *6 x-github: @@ -84738,9 +84773,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 requestBody: required: true content: @@ -84773,7 +84808,7 @@ paths: application/json: schema: *85 examples: - default: *549 + default: *550 '403': *29 '404': *6 '422': *7 @@ -84795,9 +84830,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *341 - *342 - - *550 + - *343 + - *551 - *17 - *19 responses: @@ -84812,7 +84847,6 @@ paths: description: Timeline Event type: object anyOf: - - *555 - *556 - *557 - *558 @@ -84825,6 +84859,7 @@ paths: - *565 - *566 - *567 + - *568 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -84885,8 +84920,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *568 - required: *569 + properties: *569 + required: *570 nullable: true required: - event @@ -85141,7 +85176,7 @@ paths: type: string comments: type: array - items: &589 + items: &590 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -85356,7 +85391,7 @@ paths: type: string comments: type: array - items: *472 + items: *473 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -85645,7 +85680,7 @@ paths: headers: Link: *67 '404': *6 - '410': *541 + '410': *542 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85662,8 +85697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -85673,7 +85708,7 @@ paths: application/json: schema: type: array - items: &570 + items: &571 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -85739,8 +85774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -85776,9 +85811,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *571 examples: - default: &571 + default: &572 value: id: 1 key: ssh-rsa AAA... @@ -85812,9 +85847,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *341 - *342 - - &572 + - *343 + - &573 name: key_id description: The unique identifier of the key. in: path @@ -85826,9 +85861,9 @@ paths: description: Response content: application/json: - schema: *570 + schema: *571 examples: - default: *571 + default: *572 '404': *6 x-github: githubCloudOnly: false @@ -85846,9 +85881,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *341 - *342 - - *572 + - *343 + - *573 responses: '204': description: Response @@ -85868,8 +85903,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -85881,7 +85916,7 @@ paths: type: array items: *84 examples: - default: *554 + default: *555 headers: Link: *67 '404': *6 @@ -85902,8 +85937,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -85941,7 +85976,7 @@ paths: application/json: schema: *84 examples: - default: &573 + default: &574 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -85973,8 +86008,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *341 - *342 + - *343 - name: name in: path required: true @@ -85987,7 +86022,7 @@ paths: application/json: schema: *84 examples: - default: *573 + default: *574 '404': *6 x-github: githubCloudOnly: false @@ -86004,8 +86039,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *341 - *342 + - *343 - name: name in: path required: true @@ -86070,8 +86105,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *341 - *342 + - *343 - name: name in: path required: true @@ -86097,8 +86132,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -86137,9 +86172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *341 - *342 - - *445 + - *343 + - *446 responses: '200': description: Response @@ -86284,8 +86319,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -86350,8 +86385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -86385,9 +86420,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *475 + schema: *476 examples: - default: *574 + default: *575 '204': description: Response when already merged '404': @@ -86412,8 +86447,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *341 - *342 + - *343 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -86454,12 +86489,12 @@ paths: application/json: schema: type: array - items: &575 + items: &576 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *278 - required: *279 + properties: *279 + required: *280 examples: default: value: @@ -86515,8 +86550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -86556,9 +86591,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: &576 + default: &577 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -86617,9 +86652,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *341 - *342 - - &577 + - *343 + - &578 name: milestone_number description: The number that identifies the milestone. in: path @@ -86631,9 +86666,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *576 + default: *577 '404': *6 x-github: githubCloudOnly: false @@ -86650,9 +86685,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *341 - *342 - - *577 + - *343 + - *578 requestBody: required: false content: @@ -86690,9 +86725,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *576 + default: *577 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86708,9 +86743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *341 - *342 - - *577 + - *343 + - *578 responses: '204': description: Response @@ -86731,9 +86766,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *341 - *342 - - *577 + - *343 + - *578 - *17 - *19 responses: @@ -86745,7 +86780,7 @@ paths: type: array items: *84 examples: - default: *554 + default: *555 headers: Link: *67 x-github: @@ -86764,12 +86799,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *341 - *342 - - *578 + - *343 - *579 - - *92 - *580 + - *92 + - *581 - *17 - *19 responses: @@ -86781,7 +86816,7 @@ paths: type: array items: *112 examples: - default: *581 + default: *582 headers: Link: *67 x-github: @@ -86805,8 +86840,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *341 - *342 + - *343 requestBody: required: false content: @@ -86864,14 +86899,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: &582 + schema: &583 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -86996,7 +87031,7 @@ paths: - custom_404 - public examples: - default: &583 + default: &584 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -87037,8 +87072,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -87092,9 +87127,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: *583 + default: *584 '422': *15 '409': *54 x-github: @@ -87117,8 +87152,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -87217,8 +87252,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -87244,8 +87279,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -87255,7 +87290,7 @@ paths: application/json: schema: type: array - items: &584 + items: &585 title: Page Build description: Page Build type: object @@ -87349,8 +87384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *341 - *342 + - *343 responses: '201': description: Response @@ -87395,16 +87430,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: &585 + default: &586 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -87452,8 +87487,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *341 - *342 + - *343 - name: build_id in: path required: true @@ -87464,9 +87499,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *585 + default: *586 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87486,8 +87521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -87592,9 +87627,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *341 - *342 - - &586 + - *343 + - &587 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -87652,9 +87687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *341 - *342 - - *586 + - *343 + - *587 responses: '204': *191 '404': *6 @@ -87681,8 +87716,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -87940,8 +87975,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: - - *341 - *342 + - *343 responses: '200': description: Private vulnerability reporting status @@ -87978,8 +88013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': *191 '422': *14 @@ -88000,8 +88035,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': *191 '422': *14 @@ -88023,8 +88058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -88032,7 +88067,7 @@ paths: application/json: schema: type: array - items: *293 + items: *294 examples: default: value: @@ -88063,8 +88098,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: - - *341 - *342 + - *343 requestBody: required: true content: @@ -88076,7 +88111,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *293 + items: *294 required: - properties examples: @@ -88126,8 +88161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *341 - *342 + - *343 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -88187,9 +88222,9 @@ paths: application/json: schema: type: array - items: *479 + items: *480 examples: - default: *587 + default: *588 headers: Link: *67 '304': *37 @@ -88221,8 +88256,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -88287,7 +88322,7 @@ paths: description: Response content: application/json: - schema: &591 + schema: &592 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -88398,8 +88433,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *278 - required: *279 + properties: *279 + required: *280 nullable: true active_lock_reason: type: string @@ -88431,7 +88466,7 @@ paths: items: *4 requested_teams: type: array - items: *330 + items: *331 head: type: object properties: @@ -88469,14 +88504,14 @@ paths: _links: type: object properties: - comments: *280 - commits: *280 - statuses: *280 - html: *280 - issue: *280 - review_comments: *280 - review_comment: *280 - self: *280 + comments: *281 + commits: *281 + statuses: *281 + html: *281 + issue: *281 + review_comments: *281 + review_comment: *281 + self: *281 required: - comments - commits @@ -88487,7 +88522,7 @@ paths: - review_comment - self author_association: *82 - auto_merge: *588 + auto_merge: *589 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -88577,7 +88612,7 @@ paths: - merged_by - review_comments examples: - default: &592 + default: &593 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -89104,8 +89139,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *341 - *342 + - *343 - name: sort in: query required: false @@ -89134,9 +89169,9 @@ paths: application/json: schema: type: array - items: *589 + items: *590 examples: - default: &594 + default: &595 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -89213,17 +89248,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *341 - *342 + - *343 - *101 responses: '200': description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: &590 + default: &591 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -89298,8 +89333,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *341 - *342 + - *343 - *101 requestBody: required: true @@ -89322,9 +89357,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89340,8 +89375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *341 - *342 + - *343 - *101 responses: '204': @@ -89363,8 +89398,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *341 - *342 + - *343 - *101 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -89391,9 +89426,9 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: *544 + default: *545 headers: Link: *67 '404': *6 @@ -89414,8 +89449,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *341 - *342 + - *343 - *101 requestBody: required: true @@ -89448,16 +89483,16 @@ paths: description: Reaction exists content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '201': description: Reaction created content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -89479,10 +89514,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *341 - *342 + - *343 - *101 - - *545 + - *546 responses: '204': description: Response @@ -89525,9 +89560,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *341 - *342 - - &593 + - *343 + - &594 name: pull_number description: The number that identifies the pull request. in: path @@ -89540,9 +89575,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *591 + schema: *592 examples: - default: *592 + default: *593 '304': *37 '404': *6 '406': @@ -89577,9 +89612,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: false content: @@ -89621,9 +89656,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: - default: *592 + default: *593 '422': *15 '403': *29 x-github: @@ -89645,9 +89680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: true content: @@ -89707,17 +89742,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '401': *25 '403': *29 '404': *6 @@ -89747,9 +89782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 - *109 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -89770,9 +89805,9 @@ paths: application/json: schema: type: array - items: *589 + items: *590 examples: - default: *594 + default: *595 headers: Link: *67 x-github: @@ -89805,9 +89840,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: true content: @@ -89912,7 +89947,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: example-for-a-multi-line-comment: value: @@ -90000,9 +90035,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *341 - *342 - - *593 + - *343 + - *594 - *101 requestBody: required: true @@ -90025,7 +90060,7 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: default: value: @@ -90111,9 +90146,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 - *17 - *19 responses: @@ -90123,9 +90158,9 @@ paths: application/json: schema: type: array - items: *475 + items: *476 examples: - default: *595 + default: *596 headers: Link: *67 x-github: @@ -90155,9 +90190,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *341 - *342 - - *593 + - *343 + - *594 - *17 - *19 responses: @@ -90167,7 +90202,7 @@ paths: application/json: schema: type: array - items: *488 + items: *489 examples: default: value: @@ -90205,9 +90240,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *341 - *342 - - *593 + - *343 + - *594 responses: '204': description: Response if pull request has been merged @@ -90230,9 +90265,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: false content: @@ -90343,9 +90378,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 responses: '200': description: Response @@ -90420,9 +90455,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: false content: @@ -90459,7 +90494,7 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: default: value: @@ -90995,9 +91030,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: true content: @@ -91031,7 +91066,7 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: default: value: @@ -91536,9 +91571,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 - *17 - *19 responses: @@ -91548,7 +91583,7 @@ paths: application/json: schema: type: array - items: &596 + items: &597 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -91699,9 +91734,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: false content: @@ -91787,9 +91822,9 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: - default: &598 + default: &599 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91852,10 +91887,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *341 - *342 - - *593 - - &597 + - *343 + - *594 + - &598 name: review_id description: The unique identifier of the review. in: path @@ -91867,9 +91902,9 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: - default: &599 + default: &600 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -91928,10 +91963,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *341 - *342 - - *593 - - *597 + - *343 + - *594 + - *598 requestBody: required: true content: @@ -91954,7 +91989,7 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: default: value: @@ -92016,18 +92051,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *341 - *342 - - *593 - - *597 + - *343 + - *594 + - *598 responses: '200': description: Response content: application/json: - schema: *596 + schema: *597 examples: - default: *598 + default: *599 '422': *7 '404': *6 x-github: @@ -92054,10 +92089,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *341 - *342 - - *593 - - *597 + - *343 + - *594 + - *598 - *17 - *19 responses: @@ -92140,9 +92175,9 @@ paths: _links: type: object properties: - self: *280 - html: *280 - pull_request: *280 + self: *281 + html: *281 + pull_request: *281 required: - self - html @@ -92292,10 +92327,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *341 - *342 - - *593 - - *597 + - *343 + - *594 + - *598 requestBody: required: true content: @@ -92323,7 +92358,7 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: default: value: @@ -92386,10 +92421,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *341 - *342 - - *593 - - *597 + - *343 + - *594 + - *598 requestBody: required: true content: @@ -92424,9 +92459,9 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: - default: *599 + default: *600 '404': *6 '422': *7 '403': *29 @@ -92448,9 +92483,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *341 - *342 - - *593 + - *343 + - *594 requestBody: required: false content: @@ -92513,8 +92548,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *341 - *342 + - *343 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -92527,9 +92562,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: &601 + default: &602 value: type: file encoding: base64 @@ -92571,8 +92606,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *341 - *342 + - *343 - name: dir description: The alternate path to look for a README file in: path @@ -92592,9 +92627,9 @@ paths: description: Response content: application/json: - schema: *600 + schema: *601 examples: - default: *601 + default: *602 '404': *6 '422': *15 x-github: @@ -92616,8 +92651,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -92627,7 +92662,7 @@ paths: application/json: schema: type: array - items: *602 + items: *603 examples: default: value: @@ -92721,8 +92756,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -92798,9 +92833,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: &606 + default: &607 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -92905,9 +92940,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *341 - *342 - - &604 + - *343 + - &605 name: asset_id description: The unique identifier of the asset. in: path @@ -92919,9 +92954,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: - default: &605 + default: &606 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 @@ -92956,7 +92991,7 @@ paths: type: User site_admin: false '404': *6 - '302': *490 + '302': *491 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92972,9 +93007,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *341 - *342 - - *604 + - *343 + - *605 requestBody: required: false content: @@ -93002,9 +93037,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: - default: *605 + default: *606 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93020,9 +93055,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *341 - *342 - - *604 + - *343 + - *605 responses: '204': description: Response @@ -93047,8 +93082,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -93133,16 +93168,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *341 - *342 + - *343 responses: '200': description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *606 + default: *607 '404': *6 x-github: githubCloudOnly: false @@ -93160,8 +93195,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *341 - *342 + - *343 - name: tag description: tag parameter in: path @@ -93174,9 +93209,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *606 + default: *607 '404': *6 x-github: githubCloudOnly: false @@ -93198,9 +93233,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *341 - *342 - - &607 + - *343 + - &608 name: release_id description: The unique identifier of the release. in: path @@ -93214,9 +93249,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: *602 + schema: *603 examples: - default: *606 + default: *607 '401': description: Unauthorized x-github: @@ -93234,9 +93269,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *341 - *342 - - *607 + - *343 + - *608 requestBody: required: false content: @@ -93300,9 +93335,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *603 examples: - default: *606 + default: *607 '404': description: Not Found if the discussion category name is invalid content: @@ -93323,9 +93358,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *341 - *342 - - *607 + - *343 + - *608 responses: '204': description: Response @@ -93346,9 +93381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *341 - *342 - - *607 + - *343 + - *608 - *17 - *19 responses: @@ -93358,7 +93393,7 @@ paths: application/json: schema: type: array - items: *603 + items: *604 examples: default: value: @@ -93439,9 +93474,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: - - *341 - *342 - - *607 + - *343 + - *608 - name: name in: query required: true @@ -93467,7 +93502,7 @@ paths: description: Response for successful upload content: application/json: - schema: *603 + schema: *604 examples: response-for-successful-upload: value: @@ -93522,9 +93557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *341 - *342 - - *607 + - *343 + - *608 - 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. @@ -93548,9 +93583,9 @@ paths: application/json: schema: type: array - items: *473 + items: *474 examples: - default: *544 + default: *545 headers: Link: *67 '404': *6 @@ -93571,9 +93606,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *341 - *342 - - *607 + - *343 + - *608 requestBody: required: true content: @@ -93603,16 +93638,16 @@ paths: description: Reaction exists content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '201': description: Reaction created content: application/json: - schema: *473 + schema: *474 examples: - default: *474 + default: *475 '422': *15 x-github: githubCloudOnly: false @@ -93634,10 +93669,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *341 - *342 - - *607 - - *545 + - *343 + - *608 + - *546 responses: '204': description: Response @@ -93661,9 +93696,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *341 - *342 - - *408 + - *343 + - *409 - *17 - *19 responses: @@ -93679,8 +93714,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *302 - - &608 + - *303 + - &609 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -93699,69 +93734,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *303 - - *608 - allOf: - *304 - - *608 + - *609 - allOf: - *305 - - *608 - - allOf: - *609 - - *608 - allOf: - *306 - - *608 + - *609 + - allOf: + - *610 + - *609 - allOf: - *307 - - *608 + - *609 - allOf: - *308 - - *608 + - *609 - allOf: - *309 - - *608 + - *609 - allOf: - *310 - - *608 + - *609 - allOf: - *311 - - *608 + - *609 - allOf: - *312 - - *608 + - *609 - allOf: - *313 - - *608 + - *609 - allOf: - *314 - - *608 + - *609 - allOf: - *315 - - *608 + - *609 - allOf: - *316 - - *608 + - *609 - allOf: - *317 - - *608 + - *609 - allOf: - *318 - - *608 + - *609 - allOf: - *319 - - *608 + - *609 - allOf: - *320 - - *608 + - *609 - allOf: - *321 - - *608 + - *609 - allOf: - *322 - - *608 + - *609 + - allOf: + - *323 + - *609 examples: default: value: @@ -93800,8 +93835,8 @@ paths: category: repos subcategory: rules parameters: - - *341 - *342 + - *343 - *17 - *19 - name: includes_parents @@ -93812,7 +93847,7 @@ paths: schema: type: boolean default: true - - *610 + - *611 responses: '200': description: Response @@ -93820,7 +93855,7 @@ paths: application/json: schema: type: array - items: *323 + items: *324 examples: default: value: @@ -93867,8 +93902,8 @@ paths: category: repos subcategory: rules parameters: - - *341 - *342 + - *343 requestBody: description: Request body required: true @@ -93888,16 +93923,16 @@ paths: - tag - push default: branch - enforcement: *299 + enforcement: *300 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *300 - conditions: *297 + items: *301 + conditions: *298 rules: type: array description: An array of rules within the ruleset. - items: *611 + items: *612 required: - name - enforcement @@ -93928,9 +93963,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: &621 + default: &622 value: id: 42 name: super cool ruleset @@ -93978,12 +94013,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *341 - *342 - - *612 + - *343 - *613 - *614 - *615 + - *616 - *17 - *19 responses: @@ -93991,9 +94026,9 @@ paths: description: Response content: application/json: - schema: *616 + schema: *617 examples: - default: *617 + default: *618 '404': *6 '500': *55 x-github: @@ -94014,17 +94049,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *341 - *342 - - *618 + - *343 + - *619 responses: '200': description: Response content: application/json: - schema: *619 + schema: *620 examples: - default: *620 + default: *621 '404': *6 '500': *55 x-github: @@ -94052,8 +94087,8 @@ paths: category: repos subcategory: rules parameters: - - *341 - *342 + - *343 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94073,9 +94108,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: *621 + default: *622 '404': *6 '500': *55 put: @@ -94093,8 +94128,8 @@ paths: category: repos subcategory: rules parameters: - - *341 - *342 + - *343 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94119,16 +94154,16 @@ paths: - branch - tag - push - enforcement: *299 + enforcement: *300 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *300 - conditions: *297 + items: *301 + conditions: *298 rules: description: An array of rules within the ruleset. type: array - items: *611 + items: *612 examples: default: value: @@ -94156,9 +94191,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - default: *621 + default: *622 '404': *6 '422': *15 '500': *55 @@ -94177,8 +94212,8 @@ paths: category: repos subcategory: rules parameters: - - *341 - *342 + - *343 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94201,8 +94236,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *341 - *342 + - *343 - *17 - *19 - name: ruleset_id @@ -94218,9 +94253,9 @@ paths: application/json: schema: type: array - items: *326 + items: *327 examples: - default: *622 + default: *623 '404': *6 '500': *55 x-github: @@ -94239,8 +94274,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *341 - *342 + - *343 - name: ruleset_id description: The ID of the ruleset. in: path @@ -94258,7 +94293,7 @@ paths: description: Response content: application/json: - schema: *623 + schema: *624 examples: default: value: @@ -94313,22 +94348,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *341 - *342 - - *624 + - *343 - *625 - *626 - *627 - *628 + - *629 - *61 - *19 - *17 - - *629 - *630 - *631 - *632 - *633 - *634 + - *635 responses: '200': description: Response @@ -94336,7 +94371,7 @@ paths: application/json: schema: type: array - items: &638 + items: &639 type: object properties: number: *178 @@ -94355,8 +94390,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *635 - resolution: *636 + state: *636 + resolution: *637 resolved_at: type: string format: date-time @@ -94452,7 +94487,7 @@ paths: pull request. ' - oneOf: *637 + oneOf: *638 nullable: true has_more_locations: type: boolean @@ -94616,16 +94651,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *341 - *342 - - *439 - - *634 + - *343 + - *440 + - *635 responses: '200': description: Response content: application/json: - schema: *638 + schema: *639 examples: default: value: @@ -94679,9 +94714,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *341 - *342 - - *439 + - *343 + - *440 requestBody: required: true content: @@ -94689,8 +94724,8 @@ paths: schema: type: object properties: - state: *635 - resolution: *636 + state: *636 + resolution: *637 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -94726,7 +94761,7 @@ paths: description: Response content: application/json: - schema: *638 + schema: *639 examples: default: value: @@ -94821,9 +94856,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *341 - *342 - - *439 + - *343 + - *440 - *19 - *17 responses: @@ -94834,7 +94869,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &796 + items: &797 type: object properties: type: @@ -94860,7 +94895,6 @@ paths: example: commit details: oneOf: - - *639 - *640 - *641 - *642 @@ -94873,6 +94907,7 @@ paths: - *649 - *650 - *651 + - *652 examples: default: value: @@ -94958,8 +94993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -94967,14 +95002,14 @@ paths: schema: type: object properties: - reason: &653 + reason: &654 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *652 + placeholder_id: *653 required: - reason - placeholder_id @@ -94991,7 +95026,7 @@ paths: schema: type: object properties: - reason: *653 + reason: *654 expire_at: type: string format: date-time @@ -95037,8 +95072,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: - - *341 - *342 + - *343 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -95053,7 +95088,7 @@ paths: properties: incremental_scans: type: array - items: &654 + items: &655 description: Information on a single scan performed by secret scanning on the repository type: object @@ -95079,15 +95114,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *654 + items: *655 backfill_scans: type: array - items: *654 + items: *655 custom_pattern_backfill_scans: type: array items: allOf: - - *654 + - *655 - type: object properties: pattern_name: @@ -95157,8 +95192,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *341 - *342 + - *343 - *61 - name: sort description: The property to sort the results by. @@ -95202,9 +95237,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: *656 + default: *657 '400': *14 '404': *6 x-github: @@ -95227,8 +95262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -95301,7 +95336,7 @@ paths: login: type: string description: The username of the user credited. - type: *329 + type: *330 required: - login - type @@ -95388,9 +95423,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: &658 + default: &659 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -95623,8 +95658,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -95728,7 +95763,7 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: default: value: @@ -95875,17 +95910,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *341 - *342 - - *657 + - *343 + - *658 responses: '200': description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: *658 + default: *659 '403': *29 '404': *6 x-github: @@ -95909,9 +95944,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *341 - *342 - - *657 + - *343 + - *658 requestBody: required: true content: @@ -95984,7 +96019,7 @@ paths: login: type: string description: The username of the user credited. - type: *329 + type: *330 required: - login - type @@ -96070,10 +96105,10 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: *658 - add_credit: *658 + default: *659 + add_credit: *659 '403': *29 '404': *6 '422': @@ -96111,9 +96146,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: - - *341 - *342 - - *657 + - *343 + - *658 responses: '202': *39 '400': *14 @@ -96140,17 +96175,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *341 - *342 - - *657 + - *343 + - *658 responses: '202': description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *346 + default: *347 '400': *14 '422': *15 '403': *29 @@ -96176,8 +96211,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -96276,8 +96311,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *341 - *342 + - *343 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -96286,7 +96321,7 @@ paths: application/json: schema: type: array - items: &659 + items: &660 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -96319,8 +96354,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -96396,8 +96431,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -96493,8 +96528,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *341 - *342 + - *343 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -96648,8 +96683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *341 - *342 + - *343 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -96659,7 +96694,7 @@ paths: application/json: schema: type: array - items: *659 + items: *660 examples: default: value: @@ -96692,8 +96727,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *341 - *342 + - *343 - name: sha in: path required: true @@ -96747,7 +96782,7 @@ paths: description: Response content: application/json: - schema: *660 + schema: *661 examples: default: value: @@ -96801,8 +96836,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -96834,14 +96869,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *341 - *342 + - *343 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &661 + schema: &662 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -96909,8 +96944,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *341 - *342 + - *343 requestBody: required: false content: @@ -96936,7 +96971,7 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: default: value: @@ -96963,8 +96998,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -96984,8 +97019,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -97064,8 +97099,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *341 - *342 + - *343 - name: ref in: path required: true @@ -97101,8 +97136,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *341 - *342 + - *343 - *17 - *19 responses: @@ -97114,7 +97149,7 @@ paths: type: array items: *197 examples: - default: *258 + default: *259 headers: Link: *67 '404': *6 @@ -97134,8 +97169,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *341 - *342 + - *343 - *19 - *17 responses: @@ -97143,7 +97178,7 @@ paths: description: Response content: application/json: - schema: &662 + schema: &663 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -97155,7 +97190,7 @@ paths: required: - names examples: - default: &663 + default: &664 value: names: - octocat @@ -97178,8 +97213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -97210,9 +97245,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *663 examples: - default: *663 + default: *664 '404': *6 '422': *7 x-github: @@ -97233,9 +97268,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *341 - *342 - - &664 + - *343 + - &665 name: per description: The time frame to display results for. in: query @@ -97264,7 +97299,7 @@ paths: example: 128 clones: type: array - items: &665 + items: &666 title: Traffic type: object properties: @@ -97351,8 +97386,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -97442,8 +97477,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *341 - *342 + - *343 responses: '200': description: Response @@ -97503,9 +97538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *341 - *342 - - *664 + - *343 + - *665 responses: '200': description: Response @@ -97524,7 +97559,7 @@ paths: example: 3782 views: type: array - items: *665 + items: *666 required: - uniques - count @@ -97601,8 +97636,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *341 - *342 + - *343 requestBody: required: true content: @@ -97876,8 +97911,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *341 - *342 + - *343 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -97900,8 +97935,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -97923,8 +97958,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -97950,8 +97985,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *341 - *342 + - *343 - name: ref in: path required: true @@ -98043,9 +98078,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *346 + default: *347 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -98193,7 +98228,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *149 - - *550 + - *551 requestBody: required: true content: @@ -98257,9 +98292,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *553 + items: *554 examples: - default: *666 + default: *667 '400': *14 '403': *29 '404': *6 @@ -98296,7 +98331,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *149 - - *550 + - *551 requestBody: required: true content: @@ -98361,9 +98396,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *553 + items: *554 examples: - default: *666 + default: *667 '400': *14 '403': *29 '404': *6 @@ -98395,8 +98430,8 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *149 - - *550 - - *240 + - *551 + - *241 responses: '204': description: Issue field value deleted successfully @@ -98433,6 +98468,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 @@ -98535,7 +98573,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &667 + text_matches: &668 title: Search Result Text Matches type: array items: @@ -98697,7 +98735,7 @@ paths: enum: - author-date - committer-date - - &668 + - &669 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 @@ -98768,7 +98806,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *406 + properties: *407 nullable: true comment_count: type: integer @@ -98788,7 +98826,7 @@ paths: url: type: string format: uri - verification: *527 + verification: *528 required: - author - committer @@ -98807,7 +98845,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *406 + properties: *407 nullable: true parents: type: array @@ -98825,7 +98863,7 @@ paths: type: number node_id: type: string - text_matches: *667 + text_matches: *668 required: - sha - node_id @@ -99017,7 +99055,7 @@ paths: - interactions - created - updated - - *668 + - *669 - *17 - *19 - name: advanced_search @@ -99131,11 +99169,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: type: string state_reason: @@ -99145,8 +99183,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *278 - required: *279 + properties: *279 + required: *280 nullable: true comments: type: integer @@ -99160,7 +99198,7 @@ paths: type: string format: date-time nullable: true - text_matches: *667 + text_matches: *668 pull_request: type: object properties: @@ -99204,7 +99242,7 @@ paths: timeline_url: type: string format: uri - type: *241 + type: *242 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -99431,7 +99469,7 @@ paths: enum: - created - updated - - *668 + - *669 - *17 - *19 responses: @@ -99475,7 +99513,7 @@ paths: nullable: true score: type: number - text_matches: *667 + text_matches: *668 required: - id - node_id @@ -99560,7 +99598,7 @@ paths: - forks - help-wanted-issues - updated - - *668 + - *669 - *17 - *19 responses: @@ -99808,7 +99846,7 @@ paths: - admin - pull - push - text_matches: *667 + text_matches: *668 temp_clone_token: type: string allow_merge_commit: @@ -100108,7 +100146,7 @@ paths: type: string format: uri nullable: true - text_matches: *667 + text_matches: *668 related: type: array nullable: true @@ -100299,7 +100337,7 @@ paths: - followers - repositories - joined - - *668 + - *669 - *17 - *19 responses: @@ -100403,7 +100441,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *667 + text_matches: *668 blog: type: string nullable: true @@ -100482,7 +100520,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &671 + - &672 name: team_id description: The unique identifier of the team. in: path @@ -100494,9 +100532,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 '404': *6 x-github: githubCloudOnly: false @@ -100523,7 +100561,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *671 + - *672 requestBody: required: true content: @@ -100586,16 +100624,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 '201': description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 '404': *6 '422': *15 '403': *29 @@ -100623,7 +100661,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *671 + - *672 responses: '204': description: Response @@ -100652,7 +100690,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *671 + - *672 - *17 - *19 responses: @@ -100662,9 +100700,9 @@ paths: application/json: schema: type: array - items: *235 + items: *236 examples: - default: *236 + default: *237 headers: Link: *67 x-github: @@ -100690,7 +100728,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *671 + - *672 - name: role description: Filters members returned by their role in the team. in: query @@ -100741,7 +100779,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *671 + - *672 - *71 responses: '204': @@ -100778,7 +100816,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *671 + - *672 - *71 responses: '204': @@ -100818,7 +100856,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *671 + - *672 - *71 responses: '204': @@ -100855,16 +100893,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *671 + - *672 - *71 responses: '200': description: Response content: application/json: - schema: *340 + schema: *341 examples: - response-if-user-is-a-team-maintainer: *672 + response-if-user-is-a-team-maintainer: *673 '404': *6 x-github: githubCloudOnly: false @@ -100897,7 +100935,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *671 + - *672 - *71 requestBody: required: false @@ -100923,9 +100961,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - response-if-users-membership-with-team-is-now-pending: *673 + response-if-users-membership-with-team-is-now-pending: *674 '403': description: Forbidden if team synchronization is set up '422': @@ -100959,7 +100997,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *671 + - *672 - *71 responses: '204': @@ -100987,7 +101025,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *671 + - *672 - *17 - *19 responses: @@ -100999,7 +101037,7 @@ paths: type: array items: *160 examples: - default: *272 + default: *273 headers: Link: *67 '404': *6 @@ -101029,15 +101067,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *671 - - *341 + - *672 - *342 + - *343 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *674 + schema: *675 examples: alternative-response-with-extra-repository-information: value: @@ -101188,9 +101226,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *671 - - *341 + - *672 - *342 + - *343 requestBody: required: false content: @@ -101240,9 +101278,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *671 - - *341 + - *672 - *342 + - *343 responses: '204': description: Response @@ -101267,7 +101305,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *671 + - *672 - *17 - *19 responses: @@ -101279,7 +101317,7 @@ paths: type: array items: *197 examples: - response-if-child-teams-exist: *675 + response-if-child-teams-exist: *676 headers: Link: *67 '404': *6 @@ -101312,7 +101350,7 @@ paths: application/json: schema: oneOf: - - &676 + - &677 title: Private User description: Private User type: object @@ -101515,7 +101553,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &702 + - &703 title: Public User description: Public User type: object @@ -101827,7 +101865,7 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: default: value: @@ -102030,9 +102068,9 @@ paths: type: integer codespaces: type: array - items: *246 + items: *247 examples: - default: *247 + default: *248 '304': *37 '500': *55 '401': *25 @@ -102171,17 +102209,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '401': *25 '403': *29 '404': *6 @@ -102225,7 +102263,7 @@ paths: type: integer secrets: type: array - items: &677 + items: &678 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -102265,7 +102303,7 @@ paths: - visibility - selected_repositories_url examples: - default: *465 + default: *466 headers: Link: *67 x-github: @@ -102341,7 +102379,7 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: default: value: @@ -102631,15 +102669,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *248 + - *249 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '304': *37 '500': *55 '401': *25 @@ -102665,7 +102703,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *248 + - *249 requestBody: required: false content: @@ -102695,9 +102733,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '401': *25 '403': *29 '404': *6 @@ -102719,7 +102757,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *248 + - *249 responses: '202': *39 '304': *37 @@ -102748,13 +102786,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *248 + - *249 responses: '202': description: Response content: application/json: - schema: &678 + schema: &679 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -102795,7 +102833,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &679 + default: &680 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -102827,7 +102865,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *248 + - *249 - name: export_id in: path required: true @@ -102840,9 +102878,9 @@ paths: description: Response content: application/json: - schema: *678 + schema: *679 examples: - default: *679 + default: *680 '404': *6 x-github: githubCloudOnly: false @@ -102863,7 +102901,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *248 + - *249 responses: '200': description: Response @@ -102879,9 +102917,9 @@ paths: type: integer machines: type: array - items: *680 + items: *681 examples: - default: *681 + default: *682 '304': *37 '500': *55 '401': *25 @@ -102910,7 +102948,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *248 + - *249 requestBody: required: true content: @@ -102960,13 +102998,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *344 + repository: *345 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *463 - required: *464 + properties: *464 + required: *465 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -103740,15 +103778,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *248 + - *249 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '304': *37 '500': *55 '400': *14 @@ -103780,15 +103818,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *248 + - *249 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *462 + default: *463 '500': *55 '401': *25 '403': *29 @@ -103818,9 +103856,9 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: &692 + default: &693 value: - id: 197 name: hello_docker @@ -103921,7 +103959,7 @@ paths: application/json: schema: type: array - items: &682 + items: &683 title: Email description: Email type: object @@ -103986,9 +104024,9 @@ paths: application/json: schema: type: array - items: *682 + items: *683 examples: - default: &694 + default: &695 value: - email: octocat@github.com verified: true @@ -104063,7 +104101,7 @@ paths: application/json: schema: type: array - items: *682 + items: *683 examples: default: value: @@ -104319,7 +104357,7 @@ paths: application/json: schema: type: array - items: &683 + items: &684 title: GPG Key description: A unique encryption key type: object @@ -104450,7 +104488,7 @@ paths: - subkeys - revoked examples: - default: &711 + default: &712 value: - id: 3 name: Octocat's GPG Key @@ -104535,9 +104573,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: &684 + default: &685 value: id: 3 name: Octocat's GPG Key @@ -104594,7 +104632,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &685 + - &686 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -104606,9 +104644,9 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: - default: *684 + default: *685 '404': *6 '304': *37 '403': *29 @@ -104631,7 +104669,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *685 + - *686 responses: '204': description: Response @@ -104910,12 +104948,12 @@ paths: application/json: schema: anyOf: - - *233 + - *234 - type: object properties: {} additionalProperties: false examples: - default: *234 + default: *235 '204': description: Response when there are no restrictions x-github: @@ -104939,7 +104977,7 @@ paths: required: true content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -104950,7 +104988,7 @@ paths: description: Response content: application/json: - schema: *233 + schema: *234 examples: default: value: @@ -105031,7 +105069,7 @@ paths: - closed - all default: open - - *244 + - *245 - name: sort description: What to sort results by. in: query @@ -105056,7 +105094,7 @@ paths: type: array items: *85 examples: - default: *245 + default: *246 headers: Link: *67 '404': *6 @@ -105089,7 +105127,7 @@ paths: application/json: schema: type: array - items: &686 + items: &687 title: Key description: Key type: object @@ -105190,9 +105228,9 @@ paths: description: Response content: application/json: - schema: *686 + schema: *687 examples: - default: &687 + default: &688 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -105225,15 +105263,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *572 + - *573 responses: '200': description: Response content: application/json: - schema: *686 + schema: *687 examples: - default: *687 + default: *688 '404': *6 '304': *37 '403': *29 @@ -105256,7 +105294,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *572 + - *573 responses: '204': description: Response @@ -105289,7 +105327,7 @@ paths: application/json: schema: type: array - items: &688 + items: &689 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -105357,7 +105395,7 @@ paths: - account - plan examples: - default: &689 + default: &690 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -105419,9 +105457,9 @@ paths: application/json: schema: type: array - items: *688 + items: *689 examples: - default: *689 + default: *690 headers: Link: *67 '304': *37 @@ -105461,7 +105499,7 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: default: value: @@ -105575,7 +105613,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -105662,7 +105700,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -105734,7 +105772,7 @@ paths: application/json: schema: type: array - items: *252 + items: *253 examples: default: value: @@ -105987,7 +106025,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -106167,7 +106205,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *253 + - *254 - name: exclude in: query required: false @@ -106180,7 +106218,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -106374,7 +106412,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *253 + - *254 responses: '302': description: Response @@ -106400,7 +106438,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *253 + - *254 responses: '204': description: Response @@ -106429,8 +106467,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *253 - - *690 + - *254 + - *691 responses: '204': description: Response @@ -106454,7 +106492,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *253 + - *254 - *17 - *19 responses: @@ -106543,7 +106581,7 @@ paths: - docker - nuget - container - - *691 + - *692 - *19 - *17 responses: @@ -106553,10 +106591,10 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: *692 - '400': *693 + default: *693 + '400': *694 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -106576,16 +106614,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *259 + schema: *260 examples: - default: &712 + default: &713 value: id: 40201 name: octo-name @@ -106698,8 +106736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -106729,8 +106767,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *261 - *262 + - *263 - name: token description: package token schema: @@ -106762,8 +106800,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: - - *261 - *262 + - *263 - *19 - *17 - name: state @@ -106783,7 +106821,7 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: default: value: @@ -106832,15 +106870,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *261 - *262 - - *264 + - *263 + - *265 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: default: value: @@ -106876,9 +106914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *261 - *262 - - *264 + - *263 + - *265 responses: '204': description: Response @@ -106908,9 +106946,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *261 - *262 - - *264 + - *263 + - *265 responses: '204': description: Response @@ -106947,9 +106985,9 @@ paths: application/json: schema: type: array - items: *682 + items: *683 examples: - default: *694 + default: *695 headers: Link: *67 '304': *37 @@ -107062,7 +107100,7 @@ paths: type: array items: *79 examples: - default: &701 + default: &702 summary: Default response value: - id: 1296269 @@ -107366,9 +107404,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *346 + default: *347 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -107407,9 +107445,9 @@ paths: application/json: schema: type: array - items: *540 + items: *541 examples: - default: *695 + default: *696 headers: Link: *67 '304': *37 @@ -107432,7 +107470,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *237 + - *238 responses: '204': description: Response @@ -107456,7 +107494,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *237 + - *238 responses: '204': description: Response @@ -107489,7 +107527,7 @@ paths: application/json: schema: type: array - items: &696 + items: &697 title: Social account description: Social media account type: object @@ -107504,7 +107542,7 @@ paths: - provider - url examples: - default: &697 + default: &698 value: - provider: twitter url: https://twitter.com/github @@ -107566,9 +107604,9 @@ paths: application/json: schema: type: array - items: *696 + items: *697 examples: - default: *697 + default: *698 '422': *15 '304': *37 '404': *6 @@ -107655,7 +107693,7 @@ paths: application/json: schema: type: array - items: &698 + items: &699 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -107675,7 +107713,7 @@ paths: - title - created_at examples: - default: &730 + default: &731 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -107739,9 +107777,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: - default: &699 + default: &700 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -107771,7 +107809,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: - - &700 + - &701 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -107783,9 +107821,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: - default: *699 + default: *700 '404': *6 '304': *37 '403': *29 @@ -107808,7 +107846,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: - - *700 + - *701 responses: '204': description: Response @@ -107837,7 +107875,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &731 + - &732 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 @@ -107862,11 +107900,11 @@ paths: type: array items: *79 examples: - default-response: *701 + default-response: *702 application/vnd.github.v3.star+json: schema: type: array - items: &732 + items: &733 title: Starred Repository description: Starred Repository type: object @@ -108022,8 +108060,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: - - *341 - *342 + - *343 responses: '204': description: Response if this repository is starred by you @@ -108051,8 +108089,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -108076,8 +108114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *341 - *342 + - *343 responses: '204': description: Response @@ -108112,7 +108150,7 @@ paths: type: array items: *160 examples: - default: *272 + default: *273 headers: Link: *67 '304': *37 @@ -108149,7 +108187,7 @@ paths: application/json: schema: type: array - items: *337 + items: *338 examples: default: value: @@ -108235,10 +108273,10 @@ paths: application/json: schema: oneOf: - - *676 - - *702 + - *677 + - *703 examples: - default-response: &706 + default-response: &707 summary: Default response value: login: octocat @@ -108273,7 +108311,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &707 + response-with-git-hub-plan-information: &708 summary: Response with GitHub plan information value: login: octocat @@ -108330,14 +108368,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &704 + - &705 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *277 + - *278 requestBody: required: true description: Details of the draft item to create in the project. @@ -108371,9 +108409,9 @@ paths: description: Response content: application/json: - schema: *283 + schema: *284 examples: - draft_issue: *284 + draft_issue: *285 '304': *37 '403': *29 '401': *25 @@ -108396,7 +108434,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *703 + - *704 - *17 responses: '200': @@ -108431,8 +108469,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *704 - - *277 + - *705 + - *278 requestBody: required: true content: @@ -108503,17 +108541,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *705 + schema: *706 examples: table_view: summary: Response for creating a table view - value: *288 + value: *289 board_view: summary: Response for creating a board view with filter - value: *288 + value: *289 roadmap_view: summary: Response for creating a roadmap view - value: *288 + value: *289 '304': *37 '403': *29 '401': *25 @@ -108555,11 +108593,11 @@ paths: application/json: schema: oneOf: - - *676 - - *702 + - *677 + - *703 examples: - default-response: *706 - response-with-git-hub-plan-information: *707 + default-response: *707 + response-with-git-hub-plan-information: *708 '404': *6 x-github: githubCloudOnly: false @@ -108609,8 +108647,8 @@ paths: required: - subject_digests examples: - default: *708 - withPredicateType: *709 + default: *709 + withPredicateType: *710 responses: '200': description: Response @@ -108649,7 +108687,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *710 + default: *711 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -108838,7 +108876,7 @@ paths: initiator: type: string examples: - default: *402 + default: *403 '201': description: Response content: @@ -108877,9 +108915,9 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: *692 + default: *693 '403': *29 '401': *25 x-github: @@ -109263,9 +109301,9 @@ paths: application/json: schema: type: array - items: *683 + items: *684 examples: - default: *711 + default: *712 headers: Link: *67 x-github: @@ -109369,7 +109407,7 @@ paths: application/json: schema: *22 examples: - default: *537 + default: *538 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109493,7 +109531,7 @@ paths: - docker - nuget - container - - *691 + - *692 - *71 - *19 - *17 @@ -109504,12 +109542,12 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: *692 + default: *693 '403': *29 '401': *25 - '400': *693 + '400': *694 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109529,17 +109567,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *261 - *262 + - *263 - *71 responses: '200': description: Response content: application/json: - schema: *259 + schema: *260 examples: - default: *712 + default: *713 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109560,8 +109598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *261 - *262 + - *263 - *71 responses: '204': @@ -109594,8 +109632,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *261 - *262 + - *263 - *71 - name: token description: package token @@ -109628,8 +109666,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: - - *261 - *262 + - *263 - *71 responses: '200': @@ -109638,7 +109676,7 @@ paths: application/json: schema: type: array - items: *263 + items: *264 examples: default: value: @@ -109696,16 +109734,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *261 - *262 - - *264 + - *263 + - *265 - *71 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: default: value: @@ -109740,10 +109778,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *261 - *262 + - *263 - *71 - - *264 + - *265 responses: '204': description: Response @@ -109775,10 +109813,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *261 - *262 + - *263 - *71 - - *264 + - *265 responses: '204': description: Response @@ -109819,9 +109857,9 @@ paths: application/json: schema: type: array - items: *275 + items: *276 examples: - default: *276 + default: *277 headers: Link: *67 '304': *37 @@ -109843,16 +109881,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *277 + - *278 - *71 responses: '200': description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: *276 + default: *277 headers: Link: *67 '304': *37 @@ -109874,7 +109912,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *277 + - *278 - *71 - *17 - *47 @@ -109886,9 +109924,9 @@ paths: application/json: schema: type: array - items: *281 + items: *282 examples: - default: *713 + default: *714 headers: Link: *67 '304': *37 @@ -109910,7 +109948,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *71 - - *277 + - *278 requestBody: required: true content: @@ -109948,7 +109986,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *714 + items: *715 required: - name - data_type @@ -109964,7 +110002,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *715 + iteration_configuration: *716 required: - name - data_type @@ -109986,20 +110024,20 @@ paths: value: name: Due date data_type: date - single_select_field: *716 - iteration_field: *717 + single_select_field: *717 + iteration_field: *718 responses: '201': description: Response content: application/json: - schema: *281 + schema: *282 examples: - text_field: *718 - number_field: *719 - date_field: *720 - single_select_field: *721 - iteration_field: *722 + text_field: *719 + number_field: *720 + date_field: *721 + single_select_field: *722 + iteration_field: *723 '304': *37 '403': *29 '401': *25 @@ -110020,17 +110058,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *277 - - *723 + - *278 + - *724 - *71 responses: '200': description: Response content: application/json: - schema: *281 + schema: *282 examples: - default: *724 + default: *725 headers: Link: *67 '304': *37 @@ -110053,7 +110091,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *277 + - *278 - *71 - *47 - *48 @@ -110086,9 +110124,9 @@ paths: application/json: schema: type: array - items: *285 + items: *286 examples: - default: *286 + default: *287 headers: Link: *67 '304': *37 @@ -110110,7 +110148,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *71 - - *277 + - *278 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -110180,22 +110218,22 @@ paths: description: Response content: application/json: - schema: *283 + schema: *284 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *284 + value: *285 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *284 + value: *285 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *284 + value: *285 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *284 + value: *285 '304': *37 '403': *29 '401': *25 @@ -110215,9 +110253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *277 + - *278 - *71 - - *287 + - *288 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -110237,9 +110275,9 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - default: *286 + default: *287 headers: Link: *67 '304': *37 @@ -110260,9 +110298,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *277 + - *278 - *71 - - *287 + - *288 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -110332,13 +110370,13 @@ paths: description: Response content: application/json: - schema: *285 + schema: *286 examples: - text_field: *286 - number_field: *286 - date_field: *286 - single_select_field: *286 - iteration_field: *286 + text_field: *287 + number_field: *287 + date_field: *287 + single_select_field: *287 + iteration_field: *287 '401': *25 '403': *29 '404': *6 @@ -110358,9 +110396,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *277 + - *278 - *71 - - *287 + - *288 responses: '204': description: Response @@ -110382,9 +110420,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *277 + - *278 - *71 - - *725 + - *726 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -110410,9 +110448,9 @@ paths: application/json: schema: type: array - items: *285 + items: *286 examples: - default: *286 + default: *287 headers: Link: *67 '304': *37 @@ -110633,7 +110671,7 @@ paths: type: array items: *160 examples: - default: *272 + default: *273 headers: Link: *67 x-github: @@ -110659,7 +110697,7 @@ paths: - *123 - *125 - *124 - - *726 + - *727 - *126 responses: '200': @@ -110790,7 +110828,7 @@ paths: parameters: - *71 - *123 - - *727 + - *728 - *124 responses: '200': @@ -110889,9 +110927,9 @@ paths: - *123 - *125 - *124 - - *728 - - *126 - *729 + - *126 + - *730 responses: '200': description: Response when getting a billing usage summary @@ -111025,9 +111063,9 @@ paths: application/json: schema: type: array - items: *696 + items: *697 examples: - default: *697 + default: *698 headers: Link: *67 x-github: @@ -111057,9 +111095,9 @@ paths: application/json: schema: type: array - items: *698 + items: *699 examples: - default: *730 + default: *731 headers: Link: *67 x-github: @@ -111084,7 +111122,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *71 - - *731 + - *732 - *61 - *17 - *19 @@ -111096,11 +111134,11 @@ paths: schema: anyOf: - type: array - items: *732 + items: *733 - type: array items: *79 examples: - default-response: *701 + default-response: *702 headers: Link: *67 x-github: @@ -111131,7 +111169,7 @@ paths: type: array items: *160 examples: - default: *272 + default: *273 headers: Link: *67 x-github: @@ -111259,7 +111297,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &733 + enterprise: &734 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -111317,7 +111355,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &734 + installation: &735 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -111336,7 +111374,7 @@ x-webhooks: required: - id - node_id - organization: &735 + organization: &736 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -111396,13 +111434,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &736 + repository: &737 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &768 + properties: &769 id: description: Unique identifier of the repository example: 42 @@ -112086,7 +112124,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &769 + required: &770 - archive_url - assignees_url - blobs_url @@ -112237,10 +112275,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -112316,11 +112354,11 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - rule: &737 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + rule: &738 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) @@ -112543,11 +112581,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - rule: *737 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + rule: *738 sender: *4 required: - action @@ -112730,11 +112768,11 @@ x-webhooks: - everyone required: - from - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - rule: *737 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + rule: *738 sender: *4 required: - action @@ -112818,7 +112856,7 @@ x-webhooks: type: string enum: - completed - check_run: &739 + check_run: &740 title: CheckRun description: A check performed on the code of a given code change type: object @@ -112909,7 +112947,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *738 + deployment: *739 details_url: example: https://example.com type: string @@ -112994,10 +113032,10 @@ x-webhooks: - output - app - pull_requests - installation: *734 - enterprise: *733 - organization: *735 - repository: *736 + installation: *735 + enterprise: *734 + organization: *736 + repository: *737 sender: *4 required: - check_run @@ -113388,11 +113426,11 @@ x-webhooks: type: string enum: - created - check_run: *739 - installation: *734 - enterprise: *733 - organization: *735 - repository: *736 + check_run: *740 + installation: *735 + enterprise: *734 + organization: *736 + repository: *737 sender: *4 required: - check_run @@ -113786,11 +113824,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *739 - installation: *734 - enterprise: *733 - organization: *735 - repository: *736 + check_run: *740 + installation: *735 + enterprise: *734 + organization: *736 + repository: *737 requested_action: description: The action requested by the user. type: object @@ -114193,11 +114231,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *739 - installation: *734 - enterprise: *733 - organization: *735 - repository: *736 + check_run: *740 + installation: *735 + enterprise: *734 + organization: *736 + repository: *737 sender: *4 required: - check_run @@ -115167,10 +115205,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -115859,10 +115897,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -116545,10 +116583,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -116714,7 +116752,7 @@ x-webhooks: required: - login - id - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -116859,20 +116897,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &740 + commit_oid: &741 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: *733 - installation: *734 - organization: *735 - ref: &741 + enterprise: *734 + installation: *735 + organization: *736 + ref: &742 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: *736 + repository: *737 sender: *4 required: - action @@ -117037,7 +117075,7 @@ x-webhooks: required: - login - id - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -117267,12 +117305,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *740 - enterprise: *733 - installation: *734 - organization: *735 - ref: *741 - repository: *736 + commit_oid: *741 + enterprise: *734 + installation: *735 + organization: *736 + ref: *742 + repository: *737 sender: *4 required: - action @@ -117367,7 +117405,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -117538,12 +117576,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *740 - enterprise: *733 - installation: *734 - organization: *735 - ref: *741 - repository: *736 + commit_oid: *741 + enterprise: *734 + installation: *735 + organization: *736 + ref: *742 + repository: *737 sender: *4 required: - action @@ -117709,7 +117747,7 @@ x-webhooks: required: - login - id - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -117875,12 +117913,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *740 - enterprise: *733 - installation: *734 - organization: *735 - ref: *741 - repository: *736 + commit_oid: *741 + enterprise: *734 + installation: *735 + organization: *736 + ref: *742 + repository: *737 sender: *4 required: - action @@ -117979,7 +118017,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -118154,16 +118192,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 ref: 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 nullable: true - repository: *736 + repository: *737 sender: *4 required: - action @@ -118260,7 +118298,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -118400,12 +118438,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *740 - enterprise: *733 - installation: *734 - organization: *735 - ref: *741 - repository: *736 + commit_oid: *741 + enterprise: *734 + installation: *735 + organization: *736 + ref: *742 + repository: *737 sender: *4 required: - action @@ -118571,7 +118609,7 @@ x-webhooks: required: - login - id - dismissed_comment: *434 + dismissed_comment: *435 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -118716,10 +118754,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -118974,10 +119012,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -119057,18 +119095,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *735 - pusher_type: &742 + organization: *736 + pusher_type: &743 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &743 + ref: &744 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -119078,7 +119116,7 @@ x-webhooks: enum: - tag - branch - repository: *736 + repository: *737 sender: *4 required: - ref @@ -119160,10 +119198,10 @@ x-webhooks: type: string enum: - created - definition: *289 - enterprise: *733 - installation: *734 - organization: *735 + definition: *290 + enterprise: *734 + installation: *735 + organization: *736 sender: *4 required: - action @@ -119248,9 +119286,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 sender: *4 required: - action @@ -119327,10 +119365,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *289 - enterprise: *733 - installation: *734 - organization: *735 + definition: *290 + enterprise: *734 + installation: *735 + organization: *736 sender: *4 required: - action @@ -119407,10 +119445,10 @@ x-webhooks: type: string enum: - updated - definition: *289 - enterprise: *733 - installation: *734 - organization: *735 + definition: *290 + enterprise: *734 + installation: *735 + organization: *736 sender: *4 required: - action @@ -119487,19 +119525,19 @@ x-webhooks: type: string enum: - updated - enterprise: *733 - installation: *734 - repository: *736 - organization: *735 + enterprise: *734 + installation: *735 + repository: *737 + organization: *736 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *293 + items: *294 old_property_values: type: array description: The old custom property values for the repository. - items: *293 + items: *294 required: - action - repository @@ -119575,18 +119613,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *733 - installation: *734 - organization: *735 - pusher_type: *742 - ref: *743 + enterprise: *734 + installation: *735 + organization: *736 + pusher_type: *743 + ref: *744 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *736 + repository: *737 sender: *4 required: - ref @@ -119666,11 +119704,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -119750,11 +119788,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -119835,11 +119873,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -119920,11 +119958,11 @@ x-webhooks: type: string enum: - created - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120003,11 +120041,11 @@ x-webhooks: type: string enum: - dismissed - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120086,11 +120124,11 @@ x-webhooks: type: string enum: - fixed - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120170,11 +120208,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120253,11 +120291,11 @@ x-webhooks: type: string enum: - reopened - alert: *496 - installation: *734 - organization: *735 - enterprise: *733 - repository: *736 + alert: *497 + installation: *735 + organization: *736 + enterprise: *734 + repository: *737 sender: *4 required: - action @@ -120334,9 +120372,9 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - key: &744 + enterprise: *734 + installation: *735 + key: &745 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -120372,8 +120410,8 @@ x-webhooks: - verified - created_at - read_only - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -120450,11 +120488,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - key: *744 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + key: *745 + organization: *736 + repository: *737 sender: *4 required: - action @@ -121010,12 +121048,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - workflow: &750 + workflow: &751 title: Workflow type: object nullable: true @@ -121756,15 +121794,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *745 - required: *746 + properties: *746 + required: *747 nullable: true pull_requests: type: array - items: *591 - repository: *736 - organization: *735 - installation: *734 + items: *592 + repository: *737 + organization: *736 + installation: *735 sender: *4 responses: '200': @@ -121835,7 +121873,7 @@ x-webhooks: type: string enum: - approved - approver: &747 + approver: &748 type: object properties: avatar_url: @@ -121878,11 +121916,11 @@ x-webhooks: type: string comment: type: string - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - reviewers: &748 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + reviewers: &749 type: array items: type: object @@ -121961,7 +121999,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &749 + workflow_job_run: &750 type: object properties: conclusion: @@ -122692,18 +122730,18 @@ x-webhooks: type: string enum: - rejected - approver: *747 + approver: *748 comment: type: string - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - reviewers: *748 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + reviewers: *749 sender: *4 since: type: string - workflow_job_run: *749 + workflow_job_run: *750 workflow_job_runs: type: array items: @@ -123407,13 +123445,13 @@ x-webhooks: type: string enum: - requested - enterprise: *733 + enterprise: *734 environment: type: string - installation: *734 - organization: *735 - repository: *736 - requestor: &755 + installation: *735 + organization: *736 + repository: *737 + requestor: &756 title: User type: object nullable: true @@ -125302,12 +125340,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - workflow: *750 + workflow: *751 workflow_run: title: Deployment Workflow Run type: object @@ -125987,7 +126025,7 @@ x-webhooks: type: string enum: - answered - answer: &753 + answer: &754 type: object properties: author_association: @@ -126144,11 +126182,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -126275,11 +126313,11 @@ x-webhooks: - from required: - category - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -126362,11 +126400,11 @@ x-webhooks: type: string enum: - closed - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -126448,7 +126486,7 @@ x-webhooks: type: string enum: - created - comment: &752 + comment: &753 type: object properties: author_association: @@ -126605,11 +126643,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -126692,12 +126730,12 @@ x-webhooks: type: string enum: - deleted - comment: *752 - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + comment: *753 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -126792,12 +126830,12 @@ x-webhooks: - from required: - body - comment: *752 - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + comment: *753 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -126881,11 +126919,11 @@ x-webhooks: type: string enum: - created - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -126967,11 +127005,11 @@ x-webhooks: type: string enum: - deleted - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127071,11 +127109,11 @@ x-webhooks: type: string required: - from - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127157,10 +127195,10 @@ x-webhooks: type: string enum: - labeled - discussion: *751 - enterprise: *733 - installation: *734 - label: &754 + discussion: *752 + enterprise: *734 + installation: *735 + label: &755 title: Label type: object properties: @@ -127192,8 +127230,8 @@ x-webhooks: - color - default - description - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127276,11 +127314,11 @@ x-webhooks: type: string enum: - locked - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127362,11 +127400,11 @@ x-webhooks: type: string enum: - pinned - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127448,11 +127486,11 @@ x-webhooks: type: string enum: - reopened - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127537,16 +127575,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *751 - new_repository: *736 + new_discussion: *752 + new_repository: *737 required: - new_discussion - new_repository - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127629,10 +127667,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *751 - old_answer: *753 - organization: *735 - repository: *736 + discussion: *752 + old_answer: *754 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127714,12 +127752,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *751 - enterprise: *733 - installation: *734 - label: *754 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127802,11 +127840,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127888,11 +127926,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *751 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + discussion: *752 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -127965,7 +128003,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *733 + enterprise: *734 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -128625,9 +128663,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - forkee @@ -128773,9 +128811,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pages: description: The pages that were updated. type: array @@ -128812,7 +128850,7 @@ x-webhooks: - action - sha - html_url - repository: *736 + repository: *737 sender: *4 required: - pages @@ -128888,10 +128926,10 @@ x-webhooks: type: string enum: - created - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories: &756 + organization: *736 + repositories: &757 description: An array of repository objects that the installation can access. type: array @@ -128917,8 +128955,8 @@ x-webhooks: - name - full_name - private - repository: *736 - requester: *755 + repository: *737 + requester: *756 sender: *4 required: - action @@ -128993,11 +129031,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories: *756 - repository: *736 + organization: *736 + repositories: *757 + repository: *737 requester: nullable: true sender: *4 @@ -129073,11 +129111,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories: *756 - repository: *736 + organization: *736 + repositories: *757 + repository: *737 requester: nullable: true sender: *4 @@ -129153,10 +129191,10 @@ x-webhooks: type: string enum: - added - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories_added: &757 + organization: *736 + repositories_added: &758 description: An array of repository objects, which were added to the installation. type: array @@ -129202,15 +129240,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *736 - repository_selection: &758 + repository: *737 + repository_selection: &759 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *755 + requester: *756 sender: *4 required: - action @@ -129289,10 +129327,10 @@ x-webhooks: type: string enum: - removed - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories_added: *757 + organization: *736 + repositories_added: *758 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -129319,9 +129357,9 @@ x-webhooks: - name - full_name - private - repository: *736 - repository_selection: *758 - requester: *755 + repository: *737 + repository_selection: *759 + requester: *756 sender: *4 required: - action @@ -129400,11 +129438,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories: *756 - repository: *736 + organization: *736 + repositories: *757 + repository: *737 requester: nullable: true sender: *4 @@ -129582,10 +129620,10 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 target_type: type: string @@ -129664,11 +129702,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *733 + enterprise: *734 installation: *22 - organization: *735 - repositories: *756 - repository: *736 + organization: *736 + repositories: *757 + repository: *737 requester: nullable: true sender: *4 @@ -129842,8 +129880,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *568 - required: *569 + properties: *569 + required: *570 nullable: true user: title: User @@ -129928,8 +129966,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -130718,8 +130756,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 state: description: State of the issue; either 'open' or 'closed' type: string @@ -130735,7 +130773,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -131068,8 +131106,8 @@ x-webhooks: - state - locked - assignee - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -131149,7 +131187,7 @@ x-webhooks: type: string enum: - deleted - comment: &759 + comment: &760 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -131306,8 +131344,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *568 - required: *569 + properties: *569 + required: *570 nullable: true required: - url @@ -131322,8 +131360,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -132108,8 +132146,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 state: description: State of the issue; either 'open' or 'closed' type: string @@ -132125,7 +132163,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -132460,8 +132498,8 @@ x-webhooks: - state - locked - assignee - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -132541,7 +132579,7 @@ x-webhooks: type: string enum: - edited - changes: &788 + changes: &789 description: The changes to the comment. type: object properties: @@ -132553,9 +132591,9 @@ x-webhooks: type: string required: - from - comment: *759 - enterprise: *733 - installation: *734 + comment: *760 + enterprise: *734 + installation: *735 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133343,8 +133381,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133360,7 +133398,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -133693,8 +133731,8 @@ x-webhooks: - state - locked - assignee - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -133775,9 +133813,9 @@ x-webhooks: type: string enum: - pinned - comment: *759 - enterprise: *733 - installation: *734 + comment: *760 + enterprise: *734 + installation: *735 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -134567,8 +134605,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134584,7 +134622,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -134919,8 +134957,8 @@ x-webhooks: - state - locked - assignee - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -135000,9 +135038,9 @@ x-webhooks: type: string enum: - unpinned - comment: *759 - enterprise: *733 - installation: *734 + comment: *760 + enterprise: *734 + installation: *735 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -135792,8 +135830,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135809,7 +135847,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -136144,8 +136182,8 @@ x-webhooks: - state - locked - assignee - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -136234,9 +136272,9 @@ x-webhooks: type: number blocking_issue: *85 blocking_issue_repo: *79 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -136325,9 +136363,9 @@ x-webhooks: type: number blocking_issue: *85 blocking_issue_repo: *79 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -136415,9 +136453,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *85 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -136506,9 +136544,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *85 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -136588,10 +136626,10 @@ x-webhooks: type: string enum: - assigned - assignee: *755 - enterprise: *733 - installation: *734 - issue: &762 + assignee: *756 + enterprise: *734 + installation: *735 + issue: &763 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -137383,11 +137421,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137403,7 +137441,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -137504,8 +137542,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -137585,8 +137623,8 @@ x-webhooks: type: string enum: - closed - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -138383,11 +138421,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138403,7 +138441,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -138639,8 +138677,8 @@ x-webhooks: required: - state - closed_at - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -138719,8 +138757,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139508,11 +139546,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139528,7 +139566,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -139628,8 +139666,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -139708,8 +139746,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140519,11 +140557,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140539,7 +140577,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -140618,7 +140656,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &760 + milestone: &761 title: Milestone description: A collection of related issues and pull requests. type: object @@ -140756,8 +140794,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -140856,8 +140894,8 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141649,11 +141687,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141666,7 +141704,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *241 + type: *242 title: description: Title of the issue type: string @@ -141770,9 +141808,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *754 - organization: *735 - repository: *736 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -141852,8 +141890,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142644,11 +142682,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142661,7 +142699,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *241 + type: *242 title: description: Title of the issue type: string @@ -142765,9 +142803,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *754 - organization: *735 - repository: *736 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -142847,8 +142885,8 @@ x-webhooks: type: string enum: - locked - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143663,11 +143701,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143680,7 +143718,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *241 + type: *242 title: description: Title of the issue type: string @@ -143761,8 +143799,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -143841,8 +143879,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144651,11 +144689,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144671,7 +144709,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -144749,9 +144787,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *760 - organization: *735 - repository: *736 + milestone: *761 + organization: *736 + repository: *737 sender: *4 required: - action @@ -145614,11 +145652,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145719,7 +145757,7 @@ x-webhooks: required: - login - id - type: *241 + type: *242 required: - id - number @@ -146199,8 +146237,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146984,11 +147022,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147004,7 +147042,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -147112,8 +147150,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -147193,9 +147231,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *733 - installation: *734 - issue: &761 + enterprise: *734 + installation: *735 + issue: &762 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -147981,11 +148019,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148001,7 +148039,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -148101,8 +148139,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -148181,8 +148219,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148995,11 +149033,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149093,9 +149131,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *241 - organization: *735 - repository: *736 + type: *242 + organization: *736 + repository: *737 sender: *4 required: - action @@ -149964,11 +150002,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149984,7 +150022,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -150563,11 +150601,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *733 - installation: *734 - issue: *761 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + issue: *762 + organization: *736 + repository: *737 sender: *4 required: - action @@ -150647,12 +150685,12 @@ x-webhooks: type: string enum: - typed - enterprise: *733 - installation: *734 - issue: *762 - type: *241 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + issue: *763 + type: *242 + organization: *736 + repository: *737 sender: *4 required: - action @@ -150733,7 +150771,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &791 + assignee: &792 title: User type: object nullable: true @@ -150803,11 +150841,11 @@ x-webhooks: required: - login - id - enterprise: *733 - installation: *734 - issue: *762 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + issue: *763 + organization: *736 + repository: *737 sender: *4 required: - action @@ -150886,12 +150924,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *733 - installation: *734 - issue: *762 - label: *754 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + issue: *763 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -150971,8 +151009,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151785,11 +151823,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *669 - issue_dependencies_summary: *670 + sub_issues_summary: *670 + issue_dependencies_summary: *671 issue_field_values: type: array - items: *553 + items: *554 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151805,7 +151843,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *241 + type: *242 updated_at: type: string format: date-time @@ -151883,8 +151921,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -151964,11 +152002,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *733 - installation: *734 - issue: *761 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + issue: *762 + organization: *736 + repository: *737 sender: *4 required: - action @@ -152047,12 +152085,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *733 - installation: *734 - issue: *762 - type: *241 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + issue: *763 + type: *242 + organization: *736 + repository: *737 sender: *4 required: - action @@ -152132,11 +152170,11 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - label: *754 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -152214,11 +152252,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - label: *754 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -152328,11 +152366,11 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - label: *754 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + label: *755 + organization: *736 + repository: *737 sender: *4 required: - action @@ -152414,9 +152452,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *733 - installation: *734 - marketplace_purchase: &763 + enterprise: *734 + installation: *735 + marketplace_purchase: &764 title: Marketplace Purchase type: object required: @@ -152499,8 +152537,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *735 - previous_marketplace_purchase: &764 + organization: *736 + previous_marketplace_purchase: &765 title: Marketplace Purchase type: object properties: @@ -152580,7 +152618,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *736 + repository: *737 sender: *4 required: - action @@ -152660,10 +152698,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *733 - installation: *734 - marketplace_purchase: *763 - organization: *735 + enterprise: *734 + installation: *735 + marketplace_purchase: *764 + organization: *736 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152746,7 +152784,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *736 + repository: *737 sender: *4 required: - action @@ -152828,10 +152866,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *733 - installation: *734 - marketplace_purchase: *763 - organization: *735 + enterprise: *734 + installation: *735 + marketplace_purchase: *764 + organization: *736 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152913,7 +152951,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *736 + repository: *737 sender: *4 required: - action @@ -152994,8 +153032,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 marketplace_purchase: title: Marketplace Purchase type: object @@ -153077,9 +153115,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *735 - previous_marketplace_purchase: *764 - repository: *736 + organization: *736 + previous_marketplace_purchase: *765 + repository: *737 sender: *4 required: - action @@ -153159,12 +153197,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *733 - installation: *734 - marketplace_purchase: *763 - organization: *735 - previous_marketplace_purchase: *764 - repository: *736 + enterprise: *734 + installation: *735 + marketplace_purchase: *764 + organization: *736 + previous_marketplace_purchase: *765 + repository: *737 sender: *4 required: - action @@ -153266,11 +153304,11 @@ x-webhooks: type: string required: - to - enterprise: *733 - installation: *734 - member: *755 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + member: *756 + organization: *736 + repository: *737 sender: *4 required: - action @@ -153370,11 +153408,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *733 - installation: *734 - member: *755 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + member: *756 + organization: *736 + repository: *737 sender: *4 required: - action @@ -153453,11 +153491,11 @@ x-webhooks: type: string enum: - removed - enterprise: *733 - installation: *734 - member: *755 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + member: *756 + organization: *736 + repository: *737 sender: *4 required: - action @@ -153535,11 +153573,11 @@ x-webhooks: type: string enum: - added - enterprise: *733 - installation: *734 - member: *755 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + member: *756 + organization: *736 + repository: *737 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153615,7 +153653,7 @@ x-webhooks: required: - login - id - team: &765 + team: &766 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -153838,11 +153876,11 @@ x-webhooks: type: string enum: - removed - enterprise: *733 - installation: *734 - member: *755 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + member: *756 + organization: *736 + repository: *737 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153919,7 +153957,7 @@ x-webhooks: required: - login - id - team: *765 + team: *766 required: - action - scope @@ -154001,8 +154039,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *734 - merge_group: &767 + installation: *735 + merge_group: &768 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -154021,15 +154059,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *766 + head_commit: *767 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -154115,10 +154153,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *734 - merge_group: *767 - organization: *735 - repository: *736 + installation: *735 + merge_group: *768 + organization: *736 + repository: *737 sender: *4 required: - action @@ -154191,7 +154229,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 + enterprise: *734 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -154300,16 +154338,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *734 - organization: *735 + installation: *735 + organization: *736 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *768 - required: *769 + properties: *769 + required: *770 nullable: true sender: *4 required: @@ -154390,11 +154428,11 @@ x-webhooks: type: string enum: - closed - enterprise: *733 - installation: *734 - milestone: *760 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + milestone: *761 + organization: *736 + repository: *737 sender: *4 required: - action @@ -154473,9 +154511,9 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - milestone: &770 + enterprise: *734 + installation: *735 + milestone: &771 title: Milestone description: A collection of related issues and pull requests. type: object @@ -154612,8 +154650,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -154692,11 +154730,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - milestone: *760 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + milestone: *761 + organization: *736 + repository: *737 sender: *4 required: - action @@ -154806,11 +154844,11 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - milestone: *760 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + milestone: *761 + organization: *736 + repository: *737 sender: *4 required: - action @@ -154890,11 +154928,11 @@ x-webhooks: type: string enum: - opened - enterprise: *733 - installation: *734 - milestone: *770 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + milestone: *771 + organization: *736 + repository: *737 sender: *4 required: - action @@ -154973,11 +155011,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *755 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + blocked_user: *756 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155056,11 +155094,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *755 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + blocked_user: *756 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155139,9 +155177,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - membership: &771 + enterprise: *734 + installation: *735 + membership: &772 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -155248,8 +155286,8 @@ x-webhooks: - role - organization_url - user - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155327,11 +155365,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *733 - installation: *734 - membership: *771 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + membership: *772 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155410,8 +155448,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -155527,10 +155565,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 - user: *755 + user: *756 required: - action - invitation @@ -155608,11 +155646,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *733 - installation: *734 - membership: *771 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + membership: *772 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155699,11 +155737,11 @@ x-webhooks: properties: from: type: string - enterprise: *733 - installation: *734 - membership: *771 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + membership: *772 + organization: *736 + repository: *737 sender: *4 required: - action @@ -155780,9 +155818,9 @@ x-webhooks: type: string enum: - published - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 package: description: Information about the package. type: object @@ -156281,7 +156319,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &772 + items: &773 title: Ruby Gems metadata type: object properties: @@ -156376,7 +156414,7 @@ x-webhooks: - owner - package_version - registry - repository: *736 + repository: *737 sender: *4 required: - action @@ -156452,9 +156490,9 @@ x-webhooks: type: string enum: - updated - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 package: description: Information about the package. type: object @@ -156807,7 +156845,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *772 + items: *773 source_url: type: string format: uri @@ -156877,7 +156915,7 @@ x-webhooks: - owner - package_version - registry - repository: *736 + repository: *737 sender: *4 required: - action @@ -157053,12 +157091,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *733 + enterprise: *734 id: type: integer - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - id @@ -157135,7 +157173,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &773 + personal_access_token_request: &774 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -157281,10 +157319,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *733 - organization: *735 + enterprise: *734 + organization: *736 sender: *4 - installation: *734 + installation: *735 required: - action - personal_access_token_request @@ -157361,11 +157399,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *773 - enterprise: *733 - organization: *735 + personal_access_token_request: *774 + enterprise: *734 + organization: *736 sender: *4 - installation: *734 + installation: *735 required: - action - personal_access_token_request @@ -157441,11 +157479,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *773 - enterprise: *733 - organization: *735 + personal_access_token_request: *774 + enterprise: *734 + organization: *736 sender: *4 - installation: *734 + installation: *735 required: - action - personal_access_token_request @@ -157520,11 +157558,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *773 - organization: *735 - enterprise: *733 + personal_access_token_request: *774 + organization: *736 + enterprise: *734 sender: *4 - installation: *734 + installation: *735 required: - action - personal_access_token_request @@ -157629,7 +157667,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *774 + last_response: *775 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -157661,8 +157699,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 zen: description: Random string of GitHub zen. @@ -157907,10 +157945,10 @@ x-webhooks: - from required: - note - enterprise: *733 - installation: *734 - organization: *735 - project_card: &775 + enterprise: *734 + installation: *735 + organization: *736 + project_card: &776 title: Project Card type: object properties: @@ -158029,7 +158067,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *736 + repository: *737 sender: *4 required: - action @@ -158110,11 +158148,11 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - project_card: *775 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project_card: *776 + repository: *737 sender: *4 required: - action @@ -158194,9 +158232,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 project_card: title: Project Card type: object @@ -158324,8 +158362,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *768 - required: *769 + properties: *769 + required: *770 nullable: true sender: *4 required: @@ -158419,11 +158457,11 @@ x-webhooks: - from required: - note - enterprise: *733 - installation: *734 - organization: *735 - project_card: *775 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project_card: *776 + repository: *737 sender: *4 required: - action @@ -158517,9 +158555,9 @@ x-webhooks: - from required: - column_id - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 project_card: allOf: - title: Project Card @@ -158709,7 +158747,7 @@ x-webhooks: type: string required: - after_id - repository: *736 + repository: *737 sender: *4 required: - action @@ -158789,10 +158827,10 @@ x-webhooks: type: string enum: - closed - enterprise: *733 - installation: *734 - organization: *735 - project: &777 + enterprise: *734 + installation: *735 + organization: *736 + project: &778 title: Project type: object properties: @@ -158916,7 +158954,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *736 + repository: *737 sender: *4 required: - action @@ -158996,10 +159034,10 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - project_column: &776 + enterprise: *734 + installation: *735 + organization: *736 + project_column: &777 title: Project Column type: object properties: @@ -159038,7 +159076,7 @@ x-webhooks: - name - created_at - updated_at - repository: *736 + repository: *737 sender: *4 required: - action @@ -159117,18 +159155,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - project_column: *776 + enterprise: *734 + installation: *735 + organization: *736 + project_column: *777 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *768 - required: *769 + properties: *769 + required: *770 nullable: true sender: *4 required: @@ -159218,11 +159256,11 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - organization: *735 - project_column: *776 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project_column: *777 + repository: *737 sender: *4 required: - action @@ -159302,11 +159340,11 @@ x-webhooks: type: string enum: - moved - enterprise: *733 - installation: *734 - organization: *735 - project_column: *776 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project_column: *777 + repository: *737 sender: *4 required: - action @@ -159386,11 +159424,11 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - project: *777 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project: *778 + repository: *737 sender: *4 required: - action @@ -159470,18 +159508,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - project: *777 + enterprise: *734 + installation: *735 + organization: *736 + project: *778 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *768 - required: *769 + properties: *769 + required: *770 nullable: true sender: *4 required: @@ -159583,11 +159621,11 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - organization: *735 - project: *777 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project: *778 + repository: *737 sender: *4 required: - action @@ -159666,11 +159704,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *733 - installation: *734 - organization: *735 - project: *777 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + project: *778 + repository: *737 sender: *4 required: - action @@ -159751,9 +159789,9 @@ x-webhooks: type: string enum: - closed - installation: *734 - organization: *735 - projects_v2: *275 + installation: *735 + organization: *736 + projects_v2: *276 sender: *4 required: - action @@ -159834,9 +159872,9 @@ x-webhooks: type: string enum: - created - installation: *734 - organization: *735 - projects_v2: *275 + installation: *735 + organization: *736 + projects_v2: *276 sender: *4 required: - action @@ -159917,9 +159955,9 @@ x-webhooks: type: string enum: - deleted - installation: *734 - organization: *735 - projects_v2: *275 + installation: *735 + organization: *736 + projects_v2: *276 sender: *4 required: - action @@ -160036,9 +160074,9 @@ x-webhooks: type: string to: type: string - installation: *734 - organization: *735 - projects_v2: *275 + installation: *735 + organization: *736 + projects_v2: *276 sender: *4 required: - action @@ -160121,7 +160159,7 @@ x-webhooks: type: string enum: - archived - changes: &781 + changes: &782 type: object properties: archived_at: @@ -160135,9 +160173,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *734 - organization: *735 - projects_v2_item: &778 + installation: *735 + organization: *736 + projects_v2_item: &779 title: Projects v2 Item description: An item belonging to a project type: object @@ -160155,7 +160193,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *282 + content_type: *283 creator: *4 created_at: type: string @@ -160272,9 +160310,9 @@ x-webhooks: nullable: true to: type: string - installation: *734 - organization: *735 - projects_v2_item: *778 + installation: *735 + organization: *736 + projects_v2_item: *779 sender: *4 required: - action @@ -160356,9 +160394,9 @@ x-webhooks: type: string enum: - created - installation: *734 - organization: *735 - projects_v2_item: *778 + installation: *735 + organization: *736 + projects_v2_item: *779 sender: *4 required: - action @@ -160439,9 +160477,9 @@ x-webhooks: type: string enum: - deleted - installation: *734 - organization: *735 - projects_v2_item: *778 + installation: *735 + organization: *736 + projects_v2_item: *779 sender: *4 required: - action @@ -160547,7 +160585,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &779 + - &780 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -160569,7 +160607,7 @@ x-webhooks: required: - id - name - - &780 + - &781 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -160603,8 +160641,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *779 - *780 + - *781 required: - field_value - type: object @@ -160620,9 +160658,9 @@ x-webhooks: nullable: true required: - body - installation: *734 - organization: *735 - projects_v2_item: *778 + installation: *735 + organization: *736 + projects_v2_item: *779 sender: *4 required: - action @@ -160717,9 +160755,9 @@ x-webhooks: to: type: string nullable: true - installation: *734 - organization: *735 - projects_v2_item: *778 + installation: *735 + organization: *736 + projects_v2_item: *779 sender: *4 required: - action @@ -160802,10 +160840,10 @@ x-webhooks: type: string enum: - restored - changes: *781 - installation: *734 - organization: *735 - projects_v2_item: *778 + changes: *782 + installation: *735 + organization: *736 + projects_v2_item: *779 sender: *4 required: - action @@ -160887,9 +160925,9 @@ x-webhooks: type: string enum: - reopened - installation: *734 - organization: *735 - projects_v2: *275 + installation: *735 + organization: *736 + projects_v2: *276 sender: *4 required: - action @@ -160970,14 +161008,14 @@ x-webhooks: type: string enum: - created - installation: *734 - organization: *735 - projects_v2_status_update: &784 + installation: *735 + organization: *736 + projects_v2_status_update: &785 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *782 - required: *783 + properties: *783 + required: *784 sender: *4 required: - action @@ -161058,9 +161096,9 @@ x-webhooks: type: string enum: - deleted - installation: *734 - organization: *735 - projects_v2_status_update: *784 + installation: *735 + organization: *736 + projects_v2_status_update: *785 sender: *4 required: - action @@ -161196,9 +161234,9 @@ x-webhooks: type: string format: date nullable: true - installation: *734 - organization: *735 - projects_v2_status_update: *784 + installation: *735 + organization: *736 + projects_v2_status_update: *785 sender: *4 required: - action @@ -161269,10 +161307,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - repository @@ -161349,13 +161387,13 @@ x-webhooks: type: string enum: - assigned - assignee: *755 - enterprise: *733 - installation: *734 - number: &785 + assignee: *756 + enterprise: *734 + installation: *735 + number: &786 description: The pull request number. type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -163642,7 +163680,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -163724,11 +163762,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -166010,7 +166048,7 @@ x-webhooks: - draft reason: type: string - repository: *736 + repository: *737 sender: *4 required: - action @@ -166092,11 +166130,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -168378,7 +168416,7 @@ x-webhooks: - draft reason: type: string - repository: *736 + repository: *737 sender: *4 required: - action @@ -168460,13 +168498,13 @@ x-webhooks: type: string enum: - closed - enterprise: *733 - installation: *734 - number: *785 - organization: *735 - pull_request: &786 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 + pull_request: &787 allOf: - - *591 + - *592 - type: object properties: allow_auto_merge: @@ -168528,7 +168566,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *736 + repository: *737 sender: *4 required: - action @@ -168609,12 +168647,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *733 - installation: *734 - number: *785 - organization: *735 - pull_request: *786 - repository: *736 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 + pull_request: *787 + repository: *737 sender: *4 required: - action @@ -168694,11 +168732,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *733 - milestone: *575 - number: *785 - organization: *735 - pull_request: &787 + enterprise: *734 + milestone: *576 + number: *786 + organization: *736 + pull_request: &788 title: Pull Request type: object properties: @@ -170979,7 +171017,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -171058,11 +171096,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -173362,7 +173400,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *736 + repository: *737 sender: *4 required: - action @@ -173486,12 +173524,12 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - number: *785 - organization: *735 - pull_request: *786 - repository: *736 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 + pull_request: *787 + repository: *737 sender: *4 required: - action @@ -173571,11 +173609,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -175860,7 +175898,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -175940,11 +175978,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *733 - installation: *734 - label: *754 - number: *785 - organization: *735 + enterprise: *734 + installation: *735 + label: *755 + number: *786 + organization: *736 pull_request: title: Pull Request type: object @@ -178230,7 +178268,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -178311,10 +178349,10 @@ x-webhooks: type: string enum: - locked - enterprise: *733 - installation: *734 - number: *785 - organization: *735 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 pull_request: title: Pull Request type: object @@ -180598,7 +180636,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -180678,12 +180716,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *733 - milestone: *575 - number: *785 - organization: *735 - pull_request: *787 - repository: *736 + enterprise: *734 + milestone: *576 + number: *786 + organization: *736 + pull_request: *788 + repository: *737 sender: *4 required: - action @@ -180762,12 +180800,12 @@ x-webhooks: type: string enum: - opened - enterprise: *733 - installation: *734 - number: *785 - organization: *735 - pull_request: *786 - repository: *736 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 + pull_request: *787 + repository: *737 sender: *4 required: - action @@ -180848,12 +180886,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *733 - installation: *734 - number: *785 - organization: *735 - pull_request: *786 - repository: *736 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 + pull_request: *787 + repository: *737 sender: *4 required: - action @@ -180933,12 +180971,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *733 - installation: *734 - number: *785 - organization: *735 - pull_request: *786 - repository: *736 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 + pull_request: *787 + repository: *737 sender: *4 required: - action @@ -181304,9 +181342,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: type: object properties: @@ -183480,7 +183518,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *736 + repository: *737 sender: *4 required: - action @@ -183560,7 +183598,7 @@ x-webhooks: type: string enum: - deleted - comment: &789 + comment: &790 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -183845,9 +183883,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: type: object properties: @@ -186009,7 +186047,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *736 + repository: *737 sender: *4 required: - action @@ -186089,11 +186127,11 @@ x-webhooks: type: string enum: - edited - changes: *788 - comment: *789 - enterprise: *733 - installation: *734 - organization: *735 + changes: *789 + comment: *790 + enterprise: *734 + installation: *735 + organization: *736 pull_request: type: object properties: @@ -188258,7 +188296,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *736 + repository: *737 sender: *4 required: - action @@ -188339,9 +188377,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: title: Simple Pull Request type: object @@ -190518,7 +190556,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *736 + repository: *737 review: description: The review that was affected. type: object @@ -190765,9 +190803,9 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: title: Simple Pull Request type: object @@ -192817,8 +192855,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *736 - review: &790 + repository: *737 + review: &791 description: The review that was affected. type: object properties: @@ -193051,12 +193089,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: description: The pull request number. type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -195343,7 +195381,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 requested_reviewer: title: User type: object @@ -195427,12 +195465,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: description: The pull request number. type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -197726,7 +197764,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 requested_team: title: Team description: Groups of organization members that gives permissions @@ -197918,12 +197956,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: description: The pull request number. type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -200212,7 +200250,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 requested_reviewer: title: User type: object @@ -200297,12 +200335,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *733 - installation: *734 + enterprise: *734 + installation: *735 number: description: The pull request number. type: integer - organization: *735 + organization: *736 pull_request: title: Pull Request type: object @@ -202582,7 +202620,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 requested_team: title: Team description: Groups of organization members that gives permissions @@ -202763,9 +202801,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: title: Simple Pull Request type: object @@ -204944,8 +204982,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *736 - review: *790 + repository: *737 + review: *791 sender: *4 required: - action @@ -205025,9 +205063,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: title: Simple Pull Request type: object @@ -207115,7 +207153,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *736 + repository: *737 sender: *4 thread: type: object @@ -207502,9 +207540,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 pull_request: title: Simple Pull Request type: object @@ -209578,7 +209616,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *736 + repository: *737 sender: *4 thread: type: object @@ -209968,10 +210006,10 @@ x-webhooks: type: string before: type: string - enterprise: *733 - installation: *734 - number: *785 - organization: *735 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 pull_request: title: Pull Request type: object @@ -212246,7 +212284,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -212328,11 +212366,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *791 - enterprise: *733 - installation: *734 - number: *785 - organization: *735 + assignee: *792 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 pull_request: title: Pull Request type: object @@ -214619,7 +214657,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -214698,11 +214736,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *733 - installation: *734 - label: *754 - number: *785 - organization: *735 + enterprise: *734 + installation: *735 + label: *755 + number: *786 + organization: *736 pull_request: title: Pull Request type: object @@ -216979,7 +217017,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -217060,10 +217098,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *733 - installation: *734 - number: *785 - organization: *735 + enterprise: *734 + installation: *735 + number: *786 + organization: *736 pull_request: title: Pull Request type: object @@ -219332,7 +219370,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *736 + repository: *737 sender: *4 required: - action @@ -219532,7 +219570,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *733 + enterprise: *734 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -219624,8 +219662,8 @@ x-webhooks: - url - author - committer - installation: *734 - organization: *735 + installation: *735 + organization: *736 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -220211,9 +220249,9 @@ x-webhooks: type: string enum: - published - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 registry_package: type: object properties: @@ -220659,7 +220697,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *772 + items: *773 summary: type: string tag_name: @@ -220713,7 +220751,7 @@ x-webhooks: - owner - package_version - registry - repository: *736 + repository: *737 sender: *4 required: - action @@ -220791,9 +220829,9 @@ x-webhooks: type: string enum: - updated - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 registry_package: type: object properties: @@ -221101,7 +221139,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *772 + items: *773 summary: type: string tag_name: @@ -221150,7 +221188,7 @@ x-webhooks: - owner - package_version - registry - repository: *736 + repository: *737 sender: *4 required: - action @@ -221227,10 +221265,10 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - release: &792 + enterprise: *734 + installation: *735 + organization: *736 + release: &793 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -221548,7 +221586,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *736 + repository: *737 sender: *4 required: - action @@ -221625,11 +221663,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - release: *792 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + release: *793 + repository: *737 sender: *4 required: - action @@ -221746,11 +221784,11 @@ x-webhooks: type: boolean required: - to - enterprise: *733 - installation: *734 - organization: *735 - release: *792 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + release: *793 + repository: *737 sender: *4 required: - action @@ -221828,9 +221866,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -222152,7 +222190,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *736 + repository: *737 sender: *4 required: - action @@ -222228,10 +222266,10 @@ x-webhooks: type: string enum: - published - enterprise: *733 - installation: *734 - organization: *735 - release: &793 + enterprise: *734 + installation: *735 + organization: *736 + release: &794 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -222550,7 +222588,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *736 + repository: *737 sender: *4 required: - action @@ -222626,11 +222664,11 @@ x-webhooks: type: string enum: - released - enterprise: *733 - installation: *734 - organization: *735 - release: *792 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + release: *793 + repository: *737 sender: *4 required: - action @@ -222706,11 +222744,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *733 - installation: *734 - organization: *735 - release: *793 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + release: *794 + repository: *737 sender: *4 required: - action @@ -222786,11 +222824,11 @@ x-webhooks: type: string enum: - published - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - repository_advisory: *655 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + repository_advisory: *656 sender: *4 required: - action @@ -222866,11 +222904,11 @@ x-webhooks: type: string enum: - reported - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - repository_advisory: *655 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + repository_advisory: *656 sender: *4 required: - action @@ -222946,10 +222984,10 @@ x-webhooks: type: string enum: - archived - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -223026,10 +223064,10 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -223107,10 +223145,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -223194,10 +223232,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -223309,10 +223347,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -223384,10 +223422,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 status: type: string @@ -223468,10 +223506,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -223548,10 +223586,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -223645,10 +223683,10 @@ x-webhooks: - name required: - repository - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -223728,11 +223766,11 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - repository_ruleset: *323 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + repository_ruleset: *324 sender: *4 required: - action @@ -223810,11 +223848,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - repository_ruleset: *323 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + repository_ruleset: *324 sender: *4 required: - action @@ -223892,11 +223930,11 @@ x-webhooks: type: string enum: - edited - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - repository_ruleset: *323 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + repository_ruleset: *324 changes: type: object properties: @@ -223915,16 +223953,16 @@ x-webhooks: properties: added: type: array - items: *297 + items: *298 deleted: type: array - items: *297 + items: *298 updated: type: array items: type: object properties: - condition: *297 + condition: *298 changes: type: object properties: @@ -223957,16 +223995,16 @@ x-webhooks: properties: added: type: array - items: *611 + items: *612 deleted: type: array - items: *611 + items: *612 updated: type: array items: type: object properties: - rule: *611 + rule: *612 changes: type: object properties: @@ -224200,10 +224238,10 @@ x-webhooks: - from required: - owner - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -224281,10 +224319,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -224362,7 +224400,7 @@ x-webhooks: type: string enum: - create - alert: &794 + alert: &795 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -224484,10 +224522,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -224693,10 +224731,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -224774,11 +224812,11 @@ x-webhooks: type: string enum: - reopen - alert: *794 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + alert: *795 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -224977,10 +225015,10 @@ x-webhooks: enum: - fixed - open - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225058,7 +225096,7 @@ x-webhooks: type: string enum: - assigned - alert: &795 + alert: &796 type: object properties: number: *178 @@ -225192,10 +225230,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225273,11 +225311,11 @@ x-webhooks: type: string enum: - created - alert: *795 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + alert: *796 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225358,11 +225396,11 @@ x-webhooks: type: string enum: - created - alert: *795 - installation: *734 - location: *796 - organization: *735 - repository: *736 + alert: *796 + installation: *735 + location: *797 + organization: *736 + repository: *737 sender: *4 required: - location @@ -225600,11 +225638,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *795 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + alert: *796 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225682,11 +225720,11 @@ x-webhooks: type: string enum: - reopened - alert: *795 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + alert: *796 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225764,11 +225802,11 @@ x-webhooks: type: string enum: - resolved - alert: *795 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + alert: *796 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225846,12 +225884,12 @@ x-webhooks: type: string enum: - unassigned - alert: *795 + alert: *796 assignee: *4 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -225929,11 +225967,11 @@ x-webhooks: type: string enum: - validated - alert: *795 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + alert: *796 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -226059,10 +226097,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *736 - enterprise: *733 - installation: *734 - organization: *735 + repository: *737 + enterprise: *734 + installation: *735 + organization: *736 sender: *4 required: - action @@ -226140,11 +226178,11 @@ x-webhooks: type: string enum: - published - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - security_advisory: &797 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + security_advisory: &798 description: The details of the security advisory, including summary, description, and severity. type: object @@ -226315,11 +226353,11 @@ x-webhooks: type: string enum: - updated - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 - security_advisory: *797 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 + security_advisory: *798 sender: *4 required: - action @@ -226392,10 +226430,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -226567,11 +226605,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *296 - enterprise: *733 - installation: *734 - organization: *735 - repository: *344 + security_and_analysis: *297 + enterprise: *734 + installation: *735 + organization: *736 + repository: *345 sender: *4 required: - changes @@ -226649,12 +226687,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - sponsorship: &798 + sponsorship: &799 type: object properties: created_at: @@ -226955,12 +226993,12 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - sponsorship: *798 + sponsorship: *799 required: - action - sponsorship @@ -227048,12 +227086,12 @@ x-webhooks: type: string required: - from - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - sponsorship: *798 + sponsorship: *799 required: - action - changes @@ -227130,17 +227168,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &799 + effective_date: &800 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: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - sponsorship: *798 + sponsorship: *799 required: - action - sponsorship @@ -227214,7 +227252,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &800 + changes: &801 type: object properties: tier: @@ -227258,13 +227296,13 @@ x-webhooks: - from required: - tier - effective_date: *799 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + effective_date: *800 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - sponsorship: *798 + sponsorship: *799 required: - action - changes @@ -227341,13 +227379,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *800 - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + changes: *801 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - sponsorship: *798 + sponsorship: *799 required: - action - changes @@ -227421,10 +227459,10 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -227507,10 +227545,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -227930,15 +227968,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *733 + enterprise: *734 id: description: The unique identifier of the status. type: integer - installation: *734 + installation: *735 name: type: string - organization: *735 - repository: *736 + organization: *736 + repository: *737 sender: *4 sha: description: The Commit SHA. @@ -228053,9 +228091,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *85 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -228145,9 +228183,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *85 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -228237,9 +228275,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *85 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -228329,9 +228367,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *85 - installation: *734 - organization: *735 - repository: *736 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -228408,12 +228446,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - team: &801 + team: &802 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -228636,9 +228674,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 repository: title: Repository description: A git repository @@ -229096,7 +229134,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *801 + team: *802 required: - action - team @@ -229172,9 +229210,9 @@ x-webhooks: type: string enum: - created - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 repository: title: Repository description: A git repository @@ -229632,7 +229670,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *801 + team: *802 required: - action - team @@ -229709,9 +229747,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 repository: title: Repository description: A git repository @@ -230169,7 +230207,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *801 + team: *802 required: - action - team @@ -230313,9 +230351,9 @@ x-webhooks: - from required: - permissions - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 repository: title: Repository description: A git repository @@ -230773,7 +230811,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *801 + team: *802 required: - action - changes @@ -230851,9 +230889,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *733 - installation: *734 - organization: *735 + enterprise: *734 + installation: *735 + organization: *736 repository: title: Repository description: A git repository @@ -231311,7 +231349,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *801 + team: *802 required: - action - team @@ -231387,10 +231425,10 @@ x-webhooks: type: string enum: - started - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 required: - action @@ -231463,16 +231501,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *733 + enterprise: *734 inputs: type: object nullable: true additionalProperties: true - installation: *734 - organization: *735 + installation: *735 + organization: *736 ref: type: string - repository: *736 + repository: *737 sender: *4 workflow: type: string @@ -231554,10 +231592,10 @@ x-webhooks: type: string enum: - completed - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 workflow_job: allOf: @@ -231794,7 +231832,7 @@ x-webhooks: type: string required: - conclusion - deployment: *502 + deployment: *503 required: - action - repository @@ -231873,10 +231911,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 workflow_job: allOf: @@ -232136,7 +232174,7 @@ x-webhooks: required: - status - steps - deployment: *502 + deployment: *503 required: - action - repository @@ -232215,10 +232253,10 @@ x-webhooks: type: string enum: - queued - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 workflow_job: type: object @@ -232353,7 +232391,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *502 + deployment: *503 required: - action - repository @@ -232432,10 +232470,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 workflow_job: type: object @@ -232571,7 +232609,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *502 + deployment: *503 required: - action - repository @@ -232651,12 +232689,12 @@ x-webhooks: type: string enum: - completed - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - workflow: *750 + workflow: *751 workflow_run: title: Workflow Run type: object @@ -233655,12 +233693,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - workflow: *750 + workflow: *751 workflow_run: title: Workflow Run type: object @@ -234644,12 +234682,12 @@ x-webhooks: type: string enum: - requested - enterprise: *733 - installation: *734 - organization: *735 - repository: *736 + enterprise: *734 + installation: *735 + organization: *736 + repository: *737 sender: *4 - workflow: *750 + workflow: *751 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index b44081a9bb..3ba03e93ee 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -2135,7 +2135,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" ], @@ -2228,9 +2228,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", @@ -2793,7 +2794,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" ], @@ -2853,7 +2854,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", @@ -2866,21 +2867,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" } } }, @@ -3343,7 +3329,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" ], @@ -4100,7 +4086,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" ], @@ -4175,9 +4161,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", @@ -4678,7 +4665,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" ], @@ -26020,6 +26007,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", @@ -26352,6 +26347,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.", @@ -118981,6 +118985,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", @@ -119338,6 +119350,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.", @@ -337028,6 +337049,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", @@ -337368,6 +337397,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.", @@ -338734,6 +338772,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.", @@ -339937,6 +339984,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.", @@ -573338,7 +573394,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" ], @@ -796837,6 +796893,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.", @@ -799363,6 +799428,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.", @@ -801889,6 +801963,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.", @@ -804415,6 +804498,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.", @@ -806941,6 +807033,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.", @@ -809467,6 +809568,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.", @@ -811993,6 +812103,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.", @@ -814519,6 +814638,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/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index 7ce6a2267d..d732e4fe1f 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -881,7 +881,7 @@ paths: - subscriptions_url - type - url - type: &331 + type: &332 type: string description: The type of credit the user is receiving. enum: @@ -1074,7 +1074,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &660 + - &661 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1167,7 +1167,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 @@ -1236,8 +1240,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: @@ -2091,7 +2094,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 @@ -2669,7 +2676,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 @@ -2726,8 +2737,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: @@ -3111,7 +3124,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 @@ -4140,7 +4157,7 @@ paths: schema: type: integer default: 30 - - &216 + - &217 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 @@ -4149,7 +4166,7 @@ paths: required: false schema: type: string - - &217 + - &218 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4169,7 +4186,7 @@ paths: application/json: schema: type: array - items: &218 + items: &219 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4249,7 +4266,7 @@ paths: - installation_id - repository_id examples: - default: &219 + default: &220 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4377,7 +4394,7 @@ paths: description: Response content: application/json: - schema: &220 + schema: &221 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4491,7 +4508,7 @@ paths: - request - response examples: - default: &221 + default: &222 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5476,7 +5493,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &295 + properties: &296 id: description: Unique identifier of the repository example: 42 @@ -5927,7 +5944,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &296 + required: &297 - archive_url - assignees_url - blobs_url @@ -6001,7 +6018,7 @@ paths: - watchers_count - created_at - updated_at - x-github-breaking-changes: &297 + x-github-breaking-changes: &298 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -11820,6 +11837,15 @@ paths: parameters: - *40 - &199 + 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 + - &200 name: state in: query description: |- @@ -11828,7 +11854,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &200 + - &201 name: severity in: query description: |- @@ -11837,7 +11863,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &201 + - &202 name: ecosystem in: query description: |- @@ -11846,14 +11872,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &202 + - &203 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 - - &203 + - &204 name: epss_percentage in: query description: |- @@ -11865,7 +11891,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 - - &494 + - &495 name: has in: query description: |- @@ -11879,7 +11905,7 @@ paths: type: string enum: - patch - - &204 + - &205 name: assignee in: query description: |- @@ -11888,7 +11914,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &205 + - &206 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -11898,7 +11924,7 @@ paths: enum: - development - runtime - - &206 + - &207 name: sort in: query description: |- @@ -11924,7 +11950,7 @@ paths: application/json: schema: type: array - items: &207 + items: &208 type: object description: A Dependabot alert. properties: @@ -11991,7 +12017,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &495 + security_advisory: &496 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12072,6 +12098,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 @@ -12272,14 +12305,14 @@ paths: format: date-time readOnly: true nullable: true - auto_dismissed_at: &496 + auto_dismissed_at: &497 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &497 + dismissal_request: &498 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12341,7 +12374,7 @@ paths: - repository additionalProperties: false examples: - default: &208 + default: &209 value: - number: 2 state: dismissed @@ -13677,7 +13710,7 @@ paths: properties: action: type: string - discussion: &754 + discussion: &755 title: Discussion description: A Discussion in a repository. type: object @@ -14044,7 +14077,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &548 + properties: &549 id: type: integer format: int64 @@ -14157,7 +14190,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &279 + properties: &280 url: type: string format: uri @@ -14227,7 +14260,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &280 + required: &281 - closed_issues - creator - description @@ -14306,7 +14339,7 @@ paths: timeline_url: type: string format: uri - type: &242 + type: &243 title: Issue Type description: The type of issue. type: object @@ -14420,7 +14453,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &672 + sub_issues_summary: &673 title: Sub-issues Summary type: object properties: @@ -14507,7 +14540,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &571 + properties: &572 pinned_at: type: string format: date-time @@ -14519,7 +14552,7 @@ paths: properties: *20 required: *21 nullable: true - required: &572 + required: &573 - pinned_at - pinned_by nullable: true @@ -14533,7 +14566,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &673 + issue_dependencies_summary: &674 title: Issue Dependencies Summary type: object properties: @@ -14552,7 +14585,7 @@ paths: - total_blocking issue_field_values: type: array - items: &556 + items: &557 title: Issue Field Value description: A value assigned to an issue field type: object @@ -14613,7 +14646,7 @@ paths: - node_id - data_type - value - required: &549 + required: &550 - assignee - closed_at - comments @@ -14634,7 +14667,7 @@ paths: - user - created_at - updated_at - x-github-breaking-changes: &550 + x-github-breaking-changes: &551 - changeset: deprecate_beta_media_type patch: properties: @@ -14694,7 +14727,7 @@ paths: action: type: string issue: *85 - comment: &544 + comment: &545 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -15358,7 +15391,7 @@ paths: type: string release: allOf: - - &605 + - &606 title: Release description: A release. type: object @@ -15429,7 +15462,7 @@ paths: author: *4 assets: type: array - items: &606 + items: &607 title: Release Asset description: Data related to a release. type: object @@ -16049,7 +16082,7 @@ paths: url: type: string format: uri - user: &679 + user: &680 title: Public User description: Public User type: object @@ -17929,7 +17962,7 @@ paths: - closed - all default: open - - &245 + - &246 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -17980,7 +18013,7 @@ paths: type: array items: *85 examples: - default: &246 + default: &247 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: - - &343 + - &344 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &344 + - &345 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': *29 '304': *37 - '301': &347 + '301': &348 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: - - &581 + - &582 name: all description: If `true`, show notifications marked as read. in: query @@ -19464,7 +19497,7 @@ paths: schema: type: boolean default: false - - &582 + - &583 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 - *92 - - &583 + - &584 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: @@ -19510,7 +19543,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &210 + properties: &211 id: type: integer format: int64 @@ -19796,7 +19829,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &298 + security_and_analysis: &299 nullable: true type: object properties: @@ -19909,7 +19942,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &211 + required: &212 - archive_url - assignees_url - blobs_url @@ -19956,7 +19989,7 @@ paths: - teams_url - trees_url - url - x-github-breaking-changes: &212 + x-github-breaking-changes: &213 - changeset: remove_has_downloads patch: properties: @@ -20003,7 +20036,7 @@ paths: - url - subscription_url examples: - default: &584 + default: &585 value: - id: '1' repository: @@ -21550,7 +21583,7 @@ paths: required: false schema: type: string - - &729 + - &730 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -21696,7 +21729,7 @@ paths: parameters: - *75 - *123 - - &730 + - &731 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 @@ -21808,7 +21841,7 @@ paths: - *123 - *125 - *124 - - &731 + - &732 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -21816,7 +21849,7 @@ paths: schema: type: string - *126 - - &732 + - &733 name: sku description: The SKU to query for usage. in: query @@ -22746,7 +22779,7 @@ paths: type: integer repository_cache_usages: type: array - items: &354 + items: &355 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -24062,7 +24095,7 @@ paths: - all - local_only - selected - selected_actions_url: &360 + selected_actions_url: &361 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` @@ -24145,7 +24178,7 @@ paths: description: Response content: application/json: - schema: &364 + schema: &365 type: object properties: days: @@ -24187,7 +24220,7 @@ paths: required: true content: application/json: - schema: &365 + schema: &366 type: object properties: days: @@ -24244,7 +24277,7 @@ paths: required: - approval_policy examples: - default: &366 + default: &367 value: approval_policy: first_time_contributors '404': *6 @@ -24303,7 +24336,7 @@ paths: description: Response content: application/json: - schema: &367 + schema: &368 type: object required: - run_workflows_from_fork_pull_requests @@ -24357,7 +24390,7 @@ paths: required: true content: application/json: - schema: &368 + schema: &369 type: object required: - run_workflows_from_fork_pull_requests @@ -24992,7 +25025,7 @@ paths: description: Response content: application/json: - schema: &369 + schema: &370 type: object properties: default_workflow_permissions: &153 @@ -25043,7 +25076,7 @@ paths: required: false content: application/json: - schema: &370 + schema: &371 type: object properties: default_workflow_permissions: *153 @@ -26174,7 +26207,7 @@ paths: application/json: schema: type: array - items: &371 + items: &372 title: Runner Application description: Runner Application type: object @@ -26199,7 +26232,7 @@ paths: - download_url - filename examples: - default: &372 + default: &373 value: - os: osx architecture: x64 @@ -26285,7 +26318,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &373 + '201': &374 description: Response content: application/json: @@ -26396,7 +26429,7 @@ paths: - token - expires_at examples: - default: &374 + default: &375 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -26435,7 +26468,7 @@ paths: application/json: schema: *164 examples: - default: &375 + default: &376 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -26469,7 +26502,7 @@ paths: application/json: schema: *162 examples: - default: &376 + default: &377 value: id: 23 name: MBP @@ -26695,7 +26728,7 @@ paths: - *75 - *161 responses: - '200': &377 + '200': &378 description: Response content: application/json: @@ -26752,7 +26785,7 @@ paths: parameters: - *75 - *161 - - &378 + - &379 name: name description: The name of a self-hosted runner's custom label. in: path @@ -26882,7 +26915,7 @@ paths: description: Response content: application/json: - schema: &390 + schema: &391 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -26911,7 +26944,7 @@ paths: - key_id - key examples: - default: &391 + default: &392 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27324,7 +27357,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *75 - - &359 + - &360 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)." @@ -28520,12 +28553,12 @@ paths: required: - subject_digests examples: - default: &711 + default: &712 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &712 + withPredicateType: &713 value: subject_digests: - sha256:abc123 @@ -28583,7 +28616,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &713 + default: &714 value: attestations_subject_digests: - sha256:abc: @@ -28948,7 +28981,7 @@ paths: initiator: type: string examples: - default: &404 + default: &405 value: attestations: - bundle: @@ -29313,7 +29346,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &257 + properties: &258 id: description: Unique identifier of the team type: integer @@ -29385,7 +29418,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &258 + required: &259 - id - node_id - url @@ -29891,7 +29924,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *75 - - &429 + - &430 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`, @@ -29901,7 +29934,7 @@ paths: schema: &185 type: string description: The name of the tool used to generate the code scanning analysis. - - &430 + - &431 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 @@ -29924,7 +29957,7 @@ paths: be returned. in: query required: false - schema: &432 + schema: &433 type: string description: State of a code scanning alert. enum: @@ -29947,7 +29980,7 @@ paths: be returned. in: query required: false - schema: &433 + schema: &434 type: string description: Severity of a code scanning alert. enum: @@ -29981,7 +30014,7 @@ paths: updated_at: *180 url: *181 html_url: *182 - instances_url: &434 + instances_url: &435 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -30004,7 +30037,7 @@ paths: required: *21 nullable: true dismissed_at: *184 - dismissed_reason: &435 + dismissed_reason: &436 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -30013,13 +30046,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &436 + dismissed_comment: &437 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &437 + rule: &438 type: object properties: id: @@ -30072,7 +30105,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &438 + tool: &439 type: object properties: name: *185 @@ -30082,26 +30115,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *186 - most_recent_instance: &439 + most_recent_instance: &440 type: object properties: - ref: &431 + ref: &432 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &449 + analysis_key: &450 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: &450 + environment: &451 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: &451 + category: &452 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -30121,7 +30154,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: &452 + location: &453 type: object description: Describe a region within a file for the alert. properties: @@ -30142,7 +30175,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: &453 + items: &454 type: string description: A classification of the file. For example to identify it as generated. @@ -31433,7 +31466,7 @@ paths: type: integer codespaces: type: array - items: &247 + items: &248 type: object title: Codespace description: A codespace. @@ -31463,7 +31496,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &465 + properties: &466 name: type: string description: The name of the machine. @@ -31505,7 +31538,7 @@ paths: - ready - in_progress nullable: true - required: &466 + required: &467 - name - display_name - operating_system @@ -31710,7 +31743,7 @@ paths: - pulls_url - recent_folders examples: - default: &248 + default: &249 value: total_count: 3 codespaces: @@ -32373,7 +32406,7 @@ paths: - updated_at - visibility examples: - default: &467 + default: &468 value: total_count: 2 secrets: @@ -32411,7 +32444,7 @@ paths: description: Response content: application/json: - schema: &468 + schema: &469 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -32440,7 +32473,7 @@ paths: - key_id - key examples: - default: &469 + default: &470 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32472,7 +32505,7 @@ paths: application/json: schema: *194 examples: - default: &471 + default: &472 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -32939,7 +32972,7 @@ paths: currently being billed. seats: type: array - items: &250 + items: &251 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -33910,7 +33943,7 @@ paths: application/json: schema: type: array - items: &336 + items: &337 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -34217,7 +34250,7 @@ paths: - date additionalProperties: true examples: - default: &337 + default: &338 value: - date: '2024-06-24' total_active_users: 24 @@ -34319,7 +34352,7 @@ paths: '500': *55 '403': *29 '404': *6 - '422': &338 + '422': &339 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -34504,6 +34537,7 @@ paths: - *201 - *202 - *203 + - *204 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -34533,7 +34567,7 @@ paths: enum: - patch - deployment - - *204 + - *205 - name: runtime_risk in: query description: |- @@ -34542,8 +34576,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *205 - *206 + - *207 - *61 - *47 - *48 @@ -34555,9 +34589,9 @@ paths: application/json: schema: type: array - items: *207 + items: *208 examples: - default: *208 + default: *209 '304': *37 '400': *14 '403': *29 @@ -34601,7 +34635,7 @@ paths: type: integer secrets: type: array - items: &209 + items: &210 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -34678,7 +34712,7 @@ paths: description: Response content: application/json: - schema: &500 + schema: &501 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -34695,7 +34729,7 @@ paths: - key_id - key examples: - default: &501 + default: &502 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34725,7 +34759,7 @@ paths: description: Response content: application/json: - schema: *209 + schema: *210 examples: default: value: @@ -35032,7 +35066,7 @@ paths: application/json: schema: type: array - items: &260 + items: &261 title: Package description: A software package type: object @@ -35082,9 +35116,9 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *210 - required: *211 - x-github-breaking-changes: *212 + properties: *211 + required: *212 + x-github-breaking-changes: *213 nullable: true created_at: type: string @@ -35103,7 +35137,7 @@ paths: - created_at - updated_at examples: - default: &261 + default: &262 value: - id: 197 name: hello_docker @@ -35273,7 +35307,7 @@ paths: application/json: schema: type: array - items: &236 + items: &237 title: Organization Invitation description: Organization Invitation type: object @@ -35320,7 +35354,7 @@ paths: - invitation_teams_url - node_id examples: - default: &237 + default: &238 value: - id: 1 login: monalisa @@ -35387,7 +35421,7 @@ paths: application/json: schema: type: array - items: &213 + items: &214 title: Org Hook description: Org Hook type: object @@ -35558,9 +35592,9 @@ paths: description: Response content: application/json: - schema: *213 + schema: *214 examples: - default: &214 + default: &215 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -35608,7 +35642,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *75 - - &215 + - &216 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. @@ -35621,9 +35655,9 @@ paths: description: Response content: application/json: - schema: *213 + schema: *214 examples: - default: *214 + default: *215 '404': *6 x-github: githubCloudOnly: false @@ -35651,7 +35685,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *75 - - *215 + - *216 requestBody: required: false content: @@ -35696,7 +35730,7 @@ paths: description: Response content: application/json: - schema: *213 + schema: *214 examples: default: value: @@ -35738,7 +35772,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *75 - - *215 + - *216 responses: '204': description: Response @@ -35766,7 +35800,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *75 - - *215 + - *216 responses: '200': description: Response @@ -35797,7 +35831,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *75 - - *215 + - *216 requestBody: required: false content: @@ -35848,10 +35882,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *75 - - *215 - - *17 - *216 + - *17 - *217 + - *218 responses: '200': description: Response @@ -35859,9 +35893,9 @@ paths: application/json: schema: type: array - items: *218 + items: *219 examples: - default: *219 + default: *220 '400': *14 '422': *15 x-github: @@ -35887,16 +35921,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *75 - - *215 + - *216 - *16 responses: '200': description: Response content: application/json: - schema: *220 + schema: *221 examples: - default: *221 + default: *222 '400': *14 '422': *15 x-github: @@ -35922,7 +35956,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *75 - - *215 + - *216 - *16 responses: '202': *39 @@ -35952,7 +35986,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *75 - - *215 + - *216 responses: '204': description: Response @@ -35975,7 +36009,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *75 - - &226 + - &227 name: actor_type in: path description: The type of the actor @@ -35988,14 +36022,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &227 + - &228 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &222 + - &223 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`.' @@ -36003,7 +36037,7 @@ paths: required: true schema: type: string - - &223 + - &224 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) @@ -36097,12 +36131,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *75 - - *222 - *223 + - *224 - *19 - *17 - *61 - - &232 + - &233 name: sort description: The property to sort the results by. in: query @@ -36180,14 +36214,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *75 - - *222 - *223 + - *224 responses: '200': description: Response content: application/json: - schema: &224 + schema: &225 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -36203,7 +36237,7 @@ paths: type: integer format: int64 examples: - default: &225 + default: &226 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -36224,23 +36258,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *75 - - &228 + - &229 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *222 - *223 + - *224 responses: '200': description: Response content: application/json: - schema: *224 + schema: *225 examples: - default: *225 + default: *226 x-github: enabledForGitHubApps: true category: orgs @@ -36259,18 +36293,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *75 - - *222 - *223 - - *226 + - *224 - *227 + - *228 responses: '200': description: Response content: application/json: - schema: *224 + schema: *225 examples: - default: *225 + default: *226 x-github: enabledForGitHubApps: true category: orgs @@ -36288,9 +36322,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *75 - - *222 - *223 - - &229 + - *224 + - &230 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -36303,7 +36337,7 @@ paths: description: Response content: application/json: - schema: &230 + schema: &231 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -36319,7 +36353,7 @@ paths: type: integer format: int64 examples: - default: &231 + default: &232 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -36356,18 +36390,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *75 - - *228 - - *222 - - *223 - *229 + - *223 + - *224 + - *230 responses: '200': description: Response content: application/json: - schema: *230 + schema: *231 examples: - default: *231 + default: *232 x-github: enabledForGitHubApps: true category: orgs @@ -36385,19 +36419,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *75 - - *226 - *227 - - *222 + - *228 - *223 - - *229 + - *224 + - *230 responses: '200': description: Response content: application/json: - schema: *230 + schema: *231 examples: - default: *231 + default: *232 x-github: enabledForGitHubApps: true category: orgs @@ -36415,13 +36449,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *75 - - *228 - - *222 + - *229 - *223 + - *224 - *19 - *17 - *61 - - *232 + - *233 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -36502,7 +36536,7 @@ paths: application/json: schema: *22 examples: - default: &539 + default: &540 value: id: 1 account: @@ -36668,12 +36702,12 @@ paths: application/json: schema: anyOf: - - &234 + - &235 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &233 + limit: &234 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -36698,7 +36732,7 @@ paths: properties: {} additionalProperties: false examples: - default: &235 + default: &236 value: limit: collaborators_only origin: organization @@ -36727,13 +36761,13 @@ paths: required: true content: application/json: - schema: &540 + schema: &541 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *233 + limit: *234 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -36757,9 +36791,9 @@ paths: description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *235 + default: *236 '422': *15 x-github: githubCloudOnly: false @@ -36835,9 +36869,9 @@ paths: application/json: schema: type: array - items: *236 + items: *237 examples: - default: *237 + default: *238 headers: Link: *67 '404': *6 @@ -36914,7 +36948,7 @@ paths: description: Response content: application/json: - schema: *236 + schema: *237 examples: default: value: @@ -36969,7 +37003,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *75 - - &238 + - &239 name: invitation_id description: The unique identifier of the invitation. in: path @@ -37000,7 +37034,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *75 - - *238 + - *239 - *17 - *19 responses: @@ -37012,7 +37046,7 @@ paths: type: array items: *197 examples: - default: &259 + default: &260 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -37055,7 +37089,7 @@ paths: application/json: schema: type: array - items: &239 + items: &240 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -37288,9 +37322,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *240 examples: - default: &240 + default: &241 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -37346,7 +37380,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *75 - - &241 + - &242 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -37445,9 +37479,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *240 examples: - default: *240 + default: *241 '404': *6 '422': *7 x-github: @@ -37472,7 +37506,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *75 - - *241 + - *242 responses: '204': *191 '404': *6 @@ -37502,7 +37536,7 @@ paths: application/json: schema: type: array - items: *242 + items: *243 examples: default: value: @@ -37587,9 +37621,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *243 examples: - default: &243 + default: &244 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -37622,7 +37656,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *75 - - &244 + - &245 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -37675,9 +37709,9 @@ paths: description: Response content: application/json: - schema: *242 + schema: *243 examples: - default: *243 + default: *244 '404': *6 '422': *7 x-github: @@ -37702,7 +37736,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *75 - - *244 + - *245 responses: '204': description: Response @@ -37765,7 +37799,7 @@ paths: - closed - all default: open - - *245 + - *246 - name: type description: Can be the name of an issue type. in: query @@ -37796,7 +37830,7 @@ paths: type: array items: *85 examples: - default: *246 + default: *247 headers: Link: *67 '404': *6 @@ -37961,9 +37995,9 @@ paths: type: integer codespaces: type: array - items: *247 + items: *248 examples: - default: *248 + default: *249 '304': *37 '500': *55 '401': *25 @@ -37990,7 +38024,7 @@ paths: parameters: - *75 - *71 - - &249 + - &250 name: codespace_name in: path required: true @@ -38025,15 +38059,15 @@ paths: parameters: - *75 - *71 - - *249 + - *250 responses: '200': description: Response content: application/json: - schema: *247 + schema: *248 examples: - default: &464 + default: &465 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -38213,7 +38247,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -38289,7 +38323,7 @@ paths: description: Response content: application/json: - schema: &251 + schema: &252 title: Org Membership description: Org Membership type: object @@ -38356,7 +38390,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &252 + response-if-user-has-an-active-admin-membership-with-organization: &253 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -38457,9 +38491,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - response-if-user-already-had-membership-with-organization: *252 + response-if-user-already-had-membership-with-organization: *253 '422': *15 '403': *29 x-github: @@ -38536,7 +38570,7 @@ paths: application/json: schema: type: array - items: &253 + items: &254 title: Migration description: A migration. type: object @@ -38876,7 +38910,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *254 examples: default: value: @@ -39055,7 +39089,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *75 - - &254 + - &255 name: migration_id description: The unique identifier of the migration. in: path @@ -39082,7 +39116,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *253 + schema: *254 examples: default: value: @@ -39252,7 +39286,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *75 - - *254 + - *255 responses: '302': description: Response @@ -39274,7 +39308,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *75 - - *254 + - *255 responses: '204': description: Response @@ -39298,8 +39332,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *75 - - *254 - - &694 + - *255 + - &695 name: repo_name description: repo_name parameter in: path @@ -39327,7 +39361,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *75 - - *254 + - *255 - *17 - *19 responses: @@ -39339,7 +39373,7 @@ paths: type: array items: *160 examples: - default: &266 + default: &267 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -39512,7 +39546,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &256 + items: &257 title: Organization Role description: Organization roles type: object @@ -39687,7 +39721,7 @@ paths: parameters: - *75 - *77 - - &255 + - &256 name: role_id description: The unique identifier of the role. in: path @@ -39724,7 +39758,7 @@ paths: parameters: - *75 - *77 - - *255 + - *256 responses: '204': description: Response @@ -39777,7 +39811,7 @@ paths: parameters: - *75 - *71 - - *255 + - *256 responses: '204': description: Response @@ -39809,7 +39843,7 @@ paths: parameters: - *75 - *71 - - *255 + - *256 responses: '204': description: Response @@ -39838,13 +39872,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *75 - - *255 + - *256 responses: '200': description: Response content: application/json: - schema: *256 + schema: *257 examples: default: value: @@ -39895,7 +39929,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *75 - - *255 + - *256 - *17 - *19 responses: @@ -39973,8 +40007,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *257 - required: *258 + properties: *258 + required: *259 nullable: true type: description: The ownership type of the team @@ -40006,7 +40040,7 @@ paths: - type - parent examples: - default: *259 + default: *260 headers: Link: *67 '404': @@ -40036,7 +40070,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *75 - - *255 + - *256 - *17 - *19 responses: @@ -40064,13 +40098,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &332 + items: &333 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *257 - required: *258 + properties: *258 + required: *259 name: nullable: true type: string @@ -40358,7 +40392,7 @@ paths: - nuget - container - *75 - - &695 + - &696 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -40394,12 +40428,12 @@ paths: application/json: schema: type: array - items: *260 + items: *261 examples: - default: *261 + default: *262 '403': *29 '401': *25 - '400': &697 + '400': &698 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -40421,7 +40455,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &262 + - &263 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 @@ -40439,7 +40473,7 @@ paths: - docker - nuget - container - - &263 + - &264 name: package_name description: The name of the package. in: path @@ -40452,7 +40486,7 @@ paths: description: Response content: application/json: - schema: *260 + schema: *261 examples: default: value: @@ -40504,8 +40538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *262 - *263 + - *264 - *75 responses: '204': @@ -40538,8 +40572,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *262 - *263 + - *264 - *75 - name: token description: package token @@ -40572,8 +40606,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: - - *262 - *263 + - *264 - *75 - *19 - *17 @@ -40594,7 +40628,7 @@ paths: application/json: schema: type: array - items: &264 + items: &265 title: Package Version description: A version of a software package type: object @@ -40719,10 +40753,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *262 - *263 + - *264 - *75 - - &265 + - &266 name: package_version_id description: Unique identifier of the package version. in: path @@ -40734,7 +40768,7 @@ paths: description: Response content: application/json: - schema: *264 + schema: *265 examples: default: value: @@ -40770,10 +40804,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *262 - *263 + - *264 - *75 - - *265 + - *266 responses: '204': description: Response @@ -40805,10 +40839,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *262 - *263 + - *264 - *75 - - *265 + - *266 responses: '204': description: Response @@ -40838,7 +40872,7 @@ paths: - *75 - *17 - *19 - - &267 + - &268 name: sort description: The property by which to sort the results. in: query @@ -40849,7 +40883,7 @@ paths: - created_at default: created_at - *61 - - &268 + - &269 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -40860,7 +40894,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &269 + - &270 name: repository description: The name of the repository to use to filter the results. in: query @@ -40868,7 +40902,7 @@ paths: schema: type: string example: Hello-World - - &270 + - &271 name: permission description: The permission to use to filter the results. in: query @@ -40876,7 +40910,7 @@ paths: schema: type: string example: issues_read - - &271 + - &272 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) @@ -40886,7 +40920,7 @@ paths: schema: type: string format: date-time - - &272 + - &273 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) @@ -40896,7 +40930,7 @@ paths: schema: type: string format: date-time - - &273 + - &274 name: token_id description: The ID of the token in: query @@ -41209,7 +41243,7 @@ paths: type: array items: *160 examples: - default: *266 + default: *267 headers: Link: *67 x-github: @@ -41235,14 +41269,14 @@ paths: - *75 - *17 - *19 - - *267 - - *61 - *268 + - *61 - *269 - *270 - *271 - *272 - *273 + - *274 responses: '500': *55 '422': *15 @@ -41524,7 +41558,7 @@ paths: type: array items: *160 examples: - default: *266 + default: *267 headers: Link: *67 x-github: @@ -41566,7 +41600,7 @@ paths: type: integer configurations: type: array - items: &274 + items: &275 title: Organization private registry description: Private registry configuration for an organization type: object @@ -41994,7 +42028,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &275 + org-private-registry-with-selected-visibility: &276 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -42090,9 +42124,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *274 + schema: *275 examples: - default: *275 + default: *276 '404': *6 x-github: githubCloudOnly: false @@ -42319,7 +42353,7 @@ paths: application/json: schema: type: array - items: &276 + items: &277 title: Projects v2 Project description: A projects v2 project type: object @@ -42389,7 +42423,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &786 + properties: &787 id: type: number description: The unique identifier of the status update. @@ -42437,7 +42471,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &787 + required: &788 - id - node_id - created_at @@ -42462,7 +42496,7 @@ paths: - deleted_at - deleted_by examples: - default: &277 + default: &278 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -42565,7 +42599,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &278 + - &279 name: project_number description: The project's number. in: path @@ -42578,9 +42612,9 @@ paths: description: Response content: application/json: - schema: *276 + schema: *277 examples: - default: *277 + default: *278 headers: Link: *67 '304': *37 @@ -42603,7 +42637,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *75 - - *278 + - *279 requestBody: required: true description: Details of the draft item to create in the project. @@ -42637,7 +42671,7 @@ paths: description: Response content: application/json: - schema: &284 + schema: &285 title: Projects v2 Item description: An item belonging to a project type: object @@ -42651,7 +42685,7 @@ paths: content: oneOf: - *85 - - &481 + - &482 title: Pull Request Simple description: Pull Request Simple type: object @@ -42757,8 +42791,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *279 - required: *280 + properties: *280 + required: *281 nullable: true active_lock_reason: type: string @@ -42851,7 +42885,7 @@ paths: _links: type: object properties: - comments: &281 + comments: &282 title: Link description: Hypermedia Link type: object @@ -42860,13 +42894,13 @@ paths: type: string required: - href - commits: *281 - statuses: *281 - html: *281 - issue: *281 - review_comments: *281 - review_comment: *281 - self: *281 + commits: *282 + statuses: *282 + html: *282 + issue: *282 + review_comments: *282 + review_comment: *282 + self: *282 required: - comments - commits @@ -42877,7 +42911,7 @@ paths: - review_comment - self author_association: *82 - auto_merge: &591 + auto_merge: &592 title: Auto merge description: The status of auto merging a pull request. type: object @@ -43051,7 +43085,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &283 + content_type: &284 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -43091,7 +43125,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &285 + draft_issue: &286 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -43165,7 +43199,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *278 + - *279 - *75 - *17 - *47 @@ -43177,7 +43211,7 @@ paths: application/json: schema: type: array - items: &282 + items: &283 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -43327,7 +43361,7 @@ paths: - updated_at - project_url examples: - default: &716 + default: &717 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43457,7 +43491,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *278 + - *279 - *75 requestBody: required: true @@ -43504,7 +43538,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &717 + items: &718 type: object properties: name: @@ -43541,7 +43575,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &718 + iteration_configuration: &719 type: object description: The configuration for iteration fields. properties: @@ -43591,7 +43625,7 @@ paths: value: name: Due date data_type: date - single_select_field: &719 + single_select_field: &720 summary: Create a single select field value: name: Priority @@ -43618,7 +43652,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &720 + iteration_field: &721 summary: Create an iteration field value: name: Sprint @@ -43642,9 +43676,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *282 + schema: *283 examples: - text_field: &721 + text_field: &722 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -43653,7 +43687,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: &722 + number_field: &723 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -43662,7 +43696,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: &723 + date_field: &724 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -43671,7 +43705,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: &724 + single_select_field: &725 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43705,7 +43739,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &725 + iteration_field: &726 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -43750,8 +43784,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *278 - - &726 + - *279 + - &727 name: field_id description: The unique identifier of the field. in: path @@ -43764,9 +43798,9 @@ paths: description: Response content: application/json: - schema: *282 + schema: *283 examples: - default: &727 + default: &728 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43822,7 +43856,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *278 + - *279 - *75 - 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) @@ -43855,7 +43889,7 @@ paths: application/json: schema: type: array - items: &286 + items: &287 title: Projects v2 Item description: An item belonging to a project type: object @@ -43871,7 +43905,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *283 + content_type: *284 content: type: object additionalProperties: true @@ -43914,7 +43948,7 @@ paths: - updated_at - archived_at examples: - default: &287 + default: &288 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -44612,7 +44646,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *75 - - *278 + - *279 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -44682,22 +44716,22 @@ paths: description: Response content: application/json: - schema: *284 + schema: *285 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *285 + value: *286 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *285 + value: *286 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *285 + value: *286 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *285 + value: *286 '304': *37 '403': *29 '401': *25 @@ -44717,9 +44751,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *278 + - *279 - *75 - - &288 + - &289 name: item_id description: The unique identifier of the project item. in: path @@ -44745,9 +44779,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: - default: *287 + default: *288 headers: Link: *67 '304': *37 @@ -44768,9 +44802,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *278 + - *279 - *75 - - *288 + - *289 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -44840,13 +44874,13 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: - text_field: *287 - number_field: *287 - date_field: *287 - single_select_field: *287 - iteration_field: *287 + text_field: *288 + number_field: *288 + date_field: *288 + single_select_field: *288 + iteration_field: *288 '401': *25 '403': *29 '404': *6 @@ -44866,9 +44900,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *278 + - *279 - *75 - - *288 + - *289 responses: '204': description: Response @@ -44892,7 +44926,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *75 - - *278 + - *279 requestBody: required: true content: @@ -44963,7 +44997,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &708 + schema: &709 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -45061,7 +45095,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &289 + value: &290 value: id: 1 number: 1 @@ -45107,10 +45141,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *289 + value: *290 roadmap_view: summary: Response for creating a roadmap view - value: *289 + value: *290 '304': *37 '403': *29 '401': *25 @@ -45138,9 +45172,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *278 + - *279 - *75 - - &728 + - &729 name: view_number description: The number that identifies the project view. in: path @@ -45172,9 +45206,9 @@ paths: application/json: schema: type: array - items: *286 + items: *287 examples: - default: *287 + default: *288 headers: Link: *67 '304': *37 @@ -45207,7 +45241,7 @@ paths: application/json: schema: type: array - items: &290 + items: &291 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -45275,7 +45309,7 @@ paths: - property_name - value_type examples: - default: &291 + default: &292 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -45335,7 +45369,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *290 + items: *291 minItems: 1 maxItems: 100 required: @@ -45365,9 +45399,9 @@ paths: application/json: schema: type: array - items: *290 + items: *291 examples: - default: *291 + default: *292 '403': *29 '404': *6 x-github: @@ -45389,7 +45423,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *75 - - &292 + - &293 name: custom_property_name description: The custom property name in: path @@ -45401,9 +45435,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *291 examples: - default: &293 + default: &294 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -45438,7 +45472,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *75 - - *292 + - *293 requestBody: required: true content: @@ -45509,9 +45543,9 @@ paths: description: Response content: application/json: - schema: *290 + schema: *291 examples: - default: *293 + default: *294 '403': *29 '404': *6 x-github: @@ -45535,7 +45569,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *75 - - *292 + - *293 responses: '204': *191 '403': *29 @@ -45596,7 +45630,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &294 + items: &295 title: Custom Property Value description: Custom property name and associated value type: object @@ -45683,7 +45717,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *294 + items: *295 required: - repository_names - properties @@ -45875,7 +45909,7 @@ paths: type: array items: *160 examples: - default: *266 + default: *267 headers: Link: *67 x-github: @@ -46077,7 +46111,7 @@ paths: description: Response content: application/json: - schema: &346 + schema: &347 title: Full Repository description: Full Repository type: object @@ -46365,9 +46399,9 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *295 - required: *296 - x-github-breaking-changes: *297 + properties: *296 + required: *297 + x-github-breaking-changes: *298 nullable: true temp_clone_token: type: string @@ -46482,7 +46516,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &486 + properties: &487 url: type: string format: uri @@ -46498,12 +46532,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &487 + required: &488 - url - key - name - html_url - security_and_analysis: *298 + security_and_analysis: *299 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -46598,7 +46632,7 @@ paths: has_downloads: version: '2026-03-10' examples: - default: &348 + default: &349 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -47125,7 +47159,7 @@ paths: - *75 - *17 - *19 - - &613 + - &614 name: targets description: | A comma-separated list of rule targets to filter by. @@ -47143,7 +47177,7 @@ paths: application/json: schema: type: array - items: &325 + items: &326 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -47178,7 +47212,7 @@ paths: source: type: string description: The name of the source - enforcement: &301 + enforcement: &302 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -47191,7 +47225,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &302 + items: &303 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -47261,7 +47295,7 @@ paths: conditions: nullable: true anyOf: - - &299 + - &300 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -47285,7 +47319,7 @@ paths: match. items: type: string - - &303 + - &304 title: Organization ruleset conditions type: object description: |- @@ -47299,7 +47333,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *299 + - *300 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -47333,7 +47367,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *299 + - *300 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -47355,7 +47389,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *299 + - *300 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -47368,7 +47402,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &300 + items: &301 title: Repository ruleset property targeting definition type: object @@ -47401,17 +47435,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *300 + items: *301 required: - repository_property rules: type: array - items: &614 + items: &615 title: Repository Rule type: object description: A repository rule. oneOf: - - &304 + - &305 title: creation description: Only allow users with bypass permission to create matching refs. @@ -47423,7 +47457,7 @@ paths: type: string enum: - creation - - &305 + - &306 title: update description: Only allow users with bypass permission to update matching refs. @@ -47444,7 +47478,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &306 + - &307 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -47456,7 +47490,7 @@ paths: type: string enum: - deletion - - &307 + - &308 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -47468,7 +47502,7 @@ paths: type: string enum: - required_linear_history - - &612 + - &613 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -47546,7 +47580,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &308 + - &309 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -47570,7 +47604,7 @@ paths: type: string required: - required_deployment_environments - - &309 + - &310 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -47582,7 +47616,7 @@ paths: type: string enum: - required_signatures - - &310 + - &311 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -47688,7 +47722,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &311 + - &312 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -47736,7 +47770,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &312 + - &313 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -47748,7 +47782,7 @@ paths: type: string enum: - non_fast_forward - - &313 + - &314 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -47785,7 +47819,7 @@ paths: required: - operator - pattern - - &314 + - &315 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -47822,7 +47856,7 @@ paths: required: - operator - pattern - - &315 + - &316 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -47859,7 +47893,7 @@ paths: required: - operator - pattern - - &316 + - &317 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -47896,7 +47930,7 @@ paths: required: - operator - pattern - - &317 + - &318 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -47933,7 +47967,7 @@ paths: required: - operator - pattern - - &318 + - &319 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -47958,7 +47992,7 @@ paths: type: string required: - restricted_file_paths - - &319 + - &320 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -47982,7 +48016,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &320 + - &321 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -48005,7 +48039,7 @@ paths: type: string required: - restricted_file_extensions - - &321 + - &322 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -48030,7 +48064,7 @@ paths: maximum: 100 required: - max_file_size - - &322 + - &323 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -48080,7 +48114,7 @@ paths: - repository_id required: - workflows - - &323 + - &324 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -48141,7 +48175,7 @@ paths: - tool required: - code_scanning_tools - - &324 + - &325 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -48240,21 +48274,20 @@ paths: - push - repository default: branch - enforcement: *301 + enforcement: *302 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *302 - conditions: *303 + items: *303 + conditions: *304 rules: type: array description: An array of rules within the ruleset. - items: &327 + items: &328 title: Repository Rule type: object description: A repository rule. oneOf: - - *304 - *305 - *306 - *307 @@ -48275,6 +48308,7 @@ paths: - *322 - *323 - *324 + - *325 required: - name - enforcement @@ -48312,9 +48346,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *326 examples: - default: &326 + default: &327 value: id: 21 name: super cool ruleset @@ -48370,7 +48404,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *75 - - &615 + - &616 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 @@ -48385,7 +48419,7 @@ paths: in: query schema: type: string - - &616 + - &617 name: time_period description: |- The time period to filter by. @@ -48401,14 +48435,14 @@ paths: - week - month default: day - - &617 + - &618 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 - - &618 + - &619 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -48428,7 +48462,7 @@ paths: description: Response content: application/json: - schema: &619 + schema: &620 title: Rule Suites description: Response type: array @@ -48483,7 +48517,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &620 + default: &621 value: - id: 21 actor_id: 12 @@ -48527,7 +48561,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *75 - - &621 + - &622 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -48543,7 +48577,7 @@ paths: description: Response content: application/json: - schema: &622 + schema: &623 title: Rule Suite description: Response type: object @@ -48642,7 +48676,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &623 + default: &624 value: id: 21 actor_id: 12 @@ -48715,9 +48749,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *326 examples: - default: *326 + default: *327 '404': *6 '500': *55 put: @@ -48761,16 +48795,16 @@ paths: - tag - push - repository - enforcement: *301 + enforcement: *302 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *302 - conditions: *303 + items: *303 + conditions: *304 rules: description: An array of rules within the ruleset. type: array - items: *327 + items: *328 examples: default: value: @@ -48805,9 +48839,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *326 examples: - default: *326 + default: *327 '404': *6 '422': *15 '500': *55 @@ -48865,7 +48899,7 @@ paths: application/json: schema: type: array - items: &328 + items: &329 title: Ruleset version type: object description: The historical version of a ruleset @@ -48889,7 +48923,7 @@ paths: type: string format: date-time examples: - default: &625 + default: &626 value: - version_id: 3 actor: @@ -48942,9 +48976,9 @@ paths: description: Response content: application/json: - schema: &626 + schema: &627 allOf: - - *328 + - *329 - type: object required: - state @@ -49014,7 +49048,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *75 - - &627 + - &628 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -49025,7 +49059,7 @@ paths: enum: - open - resolved - - &628 + - &629 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -49035,7 +49069,7 @@ paths: required: false schema: type: string - - &629 + - &630 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -49044,7 +49078,7 @@ paths: required: false schema: type: string - - &630 + - &631 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -49063,7 +49097,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &631 + - &632 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. @@ -49078,7 +49112,7 @@ paths: - *61 - *19 - *17 - - &632 + - &633 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 @@ -49088,7 +49122,7 @@ paths: required: false schema: type: string - - &633 + - &634 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 @@ -49098,7 +49132,7 @@ paths: required: false schema: type: string - - &634 + - &635 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -49107,7 +49141,7 @@ paths: required: false schema: type: string - - &635 + - &636 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -49116,7 +49150,7 @@ paths: schema: type: boolean default: false - - &636 + - &637 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -49125,7 +49159,7 @@ paths: schema: type: boolean default: false - - &637 + - &638 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -49160,14 +49194,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &638 + state: &639 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: &639 + resolution: &640 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -49274,8 +49308,8 @@ paths: pull request. ' - oneOf: &640 - - &642 + oneOf: &641 + - &643 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -49333,7 +49367,7 @@ paths: - blob_url - commit_sha - commit_url - - &643 + - &644 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. @@ -49388,7 +49422,7 @@ paths: - page_url - commit_sha - commit_url - - &644 + - &645 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -49408,7 +49442,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &645 + - &646 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -49428,7 +49462,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &646 + - &647 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -49448,7 +49482,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &647 + - &648 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -49462,7 +49496,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &648 + - &649 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -49476,7 +49510,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &649 + - &650 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -49490,7 +49524,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &650 + - &651 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. @@ -49510,7 +49544,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &651 + - &652 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. @@ -49530,7 +49564,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &652 + - &653 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. @@ -49550,7 +49584,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &653 + - &654 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. @@ -49570,7 +49604,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &654 + - &655 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 request. @@ -49833,7 +49867,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &330 + pattern_config_version: &331 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -49842,7 +49876,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &329 + items: &330 type: object properties: token_type: @@ -49908,7 +49942,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *329 + items: *330 examples: default: value: @@ -49965,7 +49999,7 @@ paths: schema: type: object properties: - pattern_config_version: *330 + pattern_config_version: *331 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -49991,7 +50025,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *330 + custom_pattern_version: *331 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -50089,7 +50123,7 @@ paths: application/json: schema: type: array - items: &658 + items: &659 description: A repository security advisory. type: object properties: @@ -50309,7 +50343,7 @@ paths: login: type: string description: The username of the user credited. - type: *331 + type: *332 credits_detailed: type: array nullable: true @@ -50319,7 +50353,7 @@ paths: type: object properties: user: *4 - type: *331 + type: *332 state: type: string description: The state of the user's acceptance of the @@ -50412,7 +50446,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &659 + default: &660 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -50799,7 +50833,7 @@ paths: application/json: schema: type: array - items: *332 + items: *333 examples: default: value: @@ -51152,7 +51186,7 @@ paths: type: integer network_configurations: type: array - items: &333 + items: &334 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -51298,9 +51332,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: &334 + default: &335 value: id: 123456789ABCDEF name: My network configuration @@ -51329,7 +51363,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *75 - - &335 + - &336 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -51341,9 +51375,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 headers: Link: *67 x-github: @@ -51365,7 +51399,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *75 - - *335 + - *336 requestBody: required: true content: @@ -51418,9 +51452,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51440,7 +51474,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *75 - - *335 + - *336 responses: '204': description: Response @@ -51580,13 +51614,13 @@ paths: application/json: schema: type: array - items: *336 + items: *337 examples: - default: *337 + default: *338 '500': *55 '403': *29 '404': *6 - '422': *338 + '422': *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51628,7 +51662,7 @@ paths: type: array items: *197 examples: - default: *259 + default: *260 headers: Link: *67 '403': *29 @@ -51722,7 +51756,7 @@ paths: description: Response content: application/json: - schema: &339 + schema: &340 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -51785,8 +51819,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *257 - required: *258 + properties: *258 + required: *259 nullable: true members_count: type: integer @@ -52049,7 +52083,7 @@ paths: - repos_count - organization examples: - default: &340 + default: &341 value: id: 1 node_id: MDQ6VGVhbTE= @@ -52137,9 +52171,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '404': *6 x-github: githubCloudOnly: false @@ -52223,16 +52257,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '201': description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '404': *6 '422': *15 '403': *29 @@ -52262,7 +52296,7 @@ paths: responses: '204': description: Response - '422': &341 + '422': &342 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -52296,12 +52330,12 @@ paths: application/json: schema: type: array - items: *236 + items: *237 examples: - default: *237 + default: *238 headers: Link: *67 - '422': *341 + '422': *342 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52383,7 +52417,7 @@ paths: description: Response content: application/json: - schema: &342 + schema: &343 title: Team Membership description: Team Membership type: object @@ -52410,7 +52444,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &675 + response-if-user-is-a-team-maintainer: &676 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -52473,9 +52507,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: - response-if-users-membership-with-team-is-now-pending: &676 + response-if-users-membership-with-team-is-now-pending: &677 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -52551,7 +52585,7 @@ paths: type: array items: *160 examples: - default: *266 + default: *267 headers: Link: *67 x-github: @@ -52582,14 +52616,14 @@ paths: parameters: - *75 - *77 - - *343 - *344 + - *345 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &677 + schema: &678 title: Team Repository description: A team's access to a repository. type: object @@ -53239,8 +53273,8 @@ paths: parameters: - *75 - *77 - - *343 - *344 + - *345 requestBody: required: false content: @@ -53287,8 +53321,8 @@ paths: parameters: - *75 - *77 - - *343 - *344 + - *345 responses: '204': description: Response @@ -53325,7 +53359,7 @@ paths: type: array items: *197 examples: - response-if-child-teams-exist: &678 + response-if-child-teams-exist: &679 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -53479,7 +53513,7 @@ paths: resources: type: object properties: - core: &345 + core: &346 title: Rate Limit type: object properties: @@ -53496,21 +53530,21 @@ paths: - remaining - reset - used - graphql: *345 - search: *345 - code_search: *345 - source_import: *345 - integration_manifest: *345 - code_scanning_upload: *345 - actions_runner_registration: *345 - scim: *345 - dependency_snapshots: *345 - dependency_sbom: *345 - code_scanning_autofix: *345 + graphql: *346 + search: *346 + code_search: *346 + source_import: *346 + integration_manifest: *346 + code_scanning_upload: *346 + actions_runner_registration: *346 + scim: *346 + dependency_snapshots: *346 + dependency_sbom: *346 + code_scanning_autofix: *346 required: - core - search - rate: *345 + rate: *346 required: - rate - resources @@ -53623,14 +53657,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *346 + schema: *347 examples: default-response: summary: Default response @@ -54135,7 +54169,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *347 + '301': *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54153,8 +54187,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *343 - *344 + - *345 requestBody: required: false content: @@ -54445,10 +54479,10 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *348 - '307': &349 + default: *349 + '307': &350 description: Temporary Redirect content: application/json: @@ -54477,8 +54511,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -54500,7 +54534,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *349 + '307': *350 '404': *6 '409': *54 x-github: @@ -54524,11 +54558,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *343 - *344 + - *345 - *17 - *19 - - &382 + - &383 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -54551,7 +54585,7 @@ paths: type: integer artifacts: type: array - items: &350 + items: &351 title: Artifact description: An artifact type: object @@ -54629,7 +54663,7 @@ paths: - expires_at - updated_at examples: - default: &383 + default: &384 value: total_count: 2 artifacts: @@ -54690,9 +54724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *343 - *344 - - &351 + - *345 + - &352 name: artifact_id description: The unique identifier of the artifact. in: path @@ -54704,7 +54738,7 @@ paths: description: Response content: application/json: - schema: *350 + schema: *351 examples: default: value: @@ -54742,9 +54776,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *343 - *344 - - *351 + - *345 + - *352 responses: '204': description: Response @@ -54768,9 +54802,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *343 - *344 - - *351 + - *345 + - *352 - name: archive_format in: path required: true @@ -54784,7 +54818,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': &543 + '410': &544 description: Gone content: application/json: @@ -54809,14 +54843,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &352 + schema: &353 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -54849,13 +54883,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *343 - *344 + - *345 requestBody: required: true content: application/json: - schema: *352 + schema: *353 examples: selected_actions: *42 responses: @@ -54884,14 +54918,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &353 + schema: &354 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -54924,13 +54958,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *343 - *344 + - *345 requestBody: required: true content: application/json: - schema: *353 + schema: *354 examples: selected_actions: *44 responses: @@ -54961,14 +54995,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *354 + schema: *355 examples: default: value: @@ -54994,11 +55028,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *343 - *344 + - *345 - *17 - *19 - - &355 + - &356 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 @@ -55032,7 +55066,7 @@ paths: description: Response content: application/json: - schema: &356 + schema: &357 title: Repository actions caches description: Repository actions caches type: object @@ -55074,7 +55108,7 @@ paths: - total_count - actions_caches examples: - default: &357 + default: &358 value: total_count: 1 actions_caches: @@ -55106,23 +55140,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: - - *343 - *344 + - *345 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *355 + - *356 responses: '200': description: Response content: application/json: - schema: *356 + schema: *357 examples: - default: *357 + default: *358 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55142,8 +55176,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: - - *343 - *344 + - *345 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -55174,9 +55208,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *343 - *344 - - &358 + - *345 + - &359 name: job_id description: The unique identifier of the job. in: path @@ -55188,7 +55222,7 @@ paths: description: Response content: application/json: - schema: &386 + schema: &387 title: Job description: Information of a job execution in a workflow run type: object @@ -55495,9 +55529,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *343 - *344 - - *358 + - *345 + - *359 responses: '302': description: Response @@ -55525,9 +55559,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *343 - *344 - - *358 + - *345 + - *359 requestBody: required: false content: @@ -55572,8 +55606,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: - - *343 - *344 + - *345 responses: '200': description: Status response @@ -55623,8 +55657,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: - - *343 - *344 + - *345 requestBody: required: true content: @@ -55687,8 +55721,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -55706,7 +55740,7 @@ paths: type: integer secrets: type: array - items: &388 + items: &389 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -55726,7 +55760,7 @@ paths: - created_at - updated_at examples: - default: &389 + default: &390 value: total_count: 2 secrets: @@ -55759,9 +55793,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *343 - *344 - - *359 + - *345 + - *360 - *19 responses: '200': @@ -55778,7 +55812,7 @@ paths: type: integer variables: type: array - items: &392 + items: &393 title: Actions Variable type: object properties: @@ -55808,7 +55842,7 @@ paths: - created_at - updated_at examples: - default: &393 + default: &394 value: total_count: 2 variables: @@ -55841,8 +55875,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -55851,11 +55885,11 @@ paths: schema: type: object properties: - enabled: &361 + enabled: &362 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *145 - selected_actions_url: *360 + selected_actions_url: *361 sha_pinning_required: *146 required: - enabled @@ -55884,8 +55918,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -55896,7 +55930,7 @@ paths: schema: type: object properties: - enabled: *361 + enabled: *362 allowed_actions: *145 sha_pinning_required: *146 required: @@ -55928,14 +55962,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: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &362 + schema: &363 type: object properties: access_level: @@ -55952,7 +55986,7 @@ paths: required: - access_level examples: - default: &363 + default: &364 value: access_level: organization x-github: @@ -55976,15 +56010,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: - - *343 - *344 + - *345 requestBody: required: true content: application/json: - schema: *362 + schema: *363 examples: - default: *363 + default: *364 responses: '204': description: Response @@ -56008,14 +56042,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *364 + schema: *365 examples: default: value: @@ -56039,8 +56073,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *343 - *344 + - *345 responses: '204': description: Empty response for successful settings update @@ -56050,7 +56084,7 @@ paths: required: true content: application/json: - schema: *365 + schema: *366 examples: default: summary: Set retention days @@ -56074,8 +56108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -56083,7 +56117,7 @@ paths: application/json: schema: *147 examples: - default: *366 + default: *367 '404': *6 x-github: enabledForGitHubApps: true @@ -56102,8 +56136,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -56137,14 +56171,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: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *367 + schema: *368 examples: default: *148 '403': *29 @@ -56166,13 +56200,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: - - *343 - *344 + - *345 requestBody: required: true content: application/json: - schema: *368 + schema: *369 examples: default: *148 responses: @@ -56198,8 +56232,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -56226,8 +56260,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -56259,14 +56293,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *369 + schema: *370 examples: default: *155 x-github: @@ -56289,8 +56323,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *343 - *344 + - *345 responses: '204': description: Success response @@ -56301,7 +56335,7 @@ paths: required: true content: application/json: - schema: *370 + schema: *371 examples: default: *155 x-github: @@ -56330,8 +56364,8 @@ paths: in: query schema: type: string - - *343 - *344 + - *345 - *17 - *19 responses: @@ -56375,8 +56409,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -56384,9 +56418,9 @@ paths: application/json: schema: type: array - items: *371 + items: *372 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56408,8 +56442,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: - - *343 - *344 + - *345 requestBody: required: true content: @@ -56452,7 +56486,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *373 + '201': *374 '404': *6 '422': *7 '409': *54 @@ -56483,8 +56517,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *343 - *344 + - *345 responses: '201': description: Response @@ -56492,7 +56526,7 @@ paths: application/json: schema: *164 examples: - default: *374 + default: *375 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56520,8 +56554,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *343 - *344 + - *345 responses: '201': description: Response @@ -56529,7 +56563,7 @@ paths: application/json: schema: *164 examples: - default: *375 + default: *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56551,8 +56585,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: - - *343 - *344 + - *345 - *161 responses: '200': @@ -56561,7 +56595,7 @@ paths: application/json: schema: *162 examples: - default: *376 + default: *377 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56582,8 +56616,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: - - *343 - *344 + - *345 - *161 responses: '204': @@ -56610,8 +56644,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: - - *343 - *344 + - *345 - *161 responses: '200': *166 @@ -56636,8 +56670,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: - - *343 - *344 + - *345 - *161 requestBody: required: true @@ -56686,8 +56720,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: - - *343 - *344 + - *345 - *161 requestBody: required: true @@ -56737,11 +56771,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: - - *343 - *344 + - *345 - *161 responses: - '200': *377 + '200': *378 '404': *6 x-github: githubCloudOnly: false @@ -56768,10 +56802,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: - - *343 - *344 + - *345 - *161 - - *378 + - *379 responses: '200': *166 '404': *6 @@ -56799,9 +56833,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *343 - *344 - - &396 + - *345 + - &397 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. @@ -56809,7 +56843,7 @@ paths: required: false schema: type: string - - &397 + - &398 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -56817,7 +56851,7 @@ paths: required: false schema: type: string - - &398 + - &399 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -56826,7 +56860,7 @@ paths: required: false schema: type: string - - &399 + - &400 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 @@ -56853,7 +56887,7 @@ paths: - pending - *17 - *19 - - &400 + - &401 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)." @@ -56862,7 +56896,7 @@ paths: schema: type: string format: date-time - - &379 + - &380 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -56871,13 +56905,13 @@ paths: schema: type: boolean default: false - - &401 + - &402 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &402 + - &403 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -56900,7 +56934,7 @@ paths: type: integer workflow_runs: type: array - items: &380 + items: &381 title: Workflow Run description: An invocation of a workflow type: object @@ -57048,7 +57082,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &424 + properties: &425 id: type: string description: SHA for the commit @@ -57099,7 +57133,7 @@ paths: - name - email nullable: true - required: &425 + required: &426 - id - tree_id - message @@ -57146,7 +57180,7 @@ paths: - workflow_url - pull_requests examples: - default: &403 + default: &404 value: total_count: 1 workflow_runs: @@ -57382,24 +57416,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *343 - *344 - - &381 + - *345 + - &382 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *379 + - *380 responses: '200': description: Response content: application/json: - schema: *380 + schema: *381 examples: - default: &384 + default: &385 value: id: 30433642 name: Build @@ -57640,9 +57674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *343 - *344 - - *381 + - *345 + - *382 responses: '204': description: Response @@ -57665,9 +57699,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *343 - *344 - - *381 + - *345 + - *382 responses: '200': description: Response @@ -57786,9 +57820,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: - - *343 - *344 - - *381 + - *345 + - *382 responses: '201': description: Response @@ -57821,12 +57855,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *343 - *344 - - *381 + - *345 + - *382 - *17 - *19 - - *382 + - *383 - *61 responses: '200': @@ -57843,9 +57877,9 @@ paths: type: integer artifacts: type: array - items: *350 + items: *351 examples: - default: *383 + default: *384 headers: Link: *67 x-github: @@ -57869,25 +57903,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *343 - *344 - - *381 - - &385 + - *345 + - *382 + - &386 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *379 + - *380 responses: '200': description: Response content: application/json: - schema: *380 + schema: *381 examples: - default: *384 + default: *385 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57910,10 +57944,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *343 - *344 - - *381 - - *385 + - *345 + - *382 + - *386 - *17 - *19 responses: @@ -57931,9 +57965,9 @@ paths: type: integer jobs: type: array - items: *386 + items: *387 examples: - default: &387 + default: &388 value: total_count: 1 jobs: @@ -58046,10 +58080,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *343 - *344 - - *381 - - *385 + - *345 + - *382 + - *386 responses: '302': description: Response @@ -58077,9 +58111,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *343 - *344 - - *381 + - *345 + - *382 responses: '202': description: Response @@ -58112,9 +58146,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: - - *343 - *344 - - *381 + - *345 + - *382 requestBody: required: true content: @@ -58181,9 +58215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *343 - *344 - - *381 + - *345 + - *382 responses: '202': description: Response @@ -58216,9 +58250,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *343 - *344 - - *381 + - *345 + - *382 - 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 @@ -58248,9 +58282,9 @@ paths: type: integer jobs: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 headers: Link: *67 x-github: @@ -58275,9 +58309,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *343 - *344 - - *381 + - *345 + - *382 responses: '302': description: Response @@ -58304,9 +58338,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *343 - *344 - - *381 + - *345 + - *382 responses: '204': description: Response @@ -58333,9 +58367,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *343 - *344 - - *381 + - *345 + - *382 responses: '200': description: Response @@ -58395,7 +58429,7 @@ paths: items: type: object properties: - type: &509 + type: &510 type: string description: The type of reviewer. enum: @@ -58480,9 +58514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *343 - *344 - - *381 + - *345 + - *382 requestBody: required: true content: @@ -58529,12 +58563,12 @@ paths: application/json: schema: type: array - items: &504 + items: &505 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &748 + properties: &749 url: type: string format: uri @@ -58619,7 +58653,7 @@ paths: nullable: true properties: *80 required: *81 - required: &749 + required: &750 - id - node_id - sha @@ -58635,7 +58669,7 @@ paths: - created_at - updated_at examples: - default: &505 + default: &506 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -58691,9 +58725,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *343 - *344 - - *381 + - *345 + - *382 requestBody: required: false content: @@ -58737,9 +58771,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *343 - *344 - - *381 + - *345 + - *382 requestBody: required: false content: @@ -58792,9 +58826,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *343 - *344 - - *381 + - *345 + - *382 responses: '200': description: Response @@ -58931,8 +58965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -58950,9 +58984,9 @@ paths: type: integer secrets: type: array - items: *388 + items: *389 examples: - default: *389 + default: *390 headers: Link: *67 x-github: @@ -58977,16 +59011,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *390 + schema: *391 examples: - default: *391 + default: *392 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59008,17 +59042,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *343 - *344 + - *345 - *168 responses: '200': description: Response content: application/json: - schema: *388 + schema: *389 examples: - default: &522 + default: &523 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -59044,8 +59078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *343 - *344 + - *345 - *168 requestBody: required: true @@ -59103,8 +59137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *343 - *344 + - *345 - *168 responses: '204': @@ -59130,9 +59164,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *343 - *344 - - *359 + - *345 + - *360 - *19 responses: '200': @@ -59149,9 +59183,9 @@ paths: type: integer variables: type: array - items: *392 + items: *393 examples: - default: *393 + default: *394 headers: Link: *67 x-github: @@ -59174,8 +59208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -59227,17 +59261,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *343 - *344 + - *345 - *171 responses: '200': description: Response content: application/json: - schema: *392 + schema: *393 examples: - default: &523 + default: &524 value: name: USERNAME value: octocat @@ -59263,8 +59297,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *343 - *344 + - *345 - *171 requestBody: required: true @@ -59307,8 +59341,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *343 - *344 + - *345 - *171 responses: '204': @@ -59334,8 +59368,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -59353,7 +59387,7 @@ paths: type: integer workflows: type: array - items: &394 + items: &395 title: Workflow description: A GitHub Actions workflow type: object @@ -59460,9 +59494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *343 - *344 - - &395 + - *345 + - &396 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -59477,7 +59511,7 @@ paths: description: Response content: application/json: - schema: *394 + schema: *395 examples: default: value: @@ -59510,9 +59544,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *343 - *344 - - *395 + - *345 + - *396 responses: '204': description: Response @@ -59537,9 +59571,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *343 - *344 - - *395 + - *345 + - *396 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -59634,9 +59668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *343 - *344 - - *395 + - *345 + - *396 responses: '204': description: Response @@ -59663,19 +59697,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *343 - *344 - - *395 + - *345 - *396 - *397 - *398 - *399 + - *400 - *17 - *19 - - *400 - - *379 - *401 + - *380 - *402 + - *403 responses: '200': description: Response @@ -59691,9 +59725,9 @@ paths: type: integer workflow_runs: type: array - items: *380 + items: *381 examples: - default: *403 + default: *404 headers: Link: *67 x-github: @@ -59725,9 +59759,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *343 - *344 - - *395 + - *345 + - *396 responses: '200': description: Response @@ -59788,8 +59822,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *343 - *344 + - *345 - *61 - *17 - *47 @@ -59953,8 +59987,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -59991,8 +60025,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *343 - *344 + - *345 - name: assignee in: path required: true @@ -60028,8 +60062,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -60139,8 +60173,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *343 - *344 + - *345 - *17 - *47 - *48 @@ -60197,7 +60231,7 @@ paths: initiator: type: string examples: - default: *404 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60231,8 +60265,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -60240,7 +60274,7 @@ paths: application/json: schema: type: array - items: &405 + items: &406 title: Autolink reference description: An autolink reference. type: object @@ -60294,8 +60328,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -60334,9 +60368,9 @@ paths: description: response content: application/json: - schema: *405 + schema: *406 examples: - default: &406 + default: &407 value: id: 1 key_prefix: TICKET- @@ -60367,9 +60401,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *343 - *344 - - &407 + - *345 + - &408 name: autolink_id description: The unique identifier of the autolink. in: path @@ -60381,9 +60415,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: *406 + default: *407 '404': *6 x-github: githubCloudOnly: false @@ -60403,9 +60437,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *343 - *344 - - *407 + - *345 + - *408 responses: '204': description: Response @@ -60429,8 +60463,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: - - *343 - *344 + - *345 responses: '200': description: Response if Dependabot is enabled @@ -60478,8 +60512,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -60500,8 +60534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -60521,8 +60555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *343 - *344 + - *345 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -60560,7 +60594,7 @@ paths: - url protected: type: boolean - protection: &409 + protection: &410 title: Branch Protection description: Branch Protection type: object @@ -60602,7 +60636,7 @@ paths: required: - contexts - checks - enforce_admins: &412 + enforce_admins: &413 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -60617,7 +60651,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &414 + required_pull_request_reviews: &415 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -60693,7 +60727,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &411 + restrictions: &412 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -60970,9 +61004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *343 - *344 - - &410 + - *345 + - &411 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). @@ -60986,14 +61020,14 @@ paths: description: Response content: application/json: - schema: &420 + schema: &421 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &477 + commit: &478 title: Commit description: Commit type: object @@ -61027,7 +61061,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &408 + properties: &409 name: type: string example: '"Chris Wanstrath"' @@ -61043,7 +61077,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *408 + properties: *409 nullable: true message: type: string @@ -61064,7 +61098,7 @@ paths: required: - sha - url - verification: &529 + verification: &530 title: Verification type: object properties: @@ -61134,7 +61168,7 @@ paths: type: integer files: type: array - items: &490 + items: &491 title: Diff Entry description: Diff Entry type: object @@ -61218,7 +61252,7 @@ paths: - self protected: type: boolean - protection: *409 + protection: *410 protection_url: type: string format: uri @@ -61325,7 +61359,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *347 + '301': *348 '404': *6 x-github: githubCloudOnly: false @@ -61347,15 +61381,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: default: value: @@ -61549,9 +61583,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: true content: @@ -61806,7 +61840,7 @@ paths: url: type: string format: uri - required_status_checks: &417 + required_status_checks: &418 title: Status Check Policy description: Status Check Policy type: object @@ -61958,7 +61992,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *411 + restrictions: *412 required_conversation_resolution: type: object properties: @@ -62070,9 +62104,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '204': description: Response @@ -62097,17 +62131,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *412 + schema: *413 examples: - default: &413 + default: &414 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -62129,17 +62163,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *412 + schema: *413 examples: - default: *413 + default: *414 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62158,9 +62192,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '204': description: Response @@ -62185,17 +62219,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *414 + schema: *415 examples: - default: &415 + default: &416 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -62291,9 +62325,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: false content: @@ -62391,9 +62425,9 @@ paths: description: Response content: application/json: - schema: *414 + schema: *415 examples: - default: *415 + default: *416 '422': *15 x-github: githubCloudOnly: false @@ -62414,9 +62448,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '204': description: Response @@ -62443,17 +62477,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *412 + schema: *413 examples: - default: &416 + default: &417 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -62476,17 +62510,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *412 + schema: *413 examples: - default: *416 + default: *417 '404': *6 x-github: githubCloudOnly: false @@ -62506,9 +62540,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '204': description: Response @@ -62533,17 +62567,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: &418 + default: &419 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -62569,9 +62603,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: false content: @@ -62623,9 +62657,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: - default: *418 + default: *419 '404': *6 '422': *15 x-github: @@ -62647,9 +62681,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '204': description: Response @@ -62673,9 +62707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '200': description: Response @@ -62709,9 +62743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: false content: @@ -62778,9 +62812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: false content: @@ -62844,9 +62878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: content: application/json: @@ -62912,15 +62946,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '200': description: Response content: application/json: - schema: *411 + schema: *412 examples: default: value: @@ -63011,9 +63045,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '204': description: Response @@ -63036,9 +63070,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '200': description: Response @@ -63048,7 +63082,7 @@ paths: type: array items: *5 examples: - default: &419 + default: &420 value: - id: 1 slug: octoapp @@ -63105,9 +63139,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: true content: @@ -63141,7 +63175,7 @@ paths: type: array items: *5 examples: - default: *419 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -63162,9 +63196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: true content: @@ -63198,7 +63232,7 @@ paths: type: array items: *5 examples: - default: *419 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -63219,9 +63253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: true content: @@ -63255,7 +63289,7 @@ paths: type: array items: *5 examples: - default: *419 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -63277,9 +63311,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '200': description: Response @@ -63289,7 +63323,7 @@ paths: type: array items: *197 examples: - default: *259 + default: *260 '404': *6 x-github: githubCloudOnly: false @@ -63309,9 +63343,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: false content: @@ -63349,7 +63383,7 @@ paths: type: array items: *197 examples: - default: *259 + default: *260 '422': *15 x-github: githubCloudOnly: false @@ -63370,9 +63404,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: false content: @@ -63410,7 +63444,7 @@ paths: type: array items: *197 examples: - default: *259 + default: *260 '422': *15 x-github: githubCloudOnly: false @@ -63431,9 +63465,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: content: application/json: @@ -63470,7 +63504,7 @@ paths: type: array items: *197 examples: - default: *259 + default: *260 '422': *15 x-github: githubCloudOnly: false @@ -63492,9 +63526,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *343 - *344 - - *410 + - *345 + - *411 responses: '200': description: Response @@ -63528,9 +63562,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: true content: @@ -63588,9 +63622,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: true content: @@ -63648,9 +63682,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: true content: @@ -63710,9 +63744,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *343 - *344 - - *410 + - *345 + - *411 requestBody: required: true content: @@ -63734,7 +63768,7 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: default: value: @@ -63850,8 +63884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -64130,7 +64164,7 @@ paths: description: Response content: application/json: - schema: &421 + schema: &422 title: CheckRun description: A check performed on the code of a given code change type: object @@ -64250,7 +64284,7 @@ paths: check. type: array items: *90 - deployment: &741 + deployment: &742 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -64530,9 +64564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *343 - *344 - - &422 + - *345 + - &423 name: check_run_id description: The unique identifier of the check run. in: path @@ -64544,9 +64578,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: &423 + default: &424 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -64646,9 +64680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *343 - *344 - - *422 + - *345 + - *423 requestBody: required: true content: @@ -64888,9 +64922,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *423 + default: *424 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64910,9 +64944,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *343 - *344 - - *422 + - *345 + - *423 - *17 - *19 responses: @@ -65007,9 +65041,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *343 - *344 - - *422 + - *345 + - *423 responses: '201': description: Response @@ -65053,8 +65087,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -65076,7 +65110,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &426 + schema: &427 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -65162,12 +65196,12 @@ paths: type: string format: date-time nullable: true - head_commit: &769 + head_commit: &770 title: Simple Commit description: A commit. type: object - properties: *424 - required: *425 + properties: *425 + required: *426 latest_check_runs_count: type: integer check_runs_url: @@ -65195,7 +65229,7 @@ paths: - check_runs_url - pull_requests examples: - default: &427 + default: &428 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -65486,9 +65520,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *426 + schema: *427 examples: - default: *427 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65507,8 +65541,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -65817,9 +65851,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *343 - *344 - - &428 + - *345 + - &429 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -65831,9 +65865,9 @@ paths: description: Response content: application/json: - schema: *426 + schema: *427 examples: - default: *427 + default: *428 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65856,17 +65890,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *343 - *344 - - *428 - - &483 + - *345 + - *429 + - &484 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &484 + - &485 name: status description: Returns check runs with the specified `status`. in: query @@ -65905,9 +65939,9 @@ paths: type: integer check_runs: type: array - items: *421 + items: *422 examples: - default: &485 + default: &486 value: total_count: 1 check_runs: @@ -66009,9 +66043,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *343 - *344 - - *428 + - *345 + - *429 responses: '201': description: Response @@ -66044,21 +66078,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *343 - *344 - - *429 + - *345 - *430 + - *431 - *19 - *17 - - &447 + - &448 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: *431 - - &448 + schema: *432 + - &449 name: pr description: The number of the pull request for the results you want to list. in: query @@ -66083,13 +66117,13 @@ paths: be returned. in: query required: false - schema: *432 + schema: *433 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *433 + schema: *434 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -66113,7 +66147,7 @@ paths: updated_at: *180 url: *181 html_url: *182 - instances_url: *434 + instances_url: *435 state: *187 fixed_at: *183 dismissed_by: @@ -66124,11 +66158,11 @@ paths: required: *21 nullable: true dismissed_at: *184 - dismissed_reason: *435 - dismissed_comment: *436 - rule: *437 - tool: *438 - most_recent_instance: *439 + dismissed_reason: *436 + dismissed_comment: *437 + rule: *438 + tool: *439 + most_recent_instance: *440 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -66254,7 +66288,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *37 - '403': &440 + '403': &441 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -66281,9 +66315,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *343 - *344 - - &441 + - *345 + - &442 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -66297,7 +66331,7 @@ paths: description: Response content: application/json: - schema: &442 + schema: &443 type: object properties: number: *178 @@ -66305,7 +66339,7 @@ paths: updated_at: *180 url: *181 html_url: *182 - instances_url: *434 + instances_url: *435 state: *187 fixed_at: *183 dismissed_by: @@ -66316,8 +66350,8 @@ paths: required: *21 nullable: true dismissed_at: *184 - dismissed_reason: *435 - dismissed_comment: *436 + dismissed_reason: *436 + dismissed_comment: *437 rule: type: object properties: @@ -66371,8 +66405,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *438 - most_recent_instance: *439 + tool: *439 + most_recent_instance: *440 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -66471,7 +66505,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *37 - '403': *440 + '403': *441 '404': *6 '503': *121 x-github: @@ -66491,9 +66525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *343 - *344 - - *441 + - *345 + - *442 requestBody: required: true content: @@ -66508,8 +66542,8 @@ paths: enum: - open - dismissed - dismissed_reason: *435 - dismissed_comment: *436 + dismissed_reason: *436 + dismissed_comment: *437 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -66537,7 +66571,7 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: default: value: @@ -66613,7 +66647,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &446 + '403': &447 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -66640,15 +66674,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: - - *343 - *344 - - *441 + - *345 + - *442 responses: '200': description: Response content: application/json: - schema: &443 + schema: &444 type: object properties: status: @@ -66674,13 +66708,13 @@ paths: - description - started_at examples: - default: &444 + default: &445 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &445 + '400': &446 description: Bad Request content: application/json: @@ -66691,7 +66725,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': *440 + '403': *441 '404': *6 '503': *121 x-github: @@ -66716,29 +66750,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: - - *343 - *344 - - *441 + - *345 + - *442 responses: '200': description: OK content: application/json: - schema: *443 + schema: *444 examples: - default: *444 + default: *445 '202': description: Accepted content: application/json: - schema: *443 + schema: *444 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *445 + '400': *446 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -66770,9 +66804,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: - - *343 - *344 - - *441 + - *345 + - *442 requestBody: required: false content: @@ -66817,8 +66851,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *445 - '403': *446 + '400': *446 + '403': *447 '404': *6 '422': description: Unprocessable Entity @@ -66842,13 +66876,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *343 - *344 - - *441 + - *345 + - *442 - *19 - *17 - - *447 - *448 + - *449 responses: '200': description: Response @@ -66859,10 +66893,10 @@ paths: items: type: object properties: - ref: *431 - analysis_key: *449 - environment: *450 - category: *451 + ref: *432 + analysis_key: *450 + environment: *451 + category: *452 state: type: string description: State of a code scanning alert instance. @@ -66877,7 +66911,7 @@ paths: properties: text: type: string - location: *452 + location: *453 html_url: type: string classifications: @@ -66885,7 +66919,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: *453 + items: *454 examples: default: value: @@ -66922,7 +66956,7 @@ paths: end_column: 50 classifications: - source - '403': *440 + '403': *441 '404': *6 '503': *121 x-github: @@ -66956,25 +66990,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *343 - *344 - - *429 + - *345 - *430 + - *431 - *19 - *17 - - *448 + - *449 - 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: *431 + schema: *432 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &454 + schema: &455 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -66995,23 +67029,23 @@ paths: application/json: schema: type: array - items: &455 + items: &456 type: object properties: - ref: *431 - commit_sha: &463 + ref: *432 + commit_sha: &464 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: *449 + analysis_key: *450 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *451 + category: *452 error: type: string example: error reading field xyz @@ -67035,8 +67069,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *454 - tool: *438 + sarif_id: *455 + tool: *439 deletable: type: boolean warning: @@ -67097,7 +67131,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *440 + '403': *441 '404': *6 '503': *121 x-github: @@ -67133,8 +67167,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: - - *343 - *344 + - *345 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -67147,7 +67181,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *456 examples: response: summary: application/json response @@ -67201,7 +67235,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *440 + '403': *441 '404': *6 '422': description: Response if analysis could not be processed @@ -67288,8 +67322,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: - - *343 - *344 + - *345 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -67342,7 +67376,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': *446 + '403': *447 '404': *6 '503': *121 x-github: @@ -67364,8 +67398,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -67373,7 +67407,7 @@ paths: application/json: schema: type: array - items: &456 + items: &457 title: CodeQL Database description: A CodeQL database. type: object @@ -67484,7 +67518,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': *440 + '403': *441 '404': *6 '503': *121 x-github: @@ -67513,8 +67547,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *343 - *344 + - *345 - name: language in: path description: The language of the CodeQL database. @@ -67526,7 +67560,7 @@ paths: description: Response content: application/json: - schema: *456 + schema: *457 examples: default: value: @@ -67558,9 +67592,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': &492 + '302': &493 description: Found - '403': *440 + '403': *441 '404': *6 '503': *121 x-github: @@ -67582,8 +67616,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *343 - *344 + - *345 - name: language in: path description: The language of the CodeQL database. @@ -67593,7 +67627,7 @@ paths: responses: '204': description: Response - '403': *446 + '403': *447 '404': *6 '503': *121 x-github: @@ -67621,8 +67655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -67631,7 +67665,7 @@ paths: type: object additionalProperties: false properties: - language: &457 + language: &458 type: string description: The language targeted by the CodeQL query enum: @@ -67711,7 +67745,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &461 + schema: &462 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -67721,7 +67755,7 @@ paths: description: The ID of the variant analysis. controller_repo: *66 actor: *4 - query_language: *457 + query_language: *458 query_pack_url: type: string description: The download url for the query pack. @@ -67768,7 +67802,7 @@ paths: items: type: object properties: - repository: &458 + repository: &459 title: Repository Identifier description: Repository Identifier type: object @@ -67804,7 +67838,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &462 + analysis_status: &463 type: string description: The new status of the CodeQL variant analysis repository task. @@ -67836,7 +67870,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &459 + access_mismatch_repos: &460 type: object properties: repository_count: @@ -67850,7 +67884,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: *458 + items: *459 required: - repository_count - repositories @@ -67872,8 +67906,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *459 - over_limit_repos: *459 + no_codeql_db_repos: *460 + over_limit_repos: *460 required: - access_mismatch_repos - not_found_repos @@ -67889,7 +67923,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &460 + value: &461 summary: Default response value: id: 1 @@ -68035,10 +68069,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *460 + value: *461 repository_lists: summary: Response for a successful variant analysis submission - value: *460 + value: *461 '404': *6 '422': description: Unable to process variant analysis submission @@ -68066,8 +68100,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: - - *343 - *344 + - *345 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -68079,9 +68113,9 @@ paths: description: Response content: application/json: - schema: *461 + schema: *462 examples: - default: *460 + default: *461 '404': *6 '503': *121 x-github: @@ -68104,7 +68138,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: - - *343 + - *344 - name: repo in: path description: The name of the controller repository. @@ -68139,7 +68173,7 @@ paths: type: object properties: repository: *66 - analysis_status: *462 + analysis_status: *463 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -68264,8 +68298,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -68367,7 +68401,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *440 + '403': *441 '404': *6 '503': *121 x-github: @@ -68388,8 +68422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -68481,7 +68515,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *446 + '403': *447 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -68552,8 +68586,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -68561,7 +68595,7 @@ paths: schema: type: object properties: - commit_sha: *463 + commit_sha: *464 ref: type: string description: |- @@ -68619,7 +68653,7 @@ paths: schema: type: object properties: - id: *454 + id: *455 url: type: string description: The REST API URL for checking the status of the upload. @@ -68633,7 +68667,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': *446 + '403': *447 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -68656,8 +68690,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *343 - *344 + - *345 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -68703,7 +68737,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': *440 + '403': *441 '404': description: Not Found if the sarif id does not match any upload '503': *121 @@ -68728,8 +68762,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: - - *343 - *344 + - *345 responses: '200': description: Response @@ -68810,8 +68844,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *343 - *344 + - *345 - 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 @@ -68931,8 +68965,8 @@ paths: parameters: - *17 - *19 - - *343 - *344 + - *345 responses: '200': description: Response @@ -68948,7 +68982,7 @@ paths: type: integer codespaces: type: array - items: *247 + items: *248 examples: default: value: @@ -69246,8 +69280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -69310,17 +69344,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *247 + schema: *248 examples: - default: *464 + default: *465 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *247 + schema: *248 examples: - default: *464 + default: *465 '400': *14 '401': *25 '403': *29 @@ -69349,8 +69383,8 @@ paths: parameters: - *17 - *19 - - *343 - *344 + - *345 responses: '200': description: Response @@ -69414,8 +69448,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *343 - *344 + - *345 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -69450,14 +69484,14 @@ paths: type: integer machines: type: array - items: &684 + items: &685 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *465 - required: *466 + properties: *466 + required: *467 examples: - default: &685 + default: &686 value: total_count: 2 machines: @@ -69497,8 +69531,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *343 - *344 + - *345 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -69582,8 +69616,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: - - *343 - *344 + - *345 - 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 @@ -69649,8 +69683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -69668,7 +69702,7 @@ paths: type: integer secrets: type: array - items: &470 + items: &471 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -69688,7 +69722,7 @@ paths: - created_at - updated_at examples: - default: *467 + default: *468 headers: Link: *67 x-github: @@ -69711,16 +69745,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *468 + schema: *469 examples: - default: *469 + default: *470 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -69740,17 +69774,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *343 - *344 + - *345 - *168 responses: '200': description: Response content: application/json: - schema: *470 + schema: *471 examples: - default: *471 + default: *472 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69770,8 +69804,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *343 - *344 + - *345 - *168 requestBody: required: true @@ -69824,8 +69858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *343 - *344 + - *345 - *168 responses: '204': @@ -69854,8 +69888,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *343 - *344 + - *345 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -69897,7 +69931,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &472 + properties: &473 login: type: string example: octocat @@ -69990,7 +70024,7 @@ paths: user_view_type: type: string example: public - required: &473 + required: &474 - avatar_url - events_url - followers_url @@ -70064,8 +70098,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *343 - *344 + - *345 - *71 responses: '204': @@ -70112,8 +70146,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *343 - *344 + - *345 - *71 requestBody: required: false @@ -70140,7 +70174,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &542 + schema: &543 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -70369,8 +70403,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *343 - *344 + - *345 - *71 responses: '204': @@ -70402,8 +70436,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *343 - *344 + - *345 - *71 responses: '200': @@ -70424,8 +70458,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *472 - required: *473 + properties: *473 + required: *474 nullable: true required: - permission @@ -70480,8 +70514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -70491,7 +70525,7 @@ paths: application/json: schema: type: array - items: &474 + items: &475 title: Commit Comment description: Commit Comment type: object @@ -70549,7 +70583,7 @@ paths: - created_at - updated_at examples: - default: &479 + default: &480 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -70608,17 +70642,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *343 - *344 + - *345 - *101 responses: '200': description: Response content: application/json: - schema: *474 + schema: *475 examples: - default: &480 + default: &481 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -70675,8 +70709,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *343 - *344 + - *345 - *101 requestBody: required: true @@ -70699,7 +70733,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: default: value: @@ -70750,8 +70784,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *343 - *344 + - *345 - *101 responses: '204': @@ -70773,8 +70807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *343 - *344 + - *345 - *101 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -70801,7 +70835,7 @@ paths: application/json: schema: type: array - items: &475 + items: &476 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -70844,7 +70878,7 @@ paths: - content - created_at examples: - default: &546 + default: &547 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -70889,8 +70923,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *343 - *344 + - *345 - *101 requestBody: required: true @@ -70923,9 +70957,9 @@ paths: description: Reaction exists content: application/json: - schema: *475 + schema: *476 examples: - default: &476 + default: &477 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -70954,9 +70988,9 @@ paths: description: Reaction created content: application/json: - schema: *475 + schema: *476 examples: - default: *476 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -70978,10 +71012,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *343 - *344 + - *345 - *101 - - &547 + - &548 name: reaction_id description: The unique identifier of the reaction. in: path @@ -71036,8 +71070,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *343 - *344 + - *345 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -71093,9 +71127,9 @@ paths: application/json: schema: type: array - items: *477 + items: *478 examples: - default: &598 + default: &599 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -71189,9 +71223,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *343 - *344 - - &478 + - *345 + - &479 name: commit_sha description: The SHA of the commit. in: path @@ -71263,9 +71297,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *343 - *344 - - *478 + - *345 + - *479 - *17 - *19 responses: @@ -71275,9 +71309,9 @@ paths: application/json: schema: type: array - items: *474 + items: *475 examples: - default: *479 + default: *480 headers: Link: *67 x-github: @@ -71305,9 +71339,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *343 - *344 - - *478 + - *345 + - *479 requestBody: required: true content: @@ -71342,9 +71376,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: - default: *480 + default: *481 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -71372,9 +71406,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *343 - *344 - - *478 + - *345 + - *479 - *17 - *19 responses: @@ -71384,9 +71418,9 @@ paths: application/json: schema: type: array - items: *481 + items: *482 examples: - default: &590 + default: &591 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -71923,11 +71957,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *343 - *344 + - *345 - *19 - *17 - - &482 + - &483 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)" @@ -71942,9 +71976,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *478 examples: - default: &577 + default: &578 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -72057,11 +72091,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *343 - *344 - - *482 + - *345 - *483 - *484 + - *485 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -72095,9 +72129,9 @@ paths: type: integer check_runs: type: array - items: *421 + items: *422 examples: - default: *485 + default: *486 headers: Link: *67 x-github: @@ -72122,9 +72156,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *343 - *344 - - *482 + - *345 + - *483 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -72132,7 +72166,7 @@ paths: schema: type: integer example: 1 - - *483 + - *484 - *17 - *19 responses: @@ -72150,7 +72184,7 @@ paths: type: integer check_suites: type: array - items: *426 + items: *427 examples: default: value: @@ -72350,9 +72384,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *343 - *344 - - *482 + - *345 + - *483 - *17 - *19 responses: @@ -72550,9 +72584,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *343 - *344 - - *482 + - *345 + - *483 - *17 - *19 responses: @@ -72562,7 +72596,7 @@ paths: application/json: schema: type: array - items: &663 + items: &664 title: Status description: The status of a commit. type: object @@ -72643,7 +72677,7 @@ paths: site_admin: false headers: Link: *67 - '301': *347 + '301': *348 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72671,8 +72705,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -72701,20 +72735,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *486 - required: *487 + properties: *487 + required: *488 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &488 + properties: &489 url: type: string format: uri html_url: type: string format: uri - required: &489 + required: &490 - url - html_url nullable: true @@ -72728,26 +72762,26 @@ paths: contributing: title: Community Health File type: object - properties: *488 - required: *489 + properties: *489 + required: *490 nullable: true readme: title: Community Health File type: object - properties: *488 - required: *489 + properties: *489 + required: *490 nullable: true issue_template: title: Community Health File type: object - properties: *488 - required: *489 + properties: *489 + required: *490 nullable: true pull_request_template: title: Community Health File type: object - properties: *488 - required: *489 + properties: *489 + required: *490 nullable: true required: - code_of_conduct @@ -72874,8 +72908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *343 - *344 + - *345 - *19 - *17 - name: basehead @@ -72918,8 +72952,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *477 - merge_base_commit: *477 + base_commit: *478 + merge_base_commit: *478 status: type: string enum: @@ -72939,10 +72973,10 @@ paths: example: 6 commits: type: array - items: *477 + items: *478 files: type: array - items: *490 + items: *491 required: - url - html_url @@ -73228,8 +73262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *343 - *344 + - *345 - name: path description: path parameter in: path @@ -73389,7 +73423,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &491 + response-if-content-is-a-file-github-object: &492 summary: Response if content is a file value: type: file @@ -73521,7 +73555,7 @@ paths: - size - type - url - - &603 + - &604 title: Content File description: Content File type: object @@ -73722,7 +73756,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *491 + response-if-content-is-a-file: *492 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -73791,7 +73825,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *492 + '302': *493 '304': *37 x-github: githubCloudOnly: false @@ -73844,8 +73878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *343 - *344 + - *345 - name: path description: path parameter in: path @@ -73938,7 +73972,7 @@ paths: description: Response content: application/json: - schema: &493 + schema: &494 title: File Commit description: File Commit type: object @@ -74090,7 +74124,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: example-for-creating-a-file: value: @@ -74144,7 +74178,7 @@ paths: schema: oneOf: - *3 - - &524 + - &525 description: Repository rule violation was detected type: object properties: @@ -74165,7 +74199,7 @@ paths: items: type: object properties: - placeholder_id: &655 + placeholder_id: &656 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -74197,8 +74231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *343 - *344 + - *345 - name: path description: path parameter in: path @@ -74259,7 +74293,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: default: value: @@ -74314,8 +74348,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *343 - *344 + - *345 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -74438,23 +74472,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *343 - *344 + - *345 - *199 - *200 - *201 - *202 + - *203 - 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 - - *203 - - *494 - *204 + - *495 - *205 - *206 + - *207 - *61 - *47 - *48 @@ -74466,7 +74501,7 @@ paths: application/json: schema: type: array - items: &498 + items: &499 type: object description: A Dependabot alert. properties: @@ -74513,7 +74548,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *495 + security_advisory: *496 security_vulnerability: *65 url: *181 html_url: *182 @@ -74544,8 +74579,8 @@ paths: nullable: true maxLength: 280 fixed_at: *183 - auto_dismissed_at: *496 - dismissal_request: *497 + auto_dismissed_at: *497 + dismissal_request: *498 assignees: type: array description: The users assigned to this alert. @@ -74800,9 +74835,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *343 - *344 - - &499 + - *345 + - &500 name: alert_number in: path description: |- @@ -74817,7 +74852,7 @@ paths: description: Response content: application/json: - schema: *498 + schema: *499 examples: default: value: @@ -74949,9 +74984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *343 - *344 - - *499 + - *345 + - *500 requestBody: required: true content: @@ -75007,7 +75042,7 @@ paths: description: Response content: application/json: - schema: *498 + schema: *499 examples: default: value: @@ -75137,8 +75172,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -75156,7 +75191,7 @@ paths: type: integer secrets: type: array - items: &502 + items: &503 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -75209,16 +75244,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: *501 + default: *502 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75238,15 +75273,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *343 - *344 + - *345 - *168 responses: '200': description: Response content: application/json: - schema: *502 + schema: *503 examples: default: value: @@ -75272,8 +75307,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *343 - *344 + - *345 - *168 requestBody: required: true @@ -75326,8 +75361,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *343 - *344 + - *345 - *168 responses: '204': @@ -75350,8 +75385,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: - - *343 - *344 + - *345 - 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 @@ -75511,8 +75546,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: - - *343 - *344 + - *345 responses: '200': description: Response @@ -75751,8 +75786,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: - - *343 - *344 + - *345 requestBody: required: true content: @@ -75827,7 +75862,7 @@ paths: - version - url additionalProperties: false - metadata: &503 + metadata: &504 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -75860,7 +75895,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *503 + metadata: *504 resolved: type: object description: A collection of resolved package dependencies. @@ -75873,7 +75908,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *503 + metadata: *504 relationship: type: string description: A notation of whether a dependency is requested @@ -76002,8 +76037,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *343 - *344 + - *345 - name: sha description: The SHA recorded at creation time. in: query @@ -76043,9 +76078,9 @@ paths: application/json: schema: type: array - items: *504 + items: *505 examples: - default: *505 + default: *506 headers: Link: *67 x-github: @@ -76111,8 +76146,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -76193,7 +76228,7 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: simple-example: summary: Simple example @@ -76266,9 +76301,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *343 - *344 - - &506 + - *345 + - &507 name: deployment_id description: deployment_id parameter in: path @@ -76280,7 +76315,7 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: default: value: @@ -76345,9 +76380,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *343 - *344 - - *506 + - *345 + - *507 responses: '204': description: Response @@ -76369,9 +76404,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *343 - *344 - - *506 + - *345 + - *507 - *17 - *19 responses: @@ -76381,7 +76416,7 @@ paths: application/json: schema: type: array - items: &507 + items: &508 title: Deployment Status description: The status of a deployment. type: object @@ -76542,9 +76577,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *343 - *344 - - *506 + - *345 + - *507 requestBody: required: true content: @@ -76619,9 +76654,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *508 examples: - default: &508 + default: &509 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -76677,9 +76712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *343 - *344 - - *506 + - *345 + - *507 - name: status_id in: path required: true @@ -76690,9 +76725,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *508 examples: - default: *508 + default: *509 '404': *6 x-github: githubCloudOnly: false @@ -76717,8 +76752,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -76775,8 +76810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -76793,7 +76828,7 @@ paths: type: integer environments: type: array - items: &510 + items: &511 title: Environment description: Details of a deployment environment type: object @@ -76845,7 +76880,7 @@ paths: type: type: string example: wait_timer - wait_timer: &512 + wait_timer: &513 type: integer example: 30 description: The amount of time to delay a job after @@ -76882,7 +76917,7 @@ paths: items: type: object properties: - type: *509 + type: *510 reviewer: anyOf: - *4 @@ -76906,7 +76941,7 @@ paths: - id - node_id - type - deployment_branch_policy: &513 + deployment_branch_policy: &514 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -77022,9 +77057,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *343 - *344 - - &511 + - *345 + - &512 name: environment_name in: path required: true @@ -77037,9 +77072,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *511 examples: - default: &514 + default: &515 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -77123,9 +77158,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *343 - *344 - - *511 + - *345 + - *512 requestBody: required: false content: @@ -77134,7 +77169,7 @@ paths: type: object nullable: true properties: - wait_timer: *512 + wait_timer: *513 prevent_self_review: type: boolean example: false @@ -77151,13 +77186,13 @@ paths: items: type: object properties: - type: *509 + type: *510 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *513 + deployment_branch_policy: *514 additionalProperties: false examples: default: @@ -77177,9 +77212,9 @@ paths: description: Response content: application/json: - schema: *510 + schema: *511 examples: - default: *514 + default: *515 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -77203,9 +77238,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *343 - *344 - - *511 + - *345 + - *512 responses: '204': description: Default response @@ -77230,9 +77265,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *343 - *344 - - *511 + - *345 + - *512 - *17 - *19 responses: @@ -77250,7 +77285,7 @@ paths: example: 2 branch_policies: type: array - items: &515 + items: &516 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -77307,9 +77342,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *343 - *344 - - *511 + - *345 + - *512 requestBody: required: true content: @@ -77355,9 +77390,9 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: - example-wildcard: &516 + example-wildcard: &517 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -77399,10 +77434,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *343 - *344 - - *511 - - &517 + - *345 + - *512 + - &518 name: branch_policy_id in: path required: true @@ -77414,9 +77449,9 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *516 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77435,10 +77470,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *343 - *344 - - *511 - - *517 + - *345 + - *512 + - *518 requestBody: required: true content: @@ -77466,9 +77501,9 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *516 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77487,10 +77522,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *343 - *344 - - *511 - - *517 + - *345 + - *512 + - *518 responses: '204': description: Response @@ -77515,9 +77550,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *511 + - *512 + - *345 - *344 - - *343 responses: '200': description: List of deployment protection rules @@ -77533,7 +77568,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &518 + items: &519 title: Deployment protection rule description: Deployment protection rule type: object @@ -77552,7 +77587,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &519 + app: &520 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -77651,9 +77686,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: - - *511 + - *512 + - *345 - *344 - - *343 requestBody: content: application/json: @@ -77674,9 +77709,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *518 + schema: *519 examples: - default: &520 + default: &521 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -77711,9 +77746,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: - - *511 + - *512 + - *345 - *344 - - *343 - *19 - *17 responses: @@ -77732,7 +77767,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *519 + items: *520 examples: default: value: @@ -77767,10 +77802,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *343 - *344 - - *511 - - &521 + - *345 + - *512 + - &522 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -77782,9 +77817,9 @@ paths: description: Response content: application/json: - schema: *518 + schema: *519 examples: - default: *520 + default: *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77805,10 +77840,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *511 + - *512 + - *345 - *344 - - *343 - - *521 + - *522 responses: '204': description: Response @@ -77834,9 +77869,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *343 - *344 - - *511 + - *345 + - *512 - *17 - *19 responses: @@ -77854,9 +77889,9 @@ paths: type: integer secrets: type: array - items: *388 + items: *389 examples: - default: *389 + default: *390 headers: Link: *67 x-github: @@ -77881,17 +77916,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *343 - *344 - - *511 + - *345 + - *512 responses: '200': description: Response content: application/json: - schema: *390 + schema: *391 examples: - default: *391 + default: *392 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77913,18 +77948,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *343 - *344 - - *511 + - *345 + - *512 - *168 responses: '200': description: Response content: application/json: - schema: *388 + schema: *389 examples: - default: *522 + default: *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77946,9 +77981,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *343 - *344 - - *511 + - *345 + - *512 - *168 requestBody: required: true @@ -78006,9 +78041,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *343 - *344 - - *511 + - *345 + - *512 - *168 responses: '204': @@ -78034,10 +78069,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *343 - *344 - - *511 - - *359 + - *345 + - *512 + - *360 - *19 responses: '200': @@ -78054,9 +78089,9 @@ paths: type: integer variables: type: array - items: *392 + items: *393 examples: - default: *393 + default: *394 headers: Link: *67 x-github: @@ -78079,9 +78114,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *343 - *344 - - *511 + - *345 + - *512 requestBody: required: true content: @@ -78133,18 +78168,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *343 - *344 - - *511 + - *345 + - *512 - *171 responses: '200': description: Response content: application/json: - schema: *392 + schema: *393 examples: - default: *523 + default: *524 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78165,10 +78200,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *343 - *344 + - *345 - *171 - - *511 + - *512 requestBody: required: true content: @@ -78210,10 +78245,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *343 - *344 + - *345 - *171 - - *511 + - *512 responses: '204': description: Response @@ -78235,8 +78270,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -78304,8 +78339,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *343 - *344 + - *345 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -78464,8 +78499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *343 - *344 + - *345 requestBody: required: false content: @@ -78497,9 +78532,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *348 + default: *349 '400': *14 '422': *15 '403': *29 @@ -78520,8 +78555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -78581,7 +78616,7 @@ paths: schema: oneOf: - *129 - - *524 + - *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78606,8 +78641,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *343 - *344 + - *345 - name: file_sha in: path required: true @@ -78706,8 +78741,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -78816,7 +78851,7 @@ paths: description: Response content: application/json: - schema: &525 + schema: &526 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -79030,15 +79065,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *343 - *344 - - *478 + - *345 + - *479 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: default: value: @@ -79094,9 +79129,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *343 - *344 - - &526 + - *345 + - &527 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. @@ -79113,7 +79148,7 @@ paths: application/json: schema: type: array - items: &527 + items: &528 title: Git Reference description: Git references within a repository type: object @@ -79188,17 +79223,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *343 - *344 - - *526 + - *345 + - *527 responses: '200': description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: &528 + default: &529 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -79227,8 +79262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -79257,9 +79292,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *528 + default: *529 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -79285,9 +79320,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *343 - *344 - - *526 + - *345 + - *527 requestBody: required: true content: @@ -79316,9 +79351,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *528 + default: *529 '422': *15 '409': *54 x-github: @@ -79336,9 +79371,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *343 - *344 - - *526 + - *345 + - *527 responses: '204': description: Response @@ -79393,8 +79428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -79461,7 +79496,7 @@ paths: description: Response content: application/json: - schema: &530 + schema: &531 title: Git Tag description: Metadata for a Git tag type: object @@ -79512,7 +79547,7 @@ paths: - sha - type - url - verification: *529 + verification: *530 required: - sha - url @@ -79522,7 +79557,7 @@ paths: - tag - message examples: - default: &531 + default: &532 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -79595,8 +79630,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *343 - *344 + - *345 - name: tag_sha in: path required: true @@ -79607,9 +79642,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: *531 + default: *532 '404': *6 '409': *54 x-github: @@ -79633,8 +79668,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -79707,7 +79742,7 @@ paths: description: Response content: application/json: - schema: &532 + schema: &533 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -79803,8 +79838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *343 - *344 + - *345 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -79827,7 +79862,7 @@ paths: description: Response content: application/json: - schema: *532 + schema: *533 examples: default-response: summary: Default response @@ -79886,8 +79921,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -79897,7 +79932,7 @@ paths: application/json: schema: type: array - items: &533 + items: &534 title: Webhook description: Webhooks for repositories. type: object @@ -79951,7 +79986,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &778 + last_response: &779 title: Hook Response type: object properties: @@ -80025,8 +80060,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *343 - *344 + - *345 requestBody: required: false content: @@ -80078,9 +80113,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: &534 + default: &535 value: type: Repository id: 12345678 @@ -80128,17 +80163,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *343 - *344 - - *215 + - *345 + - *216 responses: '200': description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *534 + default: *535 '404': *6 x-github: githubCloudOnly: false @@ -80158,9 +80193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *343 - *344 - - *215 + - *345 + - *216 requestBody: required: true content: @@ -80205,9 +80240,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *534 + default: *535 '422': *15 '404': *6 x-github: @@ -80228,9 +80263,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *343 - *344 - - *215 + - *345 + - *216 responses: '204': description: Response @@ -80254,9 +80289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *343 - *344 - - *215 + - *345 + - *216 responses: '200': description: Response @@ -80283,9 +80318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *343 - *344 - - *215 + - *345 + - *216 requestBody: required: false content: @@ -80329,12 +80364,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *343 - *344 - - *215 - - *17 + - *345 - *216 + - *17 - *217 + - *218 responses: '200': description: Response @@ -80342,9 +80377,9 @@ paths: application/json: schema: type: array - items: *218 + items: *219 examples: - default: *219 + default: *220 '400': *14 '422': *15 x-github: @@ -80363,18 +80398,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *343 - *344 - - *215 + - *345 + - *216 - *16 responses: '200': description: Response content: application/json: - schema: *220 + schema: *221 examples: - default: *221 + default: *222 '400': *14 '422': *15 x-github: @@ -80393,9 +80428,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *343 - *344 - - *215 + - *345 + - *216 - *16 responses: '202': *39 @@ -80418,9 +80453,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *343 - *344 - - *215 + - *345 + - *216 responses: '204': description: Response @@ -80445,9 +80480,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *343 - *344 - - *215 + - *345 + - *216 responses: '204': description: Response @@ -80470,8 +80505,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response if immutable releases are enabled @@ -80517,8 +80552,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *343 - *344 + - *345 responses: '204': *191 '409': *54 @@ -80538,8 +80573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *343 - *344 + - *345 responses: '204': *191 '409': *54 @@ -80596,14 +80631,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &535 + schema: &536 title: Import description: A repository import from an external source. type: object @@ -80702,7 +80737,7 @@ paths: - html_url - authors_url examples: - default: &538 + default: &539 value: vcs: subversion use_lfs: true @@ -80718,7 +80753,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': &536 + '503': &537 description: Unavailable due to service under maintenance. content: application/json: @@ -80747,8 +80782,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -80796,7 +80831,7 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: default: value: @@ -80821,7 +80856,7 @@ paths: type: string '422': *15 '404': *6 - '503': *536 + '503': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80849,8 +80884,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *343 - *344 + - *345 requestBody: required: false content: @@ -80899,7 +80934,7 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: example-1: summary: Example 1 @@ -80947,7 +80982,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': *536 + '503': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80970,12 +81005,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *343 - *344 + - *345 responses: '204': description: Response - '503': *536 + '503': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81001,9 +81036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *343 - *344 - - &706 + - *345 + - &707 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -81017,7 +81052,7 @@ paths: application/json: schema: type: array - items: &537 + items: &538 title: Porter Author description: Porter Author type: object @@ -81071,7 +81106,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': *536 + '503': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81096,8 +81131,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *343 - *344 + - *345 - name: author_id in: path required: true @@ -81127,7 +81162,7 @@ paths: description: Response content: application/json: - schema: *537 + schema: *538 examples: default: value: @@ -81140,7 +81175,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *536 + '503': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81164,8 +81199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -81206,7 +81241,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *536 + '503': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81234,8 +81269,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -81262,11 +81297,11 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: - default: *538 + default: *539 '422': *15 - '503': *536 + '503': *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81289,8 +81324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -81298,8 +81333,8 @@ paths: application/json: schema: *22 examples: - default: *539 - '301': *347 + default: *540 + '301': *348 '404': *6 x-github: githubCloudOnly: false @@ -81319,8 +81354,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -81328,12 +81363,12 @@ paths: application/json: schema: anyOf: - - *234 + - *235 - type: object properties: {} additionalProperties: false examples: - default: &541 + default: &542 value: limit: collaborators_only origin: repository @@ -81358,13 +81393,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *343 - *344 + - *345 requestBody: required: true content: application/json: - schema: *540 + schema: *541 examples: default: summary: Example request body @@ -81376,9 +81411,9 @@ paths: description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *541 + default: *542 '409': description: Response x-github: @@ -81400,8 +81435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -81424,8 +81459,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -81435,9 +81470,9 @@ paths: application/json: schema: type: array - items: *542 + items: *543 examples: - default: &699 + default: &700 value: - id: 1 repository: @@ -81568,9 +81603,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *343 - *344 - - *238 + - *345 + - *239 requestBody: required: false content: @@ -81599,7 +81634,7 @@ paths: description: Response content: application/json: - schema: *542 + schema: *543 examples: default: value: @@ -81730,9 +81765,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *343 - *344 - - *238 + - *345 + - *239 responses: '204': description: Response @@ -81763,8 +81798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *343 - *344 + - *345 - 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 @@ -81812,7 +81847,7 @@ paths: required: false schema: type: string - - *245 + - *246 - name: sort description: What to sort results by. in: query @@ -81837,7 +81872,7 @@ paths: type: array items: *85 examples: - default: &555 + default: &556 value: - id: 1 node_id: MDU6SXNzdWUx @@ -81986,7 +82021,7 @@ paths: state_reason: completed headers: Link: *67 - '301': *347 + '301': *348 '422': *15 '404': *6 x-github: @@ -82015,8 +82050,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -82100,7 +82135,7 @@ paths: application/json: schema: *85 examples: - default: &552 + default: &553 value: id: 1 node_id: MDU6SXNzdWUx @@ -82257,7 +82292,7 @@ paths: '422': *15 '503': *121 '404': *6 - '410': *543 + '410': *544 x-github: triggersNotification: true githubCloudOnly: false @@ -82295,8 +82330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *343 - *344 + - *345 - *109 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -82317,9 +82352,9 @@ paths: application/json: schema: type: array - items: *544 + items: *545 examples: - default: &554 + default: &555 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -82377,17 +82412,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *343 - *344 + - *345 - *101 responses: '200': description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: &545 + default: &546 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -82442,8 +82477,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *343 - *344 + - *345 - *101 requestBody: required: true @@ -82466,9 +82501,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: *545 + default: *546 '422': *15 x-github: githubCloudOnly: false @@ -82486,8 +82521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *343 - *344 + - *345 - *101 responses: '204': @@ -82516,15 +82551,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *343 - *344 + - *345 - *101 responses: '200': description: Response content: application/json: - schema: *544 + schema: *545 examples: default: value: @@ -82580,7 +82615,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *543 + '410': *544 '422': *15 x-github: githubCloudOnly: false @@ -82597,8 +82632,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *343 - *344 + - *345 - *101 responses: '204': @@ -82606,7 +82641,7 @@ paths: '401': *25 '403': *29 '404': *6 - '410': *543 + '410': *544 '503': *121 x-github: githubCloudOnly: false @@ -82624,8 +82659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *343 - *344 + - *345 - *101 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -82652,9 +82687,9 @@ paths: application/json: schema: type: array - items: *475 + items: *476 examples: - default: *546 + default: *547 headers: Link: *67 '404': *6 @@ -82675,8 +82710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *343 - *344 + - *345 - *101 requestBody: required: true @@ -82709,16 +82744,16 @@ paths: description: Reaction exists content: application/json: - schema: *475 + schema: *476 examples: - default: *476 + default: *477 '201': description: Reaction created content: application/json: - schema: *475 + schema: *476 examples: - default: *476 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -82740,10 +82775,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *343 - *344 + - *345 - *101 - - *547 + - *548 responses: '204': description: Response @@ -82763,8 +82798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -82774,7 +82809,7 @@ paths: application/json: schema: type: array - items: &551 + items: &552 title: Issue Event description: Issue Event type: object @@ -82817,9 +82852,9 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *548 - required: *549 - x-github-breaking-changes: *550 + properties: *549 + required: *550 + x-github-breaking-changes: *551 nullable: true label: title: Issue Event Label @@ -83127,8 +83162,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *343 - *344 + - *345 - name: event_id in: path required: true @@ -83139,7 +83174,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -83332,7 +83367,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *543 + '410': *544 '403': *29 x-github: githubCloudOnly: false @@ -83366,9 +83401,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *343 - *344 - - &553 + - *345 + - &554 name: issue_number description: The number that identifies the issue. in: path @@ -83384,7 +83419,7 @@ paths: examples: default: summary: Issue - value: *552 + value: *553 pinned_comment: summary: Issue with pinned comment value: @@ -83583,9 +83618,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *347 + '301': *348 '404': *6 - '410': *543 + '410': *544 '304': *37 x-github: githubCloudOnly: false @@ -83610,9 +83645,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 requestBody: required: false content: @@ -83738,13 +83773,13 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 '422': *15 '503': *121 '403': *29 - '301': *347 + '301': *348 '404': *6 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83772,9 +83807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 requestBody: required: false content: @@ -83802,7 +83837,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83818,9 +83853,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 requestBody: content: application/json: @@ -83847,7 +83882,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83869,9 +83904,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: - - *343 - *344 - - *553 + - *345 + - *554 - name: assignee in: path required: true @@ -83911,9 +83946,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *343 - *344 - - *553 + - *345 + - *554 - *92 - *17 - *19 @@ -83924,13 +83959,13 @@ paths: application/json: schema: type: array - items: *544 + items: *545 examples: - default: *554 + default: *555 headers: Link: *67 '404': *6 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83959,9 +83994,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *343 - *344 - - *553 + - *345 + - *554 requestBody: required: true content: @@ -83983,16 +84018,16 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: *545 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *29 - '410': *543 + '410': *544 '422': *15 '404': *6 x-github: @@ -84020,9 +84055,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *343 - *344 - - *553 + - *345 + - *554 - *17 - *19 responses: @@ -84034,12 +84069,12 @@ paths: type: array items: *85 examples: - default: *555 + default: *556 headers: Link: *67 - '301': *347 + '301': *348 '404': *6 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84067,9 +84102,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *343 - *344 - - *553 + - *345 + - *554 requestBody: required: true content: @@ -84093,15 +84128,15 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *347 + '301': *348 '403': *29 - '410': *543 + '410': *544 '422': *15 '404': *6 x-github: @@ -84132,9 +84167,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *343 - *344 - - *553 + - *345 + - *554 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -84148,13 +84183,13 @@ paths: application/json: schema: *85 examples: - default: *552 - '301': *347 + default: *553 + '301': *348 '400': *14 '401': *25 '403': *29 '404': *6 - '410': *543 + '410': *544 x-github: triggersNotification: true githubCloudOnly: false @@ -84180,9 +84215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *343 - *344 - - *553 + - *345 + - *554 - *17 - *19 responses: @@ -84194,12 +84229,12 @@ paths: type: array items: *85 examples: - default: *555 + default: *556 headers: Link: *67 - '301': *347 + '301': *348 '404': *6 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84216,9 +84251,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *343 - *344 - - *553 + - *345 + - *554 - *17 - *19 responses: @@ -84232,7 +84267,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &558 + - &559 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -84286,7 +84321,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &560 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -84422,7 +84457,7 @@ paths: - performed_via_github_app - assignee - assigner - - &560 + - &561 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -84473,7 +84508,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &562 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -84524,7 +84559,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &562 + - &563 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -84578,7 +84613,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &563 + - &564 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -84625,7 +84660,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &564 + - &565 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -84672,7 +84707,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &565 + - &566 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -84732,7 +84767,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &566 + - &567 title: Locked Issue Event description: Locked Issue Event type: object @@ -84780,7 +84815,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &567 + - &568 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -84846,7 +84881,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &568 + - &569 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -84912,7 +84947,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &569 + - &570 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -84978,7 +85013,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &570 + - &571 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -85069,7 +85104,7 @@ paths: color: red headers: Link: *67 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85086,9 +85121,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 - *17 - *19 responses: @@ -85098,9 +85133,9 @@ paths: application/json: schema: type: array - items: *556 + items: *557 examples: - default: &669 + default: &670 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -85124,9 +85159,9 @@ paths: value: '2025-12-25' headers: Link: *67 - '301': *347 + '301': *348 '404': *6 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85143,9 +85178,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 - *17 - *19 responses: @@ -85157,7 +85192,7 @@ paths: type: array items: *84 examples: - default: &557 + default: &558 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -85175,9 +85210,9 @@ paths: default: false headers: Link: *67 - '301': *347 + '301': *348 '404': *6 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85193,9 +85228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 requestBody: required: false content: @@ -85240,10 +85275,10 @@ paths: type: array items: *84 examples: - default: *557 - '301': *347 + default: *558 + '301': *348 '404': *6 - '410': *543 + '410': *544 '422': *15 x-github: githubCloudOnly: false @@ -85260,9 +85295,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 requestBody: required: false content: @@ -85324,10 +85359,10 @@ paths: type: array items: *84 examples: - default: *557 - '301': *347 + default: *558 + '301': *348 '404': *6 - '410': *543 + '410': *544 '422': *15 x-github: githubCloudOnly: false @@ -85344,15 +85379,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 responses: '204': description: Response - '301': *347 + '301': *348 '404': *6 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85371,9 +85406,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 - name: name in: path required: true @@ -85397,9 +85432,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *347 + '301': *348 '404': *6 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85419,9 +85454,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 requestBody: required: false content: @@ -85449,7 +85484,7 @@ paths: '204': description: Response '403': *29 - '410': *543 + '410': *544 '404': *6 '422': *15 x-github: @@ -85467,9 +85502,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 responses: '204': description: Response @@ -85499,9 +85534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 responses: '200': description: Response @@ -85509,10 +85544,10 @@ paths: application/json: schema: *85 examples: - default: *552 - '301': *347 + default: *553 + '301': *348 '404': *6 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85529,9 +85564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 - 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. @@ -85557,13 +85592,13 @@ paths: application/json: schema: type: array - items: *475 + items: *476 examples: - default: *546 + default: *547 headers: Link: *67 '404': *6 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85581,9 +85616,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 requestBody: required: true content: @@ -85615,16 +85650,16 @@ paths: description: Response content: application/json: - schema: *475 + schema: *476 examples: - default: *476 + default: *477 '201': description: Response content: application/json: - schema: *475 + schema: *476 examples: - default: *476 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -85646,10 +85681,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *343 - *344 - - *553 - - *547 + - *345 + - *554 + - *548 responses: '204': description: Response @@ -85678,9 +85713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 requestBody: required: true content: @@ -85704,7 +85739,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -85737,9 +85772,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *343 - *344 - - *553 + - *345 + - *554 - *17 - *19 responses: @@ -85751,11 +85786,11 @@ paths: type: array items: *85 examples: - default: *555 + default: *556 headers: Link: *67 '404': *6 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85783,9 +85818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 requestBody: required: true content: @@ -85814,14 +85849,14 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *29 - '410': *543 + '410': *544 '422': *15 '404': *6 x-github: @@ -85841,9 +85876,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 requestBody: required: true content: @@ -85876,7 +85911,7 @@ paths: application/json: schema: *85 examples: - default: *552 + default: *553 '403': *29 '404': *6 '422': *7 @@ -85898,9 +85933,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *343 - *344 - - *553 + - *345 + - *554 - *17 - *19 responses: @@ -85915,7 +85950,6 @@ paths: description: Timeline Event type: object anyOf: - - *558 - *559 - *560 - *561 @@ -85928,6 +85962,7 @@ paths: - *568 - *569 - *570 + - *571 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -85988,8 +86023,8 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *571 - required: *572 + properties: *572 + required: *573 nullable: true required: - event @@ -86244,7 +86279,7 @@ paths: type: string comments: type: array - items: &592 + items: &593 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -86459,7 +86494,7 @@ paths: type: string comments: type: array - items: *474 + items: *475 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -86748,7 +86783,7 @@ paths: headers: Link: *67 '404': *6 - '410': *543 + '410': *544 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86765,8 +86800,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -86776,7 +86811,7 @@ paths: application/json: schema: type: array - items: &573 + items: &574 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -86842,8 +86877,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -86879,9 +86914,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: &574 + default: &575 value: id: 1 key: ssh-rsa AAA... @@ -86915,9 +86950,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *343 - *344 - - &575 + - *345 + - &576 name: key_id description: The unique identifier of the key. in: path @@ -86929,9 +86964,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *574 + default: *575 '404': *6 x-github: githubCloudOnly: false @@ -86949,9 +86984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *343 - *344 - - *575 + - *345 + - *576 responses: '204': description: Response @@ -86971,8 +87006,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -86984,7 +87019,7 @@ paths: type: array items: *84 examples: - default: *557 + default: *558 headers: Link: *67 '404': *6 @@ -87005,8 +87040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -87044,7 +87079,7 @@ paths: application/json: schema: *84 examples: - default: &576 + default: &577 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -87076,8 +87111,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *343 - *344 + - *345 - name: name in: path required: true @@ -87090,7 +87125,7 @@ paths: application/json: schema: *84 examples: - default: *576 + default: *577 '404': *6 x-github: githubCloudOnly: false @@ -87107,8 +87142,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *343 - *344 + - *345 - name: name in: path required: true @@ -87173,8 +87208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *343 - *344 + - *345 - name: name in: path required: true @@ -87200,8 +87235,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -87240,9 +87275,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *343 - *344 - - *447 + - *345 + - *448 responses: '200': description: Response @@ -87387,8 +87422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -87453,8 +87488,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -87488,9 +87523,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *477 + schema: *478 examples: - default: *577 + default: *578 '204': description: Response when already merged '404': @@ -87515,8 +87550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *343 - *344 + - *345 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -87557,12 +87592,12 @@ paths: application/json: schema: type: array - items: &578 + items: &579 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *279 - required: *280 + properties: *280 + required: *281 examples: default: value: @@ -87618,8 +87653,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -87659,9 +87694,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: &579 + default: &580 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -87720,9 +87755,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *343 - *344 - - &580 + - *345 + - &581 name: milestone_number description: The number that identifies the milestone. in: path @@ -87734,9 +87769,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -87753,9 +87788,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *343 - *344 - - *580 + - *345 + - *581 requestBody: required: false content: @@ -87793,9 +87828,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *579 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87811,9 +87846,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *343 - *344 - - *580 + - *345 + - *581 responses: '204': description: Response @@ -87834,9 +87869,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *343 - *344 - - *580 + - *345 + - *581 - *17 - *19 responses: @@ -87848,7 +87883,7 @@ paths: type: array items: *84 examples: - default: *557 + default: *558 headers: Link: *67 x-github: @@ -87867,12 +87902,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *343 - *344 - - *581 + - *345 - *582 - - *92 - *583 + - *92 + - *584 - *17 - *19 responses: @@ -87884,7 +87919,7 @@ paths: type: array items: *112 examples: - default: *584 + default: *585 headers: Link: *67 x-github: @@ -87908,8 +87943,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *343 - *344 + - *345 requestBody: required: false content: @@ -87967,14 +88002,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: &585 + schema: &586 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -88099,7 +88134,7 @@ paths: - custom_404 - public examples: - default: &586 + default: &587 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -88140,8 +88175,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -88195,9 +88230,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *586 examples: - default: *586 + default: *587 '422': *15 '409': *54 x-github: @@ -88220,8 +88255,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -88320,8 +88355,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -88347,8 +88382,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -88358,7 +88393,7 @@ paths: application/json: schema: type: array - items: &587 + items: &588 title: Page Build description: Page Build type: object @@ -88452,8 +88487,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *343 - *344 + - *345 responses: '201': description: Response @@ -88498,16 +88533,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: &588 + default: &589 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -88555,8 +88590,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *343 - *344 + - *345 - name: build_id in: path required: true @@ -88567,9 +88602,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: *588 + default: *589 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88589,8 +88624,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -88695,9 +88730,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *343 - *344 - - &589 + - *345 + - &590 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -88755,9 +88790,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *343 - *344 - - *589 + - *345 + - *590 responses: '204': *191 '404': *6 @@ -88784,8 +88819,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -89043,8 +89078,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: - - *343 - *344 + - *345 responses: '200': description: Private vulnerability reporting status @@ -89081,8 +89116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *343 - *344 + - *345 responses: '204': *191 '422': *14 @@ -89103,8 +89138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *343 - *344 + - *345 responses: '204': *191 '422': *14 @@ -89126,8 +89161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -89135,7 +89170,7 @@ paths: application/json: schema: type: array - items: *294 + items: *295 examples: default: value: @@ -89166,8 +89201,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: - - *343 - *344 + - *345 requestBody: required: true content: @@ -89179,7 +89214,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *294 + items: *295 required: - properties examples: @@ -89229,8 +89264,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *343 - *344 + - *345 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -89290,9 +89325,9 @@ paths: application/json: schema: type: array - items: *481 + items: *482 examples: - default: *590 + default: *591 headers: Link: *67 '304': *37 @@ -89324,8 +89359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -89390,7 +89425,7 @@ paths: description: Response content: application/json: - schema: &594 + schema: &595 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -89501,8 +89536,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *279 - required: *280 + properties: *280 + required: *281 nullable: true active_lock_reason: type: string @@ -89545,7 +89580,7 @@ paths: items: *4 requested_teams: type: array - items: *332 + items: *333 head: type: object properties: @@ -89583,14 +89618,14 @@ paths: _links: type: object properties: - comments: *281 - commits: *281 - statuses: *281 - html: *281 - issue: *281 - review_comments: *281 - review_comment: *281 - self: *281 + comments: *282 + commits: *282 + statuses: *282 + html: *282 + issue: *282 + review_comments: *282 + review_comment: *282 + self: *282 required: - comments - commits @@ -89601,7 +89636,7 @@ paths: - review_comment - self author_association: *82 - auto_merge: *591 + auto_merge: *592 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -89787,7 +89822,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &595 + default: &596 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -90314,8 +90349,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *343 - *344 + - *345 - name: sort in: query required: false @@ -90344,9 +90379,9 @@ paths: application/json: schema: type: array - items: *592 + items: *593 examples: - default: &597 + default: &598 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -90423,17 +90458,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *343 - *344 + - *345 - *101 responses: '200': description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: &593 + default: &594 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -90508,8 +90543,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *343 - *344 + - *345 - *101 requestBody: required: true @@ -90532,9 +90567,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90550,8 +90585,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *343 - *344 + - *345 - *101 responses: '204': @@ -90573,8 +90608,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *343 - *344 + - *345 - *101 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -90601,9 +90636,9 @@ paths: application/json: schema: type: array - items: *475 + items: *476 examples: - default: *546 + default: *547 headers: Link: *67 '404': *6 @@ -90624,8 +90659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *343 - *344 + - *345 - *101 requestBody: required: true @@ -90658,16 +90693,16 @@ paths: description: Reaction exists content: application/json: - schema: *475 + schema: *476 examples: - default: *476 + default: *477 '201': description: Reaction created content: application/json: - schema: *475 + schema: *476 examples: - default: *476 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -90689,10 +90724,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *343 - *344 + - *345 - *101 - - *547 + - *548 responses: '204': description: Response @@ -90735,9 +90770,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *343 - *344 - - &596 + - *345 + - &597 name: pull_number description: The number that identifies the pull request. in: path @@ -90750,9 +90785,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *594 + schema: *595 examples: - default: *595 + default: *596 '304': *37 '404': *6 '406': @@ -90787,9 +90822,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *343 - *344 - - *596 + - *345 + - *597 requestBody: required: false content: @@ -90831,9 +90866,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: *595 + default: *596 '422': *15 '403': *29 x-github: @@ -90855,9 +90890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *343 - *344 - - *596 + - *345 + - *597 requestBody: required: true content: @@ -90917,17 +90952,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *247 + schema: *248 examples: - default: *464 + default: *465 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *247 + schema: *248 examples: - default: *464 + default: *465 '401': *25 '403': *29 '404': *6 @@ -90957,9 +90992,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *343 - *344 - - *596 + - *345 + - *597 - *109 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -90980,9 +91015,9 @@ paths: application/json: schema: type: array - items: *592 + items: *593 examples: - default: *597 + default: *598 headers: Link: *67 x-github: @@ -91015,9 +91050,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *343 - *344 - - *596 + - *345 + - *597 requestBody: required: true content: @@ -91122,7 +91157,7 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: example-for-a-multi-line-comment: value: @@ -91210,9 +91245,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *343 - *344 - - *596 + - *345 + - *597 - *101 requestBody: required: true @@ -91235,7 +91270,7 @@ paths: description: Response content: application/json: - schema: *592 + schema: *593 examples: default: value: @@ -91321,9 +91356,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *343 - *344 - - *596 + - *345 + - *597 - *17 - *19 responses: @@ -91333,9 +91368,9 @@ paths: application/json: schema: type: array - items: *477 + items: *478 examples: - default: *598 + default: *599 headers: Link: *67 x-github: @@ -91365,9 +91400,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *343 - *344 - - *596 + - *345 + - *597 - *17 - *19 responses: @@ -91377,7 +91412,7 @@ paths: application/json: schema: type: array - items: *490 + items: *491 examples: default: value: @@ -91415,9 +91450,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *343 - *344 - - *596 + - *345 + - *597 responses: '204': description: Response if pull request has been merged @@ -91440,9 +91475,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *343 - *344 - - *596 + - *345 + - *597 requestBody: required: false content: @@ -91553,9 +91588,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *343 - *344 - - *596 + - *345 + - *597 responses: '200': description: Response @@ -91630,9 +91665,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *343 - *344 - - *596 + - *345 + - *597 requestBody: required: false content: @@ -91669,7 +91704,7 @@ paths: description: Response content: application/json: - schema: *481 + schema: *482 examples: default: value: @@ -92205,9 +92240,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *343 - *344 - - *596 + - *345 + - *597 requestBody: required: true content: @@ -92241,7 +92276,7 @@ paths: description: Response content: application/json: - schema: *481 + schema: *482 examples: default: value: @@ -92746,9 +92781,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *343 - *344 - - *596 + - *345 + - *597 - *17 - *19 responses: @@ -92758,7 +92793,7 @@ paths: application/json: schema: type: array - items: &599 + items: &600 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -92909,9 +92944,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *343 - *344 - - *596 + - *345 + - *597 requestBody: required: false content: @@ -92997,9 +93032,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: &601 + default: &602 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -93062,10 +93097,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *343 - *344 - - *596 - - &600 + - *345 + - *597 + - &601 name: review_id description: The unique identifier of the review. in: path @@ -93077,9 +93112,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: &602 + default: &603 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -93138,10 +93173,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *343 - *344 - - *596 - - *600 + - *345 + - *597 + - *601 requestBody: required: true content: @@ -93164,7 +93199,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: default: value: @@ -93226,18 +93261,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *343 - *344 - - *596 - - *600 + - *345 + - *597 + - *601 responses: '200': description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: *601 + default: *602 '422': *7 '404': *6 x-github: @@ -93264,10 +93299,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *343 - *344 - - *596 - - *600 + - *345 + - *597 + - *601 - *17 - *19 responses: @@ -93350,9 +93385,9 @@ paths: _links: type: object properties: - self: *281 - html: *281 - pull_request: *281 + self: *282 + html: *282 + pull_request: *282 required: - self - html @@ -93502,10 +93537,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *343 - *344 - - *596 - - *600 + - *345 + - *597 + - *601 requestBody: required: true content: @@ -93533,7 +93568,7 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: default: value: @@ -93596,10 +93631,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *343 - *344 - - *596 - - *600 + - *345 + - *597 + - *601 requestBody: required: true content: @@ -93634,9 +93669,9 @@ paths: description: Response content: application/json: - schema: *599 + schema: *600 examples: - default: *602 + default: *603 '404': *6 '422': *7 '403': *29 @@ -93658,9 +93693,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *343 - *344 - - *596 + - *345 + - *597 requestBody: required: false content: @@ -93723,8 +93758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *343 - *344 + - *345 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -93737,9 +93772,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: - default: &604 + default: &605 value: type: file encoding: base64 @@ -93781,8 +93816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *343 - *344 + - *345 - name: dir description: The alternate path to look for a README file in: path @@ -93802,9 +93837,9 @@ paths: description: Response content: application/json: - schema: *603 + schema: *604 examples: - default: *604 + default: *605 '404': *6 '422': *15 x-github: @@ -93826,8 +93861,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -93837,7 +93872,7 @@ paths: application/json: schema: type: array - items: *605 + items: *606 examples: default: value: @@ -93931,8 +93966,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -94008,9 +94043,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: &609 + default: &610 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -94115,9 +94150,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *343 - *344 - - &607 + - *345 + - &608 name: asset_id description: The unique identifier of the asset. in: path @@ -94129,9 +94164,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: &608 + default: &609 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 @@ -94166,7 +94201,7 @@ paths: type: User site_admin: false '404': *6 - '302': *492 + '302': *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94182,9 +94217,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *343 - *344 - - *607 + - *345 + - *608 requestBody: required: false content: @@ -94212,9 +94247,9 @@ paths: description: Response content: application/json: - schema: *606 + schema: *607 examples: - default: *608 + default: *609 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -94230,9 +94265,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *343 - *344 - - *607 + - *345 + - *608 responses: '204': description: Response @@ -94257,8 +94292,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -94343,16 +94378,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *343 - *344 + - *345 responses: '200': description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *609 + default: *610 '404': *6 x-github: githubCloudOnly: false @@ -94370,8 +94405,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *343 - *344 + - *345 - name: tag description: tag parameter in: path @@ -94384,9 +94419,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *609 + default: *610 '404': *6 x-github: githubCloudOnly: false @@ -94408,9 +94443,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *343 - *344 - - &610 + - *345 + - &611 name: release_id description: The unique identifier of the release. in: path @@ -94424,9 +94459,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: *605 + schema: *606 examples: - default: *609 + default: *610 '401': description: Unauthorized x-github: @@ -94444,9 +94479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *343 - *344 - - *610 + - *345 + - *611 requestBody: required: false content: @@ -94510,9 +94545,9 @@ paths: description: Response content: application/json: - schema: *605 + schema: *606 examples: - default: *609 + default: *610 '404': description: Not Found if the discussion category name is invalid content: @@ -94533,9 +94568,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *343 - *344 - - *610 + - *345 + - *611 responses: '204': description: Response @@ -94556,9 +94591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *343 - *344 - - *610 + - *345 + - *611 - *17 - *19 responses: @@ -94568,7 +94603,7 @@ paths: application/json: schema: type: array - items: *606 + items: *607 examples: default: value: @@ -94649,9 +94684,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: - - *343 - *344 - - *610 + - *345 + - *611 - name: name in: query required: true @@ -94677,7 +94712,7 @@ paths: description: Response for successful upload content: application/json: - schema: *606 + schema: *607 examples: response-for-successful-upload: value: @@ -94732,9 +94767,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *343 - *344 - - *610 + - *345 + - *611 - 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. @@ -94758,9 +94793,9 @@ paths: application/json: schema: type: array - items: *475 + items: *476 examples: - default: *546 + default: *547 headers: Link: *67 '404': *6 @@ -94781,9 +94816,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *343 - *344 - - *610 + - *345 + - *611 requestBody: required: true content: @@ -94813,16 +94848,16 @@ paths: description: Reaction exists content: application/json: - schema: *475 + schema: *476 examples: - default: *476 + default: *477 '201': description: Reaction created content: application/json: - schema: *475 + schema: *476 examples: - default: *476 + default: *477 '422': *15 x-github: githubCloudOnly: false @@ -94844,10 +94879,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *343 - *344 - - *610 - - *547 + - *345 + - *611 + - *548 responses: '204': description: Response @@ -94871,9 +94906,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *343 - *344 - - *410 + - *345 + - *411 - *17 - *19 responses: @@ -94889,8 +94924,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *304 - - &611 + - *305 + - &612 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -94909,69 +94944,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *305 - - *611 - allOf: - *306 - - *611 + - *612 - allOf: - *307 - - *611 - - allOf: - *612 - - *611 - allOf: - *308 - - *611 + - *612 + - allOf: + - *613 + - *612 - allOf: - *309 - - *611 + - *612 - allOf: - *310 - - *611 + - *612 - allOf: - *311 - - *611 + - *612 - allOf: - *312 - - *611 + - *612 - allOf: - *313 - - *611 + - *612 - allOf: - *314 - - *611 + - *612 - allOf: - *315 - - *611 + - *612 - allOf: - *316 - - *611 + - *612 - allOf: - *317 - - *611 + - *612 - allOf: - *318 - - *611 + - *612 - allOf: - *319 - - *611 + - *612 - allOf: - *320 - - *611 + - *612 - allOf: - *321 - - *611 + - *612 - allOf: - *322 - - *611 + - *612 - allOf: - *323 - - *611 + - *612 - allOf: - *324 - - *611 + - *612 + - allOf: + - *325 + - *612 examples: default: value: @@ -95010,8 +95045,8 @@ paths: category: repos subcategory: rules parameters: - - *343 - *344 + - *345 - *17 - *19 - name: includes_parents @@ -95022,7 +95057,7 @@ paths: schema: type: boolean default: true - - *613 + - *614 responses: '200': description: Response @@ -95030,7 +95065,7 @@ paths: application/json: schema: type: array - items: *325 + items: *326 examples: default: value: @@ -95077,8 +95112,8 @@ paths: category: repos subcategory: rules parameters: - - *343 - *344 + - *345 requestBody: description: Request body required: true @@ -95098,16 +95133,16 @@ paths: - tag - push default: branch - enforcement: *301 + enforcement: *302 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *302 - conditions: *299 + items: *303 + conditions: *300 rules: type: array description: An array of rules within the ruleset. - items: *614 + items: *615 required: - name - enforcement @@ -95138,9 +95173,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *326 examples: - default: &624 + default: &625 value: id: 42 name: super cool ruleset @@ -95188,12 +95223,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *343 - *344 - - *615 + - *345 - *616 - *617 - *618 + - *619 - *17 - *19 responses: @@ -95201,9 +95236,9 @@ paths: description: Response content: application/json: - schema: *619 + schema: *620 examples: - default: *620 + default: *621 '404': *6 '500': *55 x-github: @@ -95224,17 +95259,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *343 - *344 - - *621 + - *345 + - *622 responses: '200': description: Response content: application/json: - schema: *622 + schema: *623 examples: - default: *623 + default: *624 '404': *6 '500': *55 x-github: @@ -95262,8 +95297,8 @@ paths: category: repos subcategory: rules parameters: - - *343 - *344 + - *345 - name: ruleset_id description: The ID of the ruleset. in: path @@ -95283,9 +95318,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *326 examples: - default: *624 + default: *625 '404': *6 '500': *55 put: @@ -95303,8 +95338,8 @@ paths: category: repos subcategory: rules parameters: - - *343 - *344 + - *345 - name: ruleset_id description: The ID of the ruleset. in: path @@ -95329,16 +95364,16 @@ paths: - branch - tag - push - enforcement: *301 + enforcement: *302 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *302 - conditions: *299 + items: *303 + conditions: *300 rules: description: An array of rules within the ruleset. type: array - items: *614 + items: *615 examples: default: value: @@ -95366,9 +95401,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *326 examples: - default: *624 + default: *625 '404': *6 '422': *15 '500': *55 @@ -95387,8 +95422,8 @@ paths: category: repos subcategory: rules parameters: - - *343 - *344 + - *345 - name: ruleset_id description: The ID of the ruleset. in: path @@ -95411,8 +95446,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *343 - *344 + - *345 - *17 - *19 - name: ruleset_id @@ -95428,9 +95463,9 @@ paths: application/json: schema: type: array - items: *328 + items: *329 examples: - default: *625 + default: *626 '404': *6 '500': *55 x-github: @@ -95449,8 +95484,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *343 - *344 + - *345 - name: ruleset_id description: The ID of the ruleset. in: path @@ -95468,7 +95503,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -95523,22 +95558,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *343 - *344 - - *627 + - *345 - *628 - *629 - *630 - *631 + - *632 - *61 - *19 - *17 - - *632 - *633 - *634 - *635 - *636 - *637 + - *638 responses: '200': description: Response @@ -95546,7 +95581,7 @@ paths: application/json: schema: type: array - items: &641 + items: &642 type: object properties: number: *178 @@ -95565,8 +95600,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *638 - resolution: *639 + state: *639 + resolution: *640 resolved_at: type: string format: date-time @@ -95662,7 +95697,7 @@ paths: pull request. ' - oneOf: *640 + oneOf: *641 nullable: true has_more_locations: type: boolean @@ -95826,16 +95861,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *343 - *344 - - *441 - - *637 + - *345 + - *442 + - *638 responses: '200': description: Response content: application/json: - schema: *641 + schema: *642 examples: default: value: @@ -95889,9 +95924,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *343 - *344 - - *441 + - *345 + - *442 requestBody: required: true content: @@ -95899,8 +95934,8 @@ paths: schema: type: object properties: - state: *638 - resolution: *639 + state: *639 + resolution: *640 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -95936,7 +95971,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: default: value: @@ -96031,9 +96066,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *343 - *344 - - *441 + - *345 + - *442 - *19 - *17 responses: @@ -96044,7 +96079,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &800 + items: &801 type: object properties: type: @@ -96070,7 +96105,6 @@ paths: example: commit details: oneOf: - - *642 - *643 - *644 - *645 @@ -96083,6 +96117,7 @@ paths: - *652 - *653 - *654 + - *655 examples: default: value: @@ -96168,8 +96203,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -96177,14 +96212,14 @@ paths: schema: type: object properties: - reason: &656 + reason: &657 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *655 + placeholder_id: *656 required: - reason - placeholder_id @@ -96201,7 +96236,7 @@ paths: schema: type: object properties: - reason: *656 + reason: *657 expire_at: type: string format: date-time @@ -96247,8 +96282,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: - - *343 - *344 + - *345 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -96263,7 +96298,7 @@ paths: properties: incremental_scans: type: array - items: &657 + items: &658 description: Information on a single scan performed by secret scanning on the repository type: object @@ -96289,15 +96324,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *657 + items: *658 backfill_scans: type: array - items: *657 + items: *658 custom_pattern_backfill_scans: type: array items: allOf: - - *657 + - *658 - type: object properties: pattern_name: @@ -96367,8 +96402,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *343 - *344 + - *345 - *61 - name: sort description: The property to sort the results by. @@ -96412,9 +96447,9 @@ paths: application/json: schema: type: array - items: *658 + items: *659 examples: - default: *659 + default: *660 '400': *14 '404': *6 x-github: @@ -96437,8 +96472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -96511,7 +96546,7 @@ paths: login: type: string description: The username of the user credited. - type: *331 + type: *332 required: - login - type @@ -96598,9 +96633,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: &661 + default: &662 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -96833,8 +96868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -96938,7 +96973,7 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: default: value: @@ -97085,17 +97120,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *343 - *344 - - *660 + - *345 + - *661 responses: '200': description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *661 + default: *662 '403': *29 '404': *6 x-github: @@ -97119,9 +97154,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *343 - *344 - - *660 + - *345 + - *661 requestBody: required: true content: @@ -97194,7 +97229,7 @@ paths: login: type: string description: The username of the user credited. - type: *331 + type: *332 required: - login - type @@ -97280,10 +97315,10 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *661 - add_credit: *661 + default: *662 + add_credit: *662 '403': *29 '404': *6 '422': @@ -97321,9 +97356,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: - - *343 - *344 - - *660 + - *345 + - *661 responses: '202': *39 '400': *14 @@ -97350,17 +97385,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *343 - *344 - - *660 + - *345 + - *661 responses: '202': description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *348 + default: *349 '400': *14 '422': *15 '403': *29 @@ -97386,8 +97421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -97486,8 +97521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *343 - *344 + - *345 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -97496,7 +97531,7 @@ paths: application/json: schema: type: array - items: &662 + items: &663 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -97529,8 +97564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -97606,8 +97641,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -97703,8 +97738,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *343 - *344 + - *345 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -97858,8 +97893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *343 - *344 + - *345 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -97869,7 +97904,7 @@ paths: application/json: schema: type: array - items: *662 + items: *663 examples: default: value: @@ -97902,8 +97937,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *343 - *344 + - *345 - name: sha in: path required: true @@ -97957,7 +97992,7 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: default: value: @@ -98011,8 +98046,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -98044,14 +98079,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *343 - *344 + - *345 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &664 + schema: &665 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -98119,8 +98154,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *343 - *344 + - *345 requestBody: required: false content: @@ -98146,7 +98181,7 @@ paths: description: Response content: application/json: - schema: *664 + schema: *665 examples: default: value: @@ -98173,8 +98208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -98194,8 +98229,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -98274,8 +98309,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *343 - *344 + - *345 - name: ref in: path required: true @@ -98311,8 +98346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *343 - *344 + - *345 - *17 - *19 responses: @@ -98324,7 +98359,7 @@ paths: type: array items: *197 examples: - default: *259 + default: *260 headers: Link: *67 '404': *6 @@ -98344,8 +98379,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *343 - *344 + - *345 - *19 - *17 responses: @@ -98353,7 +98388,7 @@ paths: description: Response content: application/json: - schema: &665 + schema: &666 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -98365,7 +98400,7 @@ paths: required: - names examples: - default: &666 + default: &667 value: names: - octocat @@ -98388,8 +98423,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -98420,9 +98455,9 @@ paths: description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: *666 + default: *667 '404': *6 '422': *7 x-github: @@ -98443,9 +98478,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *343 - *344 - - &667 + - *345 + - &668 name: per description: The time frame to display results for. in: query @@ -98474,7 +98509,7 @@ paths: example: 128 clones: type: array - items: &668 + items: &669 title: Traffic type: object properties: @@ -98561,8 +98596,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -98652,8 +98687,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *343 - *344 + - *345 responses: '200': description: Response @@ -98713,9 +98748,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *343 - *344 - - *667 + - *345 + - *668 responses: '200': description: Response @@ -98734,7 +98769,7 @@ paths: example: 3782 views: type: array - items: *668 + items: *669 required: - uniques - count @@ -98811,8 +98846,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *343 - *344 + - *345 requestBody: required: true content: @@ -99086,8 +99121,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *343 - *344 + - *345 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -99110,8 +99145,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -99133,8 +99168,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -99160,8 +99195,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *343 - *344 + - *345 - name: ref in: path required: true @@ -99253,9 +99288,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *348 + default: *349 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -99403,7 +99438,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *149 - - *553 + - *554 requestBody: required: true content: @@ -99467,9 +99502,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *556 + items: *557 examples: - default: *669 + default: *670 '400': *14 '403': *29 '404': *6 @@ -99506,7 +99541,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *149 - - *553 + - *554 requestBody: required: true content: @@ -99571,9 +99606,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *556 + items: *557 examples: - default: *669 + default: *670 '400': *14 '403': *29 '404': *6 @@ -99605,8 +99640,8 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *149 - - *553 - - *241 + - *554 + - *242 responses: '204': description: Issue field value deleted successfully @@ -99643,6 +99678,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 @@ -99745,7 +99783,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &670 + text_matches: &671 title: Search Result Text Matches type: array items: @@ -99907,7 +99945,7 @@ paths: enum: - author-date - committer-date - - &671 + - &672 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 @@ -99978,7 +100016,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *408 + properties: *409 nullable: true comment_count: type: integer @@ -99998,7 +100036,7 @@ paths: url: type: string format: uri - verification: *529 + verification: *530 required: - author - committer @@ -100017,7 +100055,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *408 + properties: *409 nullable: true parents: type: array @@ -100035,7 +100073,7 @@ paths: type: number node_id: type: string - text_matches: *670 + text_matches: *671 required: - sha - node_id @@ -100227,7 +100265,7 @@ paths: - interactions - created - updated - - *671 + - *672 - *17 - *19 - name: advanced_search @@ -100341,11 +100379,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: type: string state_reason: @@ -100362,8 +100400,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *279 - required: *280 + properties: *280 + required: *281 nullable: true comments: type: integer @@ -100377,7 +100415,7 @@ paths: type: string format: date-time nullable: true - text_matches: *670 + text_matches: *671 pull_request: type: object properties: @@ -100421,7 +100459,7 @@ paths: timeline_url: type: string format: uri - type: *242 + type: *243 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -100677,7 +100715,7 @@ paths: enum: - created - updated - - *671 + - *672 - *17 - *19 responses: @@ -100721,7 +100759,7 @@ paths: nullable: true score: type: number - text_matches: *670 + text_matches: *671 required: - id - node_id @@ -100806,7 +100844,7 @@ paths: - forks - help-wanted-issues - updated - - *671 + - *672 - *17 - *19 responses: @@ -101054,7 +101092,7 @@ paths: - admin - pull - push - text_matches: *670 + text_matches: *671 temp_clone_token: type: string allow_merge_commit: @@ -101354,7 +101392,7 @@ paths: type: string format: uri nullable: true - text_matches: *670 + text_matches: *671 related: type: array nullable: true @@ -101545,7 +101583,7 @@ paths: - followers - repositories - joined - - *671 + - *672 - *17 - *19 responses: @@ -101649,7 +101687,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *670 + text_matches: *671 blog: type: string nullable: true @@ -101728,7 +101766,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &674 + - &675 name: team_id description: The unique identifier of the team. in: path @@ -101740,9 +101778,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '404': *6 x-github: githubCloudOnly: false @@ -101769,7 +101807,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *674 + - *675 requestBody: required: true content: @@ -101832,16 +101870,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '201': description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '404': *6 '422': *15 '403': *29 @@ -101869,7 +101907,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *674 + - *675 responses: '204': description: Response @@ -101898,7 +101936,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *674 + - *675 - *17 - *19 responses: @@ -101908,9 +101946,9 @@ paths: application/json: schema: type: array - items: *236 + items: *237 examples: - default: *237 + default: *238 headers: Link: *67 x-github: @@ -101936,7 +101974,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *674 + - *675 - name: role description: Filters members returned by their role in the team. in: query @@ -101987,7 +102025,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *674 + - *675 - *71 responses: '204': @@ -102024,7 +102062,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *674 + - *675 - *71 responses: '204': @@ -102064,7 +102102,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *674 + - *675 - *71 responses: '204': @@ -102101,16 +102139,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *674 + - *675 - *71 responses: '200': description: Response content: application/json: - schema: *342 + schema: *343 examples: - response-if-user-is-a-team-maintainer: *675 + response-if-user-is-a-team-maintainer: *676 '404': *6 x-github: githubCloudOnly: false @@ -102143,7 +102181,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *674 + - *675 - *71 requestBody: required: false @@ -102169,9 +102207,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: - response-if-users-membership-with-team-is-now-pending: *676 + response-if-users-membership-with-team-is-now-pending: *677 '403': description: Forbidden if team synchronization is set up '422': @@ -102205,7 +102243,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *674 + - *675 - *71 responses: '204': @@ -102233,7 +102271,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *674 + - *675 - *17 - *19 responses: @@ -102245,7 +102283,7 @@ paths: type: array items: *160 examples: - default: *266 + default: *267 headers: Link: *67 '404': *6 @@ -102275,15 +102313,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *674 - - *343 + - *675 - *344 + - *345 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *677 + schema: *678 examples: alternative-response-with-extra-repository-information: value: @@ -102434,9 +102472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *674 - - *343 + - *675 - *344 + - *345 requestBody: required: false content: @@ -102486,9 +102524,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *674 - - *343 + - *675 - *344 + - *345 responses: '204': description: Response @@ -102513,7 +102551,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *674 + - *675 - *17 - *19 responses: @@ -102525,7 +102563,7 @@ paths: type: array items: *197 examples: - response-if-child-teams-exist: *678 + response-if-child-teams-exist: *679 headers: Link: *67 '404': *6 @@ -102558,7 +102596,7 @@ paths: application/json: schema: oneOf: - - &680 + - &681 title: Private User description: Private User type: object @@ -102761,7 +102799,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *679 + - *680 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -102914,7 +102952,7 @@ paths: description: Response content: application/json: - schema: *680 + schema: *681 examples: default: value: @@ -103117,9 +103155,9 @@ paths: type: integer codespaces: type: array - items: *247 + items: *248 examples: - default: *248 + default: *249 '304': *37 '500': *55 '401': *25 @@ -103258,17 +103296,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *247 + schema: *248 examples: - default: *464 + default: *465 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *247 + schema: *248 examples: - default: *464 + default: *465 '401': *25 '403': *29 '404': *6 @@ -103312,7 +103350,7 @@ paths: type: integer secrets: type: array - items: &681 + items: &682 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -103352,7 +103390,7 @@ paths: - visibility - selected_repositories_url examples: - default: *467 + default: *468 headers: Link: *67 x-github: @@ -103428,7 +103466,7 @@ paths: description: Response content: application/json: - schema: *681 + schema: *682 examples: default: value: @@ -103718,15 +103756,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *249 + - *250 responses: '200': description: Response content: application/json: - schema: *247 + schema: *248 examples: - default: *464 + default: *465 '304': *37 '500': *55 '401': *25 @@ -103752,7 +103790,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *249 + - *250 requestBody: required: false content: @@ -103782,9 +103820,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *248 examples: - default: *464 + default: *465 '401': *25 '403': *29 '404': *6 @@ -103806,7 +103844,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *249 + - *250 responses: '202': *39 '304': *37 @@ -103835,13 +103873,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *249 + - *250 responses: '202': description: Response content: application/json: - schema: &682 + schema: &683 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -103882,7 +103920,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &683 + default: &684 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -103914,7 +103952,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *249 + - *250 - name: export_id in: path required: true @@ -103927,9 +103965,9 @@ paths: description: Response content: application/json: - schema: *682 + schema: *683 examples: - default: *683 + default: *684 '404': *6 x-github: githubCloudOnly: false @@ -103950,7 +103988,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *249 + - *250 responses: '200': description: Response @@ -103966,9 +104004,9 @@ paths: type: integer machines: type: array - items: *684 + items: *685 examples: - default: *685 + default: *686 '304': *37 '500': *55 '401': *25 @@ -103997,7 +104035,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *249 + - *250 requestBody: required: true content: @@ -104047,13 +104085,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *346 + repository: *347 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *465 - required: *466 + properties: *466 + required: *467 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -104827,15 +104865,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *249 + - *250 responses: '200': description: Response content: application/json: - schema: *247 + schema: *248 examples: - default: *464 + default: *465 '304': *37 '500': *55 '400': *14 @@ -104867,15 +104905,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *249 + - *250 responses: '200': description: Response content: application/json: - schema: *247 + schema: *248 examples: - default: *464 + default: *465 '500': *55 '401': *25 '403': *29 @@ -104905,9 +104943,9 @@ paths: application/json: schema: type: array - items: *260 + items: *261 examples: - default: &696 + default: &697 value: - id: 197 name: hello_docker @@ -105008,7 +105046,7 @@ paths: application/json: schema: type: array - items: &686 + items: &687 title: Email description: Email type: object @@ -105073,9 +105111,9 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: - default: &698 + default: &699 value: - email: octocat@github.com verified: true @@ -105150,7 +105188,7 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: default: value: @@ -105406,7 +105444,7 @@ paths: application/json: schema: type: array - items: &687 + items: &688 title: GPG Key description: A unique encryption key type: object @@ -105537,7 +105575,7 @@ paths: - subkeys - revoked examples: - default: &714 + default: &715 value: - id: 3 name: Octocat's GPG Key @@ -105622,9 +105660,9 @@ paths: description: Response content: application/json: - schema: *687 + schema: *688 examples: - default: &688 + default: &689 value: id: 3 name: Octocat's GPG Key @@ -105681,7 +105719,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &689 + - &690 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -105693,9 +105731,9 @@ paths: description: Response content: application/json: - schema: *687 + schema: *688 examples: - default: *688 + default: *689 '404': *6 '304': *37 '403': *29 @@ -105718,7 +105756,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *689 + - *690 responses: '204': description: Response @@ -105997,12 +106035,12 @@ paths: application/json: schema: anyOf: - - *234 + - *235 - type: object properties: {} additionalProperties: false examples: - default: *235 + default: *236 '204': description: Response when there are no restrictions x-github: @@ -106026,7 +106064,7 @@ paths: required: true content: application/json: - schema: *540 + schema: *541 examples: default: value: @@ -106037,7 +106075,7 @@ paths: description: Response content: application/json: - schema: *234 + schema: *235 examples: default: value: @@ -106118,7 +106156,7 @@ paths: - closed - all default: open - - *245 + - *246 - name: sort description: What to sort results by. in: query @@ -106143,7 +106181,7 @@ paths: type: array items: *85 examples: - default: *246 + default: *247 headers: Link: *67 '404': *6 @@ -106176,7 +106214,7 @@ paths: application/json: schema: type: array - items: &690 + items: &691 title: Key description: Key type: object @@ -106277,9 +106315,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *691 examples: - default: &691 + default: &692 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -106312,15 +106350,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *575 + - *576 responses: '200': description: Response content: application/json: - schema: *690 + schema: *691 examples: - default: *691 + default: *692 '404': *6 '304': *37 '403': *29 @@ -106343,7 +106381,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *575 + - *576 responses: '204': description: Response @@ -106376,7 +106414,7 @@ paths: application/json: schema: type: array - items: &692 + items: &693 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -106444,7 +106482,7 @@ paths: - account - plan examples: - default: &693 + default: &694 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -106506,9 +106544,9 @@ paths: application/json: schema: type: array - items: *692 + items: *693 examples: - default: *693 + default: *694 headers: Link: *67 '304': *37 @@ -106548,7 +106586,7 @@ paths: application/json: schema: type: array - items: *251 + items: *252 examples: default: value: @@ -106662,7 +106700,7 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: default: value: @@ -106749,7 +106787,7 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: default: value: @@ -106821,7 +106859,7 @@ paths: application/json: schema: type: array - items: *253 + items: *254 examples: default: value: @@ -107074,7 +107112,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *254 examples: default: value: @@ -107254,7 +107292,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *254 + - *255 - name: exclude in: query required: false @@ -107267,7 +107305,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *254 examples: default: value: @@ -107461,7 +107499,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *254 + - *255 responses: '302': description: Response @@ -107487,7 +107525,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *254 + - *255 responses: '204': description: Response @@ -107516,8 +107554,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *254 - - *694 + - *255 + - *695 responses: '204': description: Response @@ -107541,7 +107579,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *254 + - *255 - *17 - *19 responses: @@ -107553,7 +107591,7 @@ paths: type: array items: *160 examples: - default: *266 + default: *267 headers: Link: *67 '404': *6 @@ -107650,7 +107688,7 @@ paths: - docker - nuget - container - - *695 + - *696 - *19 - *17 responses: @@ -107660,10 +107698,10 @@ paths: application/json: schema: type: array - items: *260 + items: *261 examples: - default: *696 - '400': *697 + default: *697 + '400': *698 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -107683,16 +107721,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *262 - *263 + - *264 responses: '200': description: Response content: application/json: - schema: *260 + schema: *261 examples: - default: &715 + default: &716 value: id: 40201 name: octo-name @@ -107805,8 +107843,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *262 - *263 + - *264 responses: '204': description: Response @@ -107836,8 +107874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *262 - *263 + - *264 - name: token description: package token schema: @@ -107869,8 +107907,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: - - *262 - *263 + - *264 - *19 - *17 - name: state @@ -107890,7 +107928,7 @@ paths: application/json: schema: type: array - items: *264 + items: *265 examples: default: value: @@ -107939,15 +107977,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *262 - *263 - - *265 + - *264 + - *266 responses: '200': description: Response content: application/json: - schema: *264 + schema: *265 examples: default: value: @@ -107983,9 +108021,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *262 - *263 - - *265 + - *264 + - *266 responses: '204': description: Response @@ -108015,9 +108053,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *262 - *263 - - *265 + - *264 + - *266 responses: '204': description: Response @@ -108054,9 +108092,9 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: - default: *698 + default: *699 headers: Link: *67 '304': *37 @@ -108169,7 +108207,7 @@ paths: type: array items: *79 examples: - default: &705 + default: &706 summary: Default response value: - id: 1296269 @@ -108473,9 +108511,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *347 examples: - default: *348 + default: *349 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -108519,9 +108557,9 @@ paths: application/json: schema: type: array - items: *542 + items: *543 examples: - default: *699 + default: *700 headers: Link: *67 '304': *37 @@ -108544,7 +108582,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *238 + - *239 responses: '204': description: Response @@ -108573,7 +108611,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *238 + - *239 responses: '204': description: Response @@ -108606,7 +108644,7 @@ paths: application/json: schema: type: array - items: &700 + items: &701 title: Social account description: Social media account type: object @@ -108621,7 +108659,7 @@ paths: - provider - url examples: - default: &701 + default: &702 value: - provider: twitter url: https://twitter.com/github @@ -108683,9 +108721,9 @@ paths: application/json: schema: type: array - items: *700 + items: *701 examples: - default: *701 + default: *702 '422': *15 '304': *37 '404': *6 @@ -108772,7 +108810,7 @@ paths: application/json: schema: type: array - items: &702 + items: &703 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -108792,7 +108830,7 @@ paths: - title - created_at examples: - default: &733 + default: &734 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -108856,9 +108894,9 @@ paths: description: Response content: application/json: - schema: *702 + schema: *703 examples: - default: &703 + default: &704 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -108888,7 +108926,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: - - &704 + - &705 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -108900,9 +108938,9 @@ paths: description: Response content: application/json: - schema: *702 + schema: *703 examples: - default: *703 + default: *704 '404': *6 '304': *37 '403': *29 @@ -108925,7 +108963,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: - - *704 + - *705 responses: '204': description: Response @@ -108954,7 +108992,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &734 + - &735 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 @@ -108979,11 +109017,11 @@ paths: type: array items: *79 examples: - default-response: *705 + default-response: *706 application/vnd.github.v3.star+json: schema: type: array - items: &735 + items: &736 title: Starred Repository description: Starred Repository type: object @@ -109139,8 +109177,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: - - *343 - *344 + - *345 responses: '204': description: Response if this repository is starred by you @@ -109168,8 +109206,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -109193,8 +109231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *343 - *344 + - *345 responses: '204': description: Response @@ -109229,7 +109267,7 @@ paths: type: array items: *160 examples: - default: *266 + default: *267 headers: Link: *67 '304': *37 @@ -109266,7 +109304,7 @@ paths: application/json: schema: type: array - items: *339 + items: *340 examples: default: value: @@ -109352,10 +109390,10 @@ paths: application/json: schema: oneOf: + - *681 - *680 - - *679 examples: - default-response: &709 + default-response: &710 summary: Default response value: login: octocat @@ -109390,7 +109428,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &710 + response-with-git-hub-plan-information: &711 summary: Response with GitHub plan information value: login: octocat @@ -109447,14 +109485,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &707 + - &708 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *278 + - *279 requestBody: required: true description: Details of the draft item to create in the project. @@ -109488,9 +109526,9 @@ paths: description: Response content: application/json: - schema: *284 + schema: *285 examples: - draft_issue: *285 + draft_issue: *286 '304': *37 '403': *29 '401': *25 @@ -109513,7 +109551,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *706 + - *707 - *17 responses: '200': @@ -109548,8 +109586,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *707 - - *278 + - *708 + - *279 requestBody: required: true content: @@ -109620,17 +109658,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *708 + schema: *709 examples: table_view: summary: Response for creating a table view - value: *289 + value: *290 board_view: summary: Response for creating a board view with filter - value: *289 + value: *290 roadmap_view: summary: Response for creating a roadmap view - value: *289 + value: *290 '304': *37 '403': *29 '401': *25 @@ -109672,11 +109710,11 @@ paths: application/json: schema: oneOf: + - *681 - *680 - - *679 examples: - default-response: *709 - response-with-git-hub-plan-information: *710 + default-response: *710 + response-with-git-hub-plan-information: *711 '404': *6 x-github: githubCloudOnly: false @@ -109726,8 +109764,8 @@ paths: required: - subject_digests examples: - default: *711 - withPredicateType: *712 + default: *712 + withPredicateType: *713 responses: '200': description: Response @@ -109780,7 +109818,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *713 + default: *714 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110000,7 +110038,7 @@ paths: initiator: type: string examples: - default: *404 + default: *405 '201': description: Response content: @@ -110053,9 +110091,9 @@ paths: application/json: schema: type: array - items: *260 + items: *261 examples: - default: *696 + default: *697 '403': *29 '401': *25 x-github: @@ -110439,9 +110477,9 @@ paths: application/json: schema: type: array - items: *687 + items: *688 examples: - default: *714 + default: *715 headers: Link: *67 x-github: @@ -110545,7 +110583,7 @@ paths: application/json: schema: *22 examples: - default: *539 + default: *540 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -110669,7 +110707,7 @@ paths: - docker - nuget - container - - *695 + - *696 - *71 - *19 - *17 @@ -110680,12 +110718,12 @@ paths: application/json: schema: type: array - items: *260 + items: *261 examples: - default: *696 + default: *697 '403': *29 '401': *25 - '400': *697 + '400': *698 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -110705,17 +110743,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *262 - *263 + - *264 - *71 responses: '200': description: Response content: application/json: - schema: *260 + schema: *261 examples: - default: *715 + default: *716 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -110736,8 +110774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *262 - *263 + - *264 - *71 responses: '204': @@ -110770,8 +110808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *262 - *263 + - *264 - *71 - name: token description: package token @@ -110804,8 +110842,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: - - *262 - *263 + - *264 - *71 responses: '200': @@ -110814,7 +110852,7 @@ paths: application/json: schema: type: array - items: *264 + items: *265 examples: default: value: @@ -110872,16 +110910,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *262 - *263 - - *265 + - *264 + - *266 - *71 responses: '200': description: Response content: application/json: - schema: *264 + schema: *265 examples: default: value: @@ -110916,10 +110954,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *262 - *263 + - *264 - *71 - - *265 + - *266 responses: '204': description: Response @@ -110951,10 +110989,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *262 - *263 + - *264 - *71 - - *265 + - *266 responses: '204': description: Response @@ -110995,9 +111033,9 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: *277 + default: *278 headers: Link: *67 '304': *37 @@ -111019,16 +111057,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *278 + - *279 - *71 responses: '200': description: Response content: application/json: - schema: *276 + schema: *277 examples: - default: *277 + default: *278 headers: Link: *67 '304': *37 @@ -111050,7 +111088,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *278 + - *279 - *71 - *17 - *47 @@ -111062,9 +111100,9 @@ paths: application/json: schema: type: array - items: *282 + items: *283 examples: - default: *716 + default: *717 headers: Link: *67 '304': *37 @@ -111086,7 +111124,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *71 - - *278 + - *279 requestBody: required: true content: @@ -111124,7 +111162,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *717 + items: *718 required: - name - data_type @@ -111140,7 +111178,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *718 + iteration_configuration: *719 required: - name - data_type @@ -111162,20 +111200,20 @@ paths: value: name: Due date data_type: date - single_select_field: *719 - iteration_field: *720 + single_select_field: *720 + iteration_field: *721 responses: '201': description: Response content: application/json: - schema: *282 + schema: *283 examples: - text_field: *721 - number_field: *722 - date_field: *723 - single_select_field: *724 - iteration_field: *725 + text_field: *722 + number_field: *723 + date_field: *724 + single_select_field: *725 + iteration_field: *726 '304': *37 '403': *29 '401': *25 @@ -111196,17 +111234,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *278 - - *726 + - *279 + - *727 - *71 responses: '200': description: Response content: application/json: - schema: *282 + schema: *283 examples: - default: *727 + default: *728 headers: Link: *67 '304': *37 @@ -111229,7 +111267,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *278 + - *279 - *71 - *47 - *48 @@ -111262,9 +111300,9 @@ paths: application/json: schema: type: array - items: *286 + items: *287 examples: - default: *287 + default: *288 headers: Link: *67 '304': *37 @@ -111286,7 +111324,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *71 - - *278 + - *279 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -111356,22 +111394,22 @@ paths: description: Response content: application/json: - schema: *284 + schema: *285 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *285 + value: *286 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *285 + value: *286 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *285 + value: *286 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *285 + value: *286 '304': *37 '403': *29 '401': *25 @@ -111391,9 +111429,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *278 + - *279 - *71 - - *288 + - *289 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -111413,9 +111451,9 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: - default: *287 + default: *288 headers: Link: *67 '304': *37 @@ -111436,9 +111474,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *278 + - *279 - *71 - - *288 + - *289 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -111508,13 +111546,13 @@ paths: description: Response content: application/json: - schema: *286 + schema: *287 examples: - text_field: *287 - number_field: *287 - date_field: *287 - single_select_field: *287 - iteration_field: *287 + text_field: *288 + number_field: *288 + date_field: *288 + single_select_field: *288 + iteration_field: *288 '401': *25 '403': *29 '404': *6 @@ -111534,9 +111572,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *278 + - *279 - *71 - - *288 + - *289 responses: '204': description: Response @@ -111558,9 +111596,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *278 + - *279 - *71 - - *728 + - *729 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -111586,9 +111624,9 @@ paths: application/json: schema: type: array - items: *286 + items: *287 examples: - default: *287 + default: *288 headers: Link: *67 '304': *37 @@ -111809,7 +111847,7 @@ paths: type: array items: *160 examples: - default: *266 + default: *267 headers: Link: *67 x-github: @@ -111835,7 +111873,7 @@ paths: - *123 - *125 - *124 - - *729 + - *730 - *126 responses: '200': @@ -111966,7 +112004,7 @@ paths: parameters: - *71 - *123 - - *730 + - *731 - *124 responses: '200': @@ -112065,9 +112103,9 @@ paths: - *123 - *125 - *124 - - *731 - - *126 - *732 + - *126 + - *733 responses: '200': description: Response when getting a billing usage summary @@ -112201,9 +112239,9 @@ paths: application/json: schema: type: array - items: *700 + items: *701 examples: - default: *701 + default: *702 headers: Link: *67 x-github: @@ -112233,9 +112271,9 @@ paths: application/json: schema: type: array - items: *702 + items: *703 examples: - default: *733 + default: *734 headers: Link: *67 x-github: @@ -112260,7 +112298,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *71 - - *734 + - *735 - *61 - *17 - *19 @@ -112272,11 +112310,11 @@ paths: schema: anyOf: - type: array - items: *735 + items: *736 - type: array items: *79 examples: - default-response: *705 + default-response: *706 headers: Link: *67 x-github: @@ -112307,7 +112345,7 @@ paths: type: array items: *160 examples: - default: *266 + default: *267 headers: Link: *67 x-github: @@ -112435,7 +112473,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &736 + enterprise: &737 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -112493,7 +112531,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &737 + installation: &738 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -112512,7 +112550,7 @@ x-webhooks: required: - id - node_id - organization: &738 + organization: &739 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -112572,13 +112610,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &739 + repository: &740 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &771 + properties: &772 id: description: Unique identifier of the repository example: 42 @@ -113273,7 +113311,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &772 + required: &773 - archive_url - assignees_url - blobs_url @@ -113347,7 +113385,7 @@ x-webhooks: - watchers_count - created_at - updated_at - x-github-breaking-changes: &773 + x-github-breaking-changes: &774 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -113438,10 +113476,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -113517,11 +113555,11 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 - rule: &740 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 + rule: &741 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) @@ -113744,11 +113782,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 - rule: *740 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 + rule: *741 sender: *4 required: - action @@ -113931,11 +113969,11 @@ x-webhooks: - everyone required: - from - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 - rule: *740 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 + rule: *741 sender: *4 required: - action @@ -114019,7 +114057,7 @@ x-webhooks: type: string enum: - completed - check_run: &742 + check_run: &743 title: CheckRun description: A check performed on the code of a given code change type: object @@ -114110,7 +114148,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *741 + deployment: *742 details_url: example: https://example.com type: string @@ -114195,10 +114233,10 @@ x-webhooks: - output - app - pull_requests - installation: *737 - enterprise: *736 - organization: *738 - repository: *739 + installation: *738 + enterprise: *737 + organization: *739 + repository: *740 sender: *4 required: - check_run @@ -114589,11 +114627,11 @@ x-webhooks: type: string enum: - created - check_run: *742 - installation: *737 - enterprise: *736 - organization: *738 - repository: *739 + check_run: *743 + installation: *738 + enterprise: *737 + organization: *739 + repository: *740 sender: *4 required: - check_run @@ -114987,11 +115025,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *742 - installation: *737 - enterprise: *736 - organization: *738 - repository: *739 + check_run: *743 + installation: *738 + enterprise: *737 + organization: *739 + repository: *740 requested_action: description: The action requested by the user. type: object @@ -115394,11 +115432,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *742 - installation: *737 - enterprise: *736 - organization: *738 - repository: *739 + check_run: *743 + installation: *738 + enterprise: *737 + organization: *739 + repository: *740 sender: *4 required: - check_run @@ -116368,10 +116406,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -117060,10 +117098,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -117746,10 +117784,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -117915,7 +117953,7 @@ x-webhooks: required: - login - id - dismissed_comment: *436 + dismissed_comment: *437 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -118060,20 +118098,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &743 + commit_oid: &744 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: *736 - installation: *737 - organization: *738 - ref: &744 + enterprise: *737 + installation: *738 + organization: *739 + ref: &745 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: *739 + repository: *740 sender: *4 required: - action @@ -118238,7 +118276,7 @@ x-webhooks: required: - login - id - dismissed_comment: *436 + dismissed_comment: *437 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -118468,12 +118506,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *743 - enterprise: *736 - installation: *737 - organization: *738 - ref: *744 - repository: *739 + commit_oid: *744 + enterprise: *737 + installation: *738 + organization: *739 + ref: *745 + repository: *740 sender: *4 required: - action @@ -118568,7 +118606,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *436 + dismissed_comment: *437 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -118739,12 +118777,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *743 - enterprise: *736 - installation: *737 - organization: *738 - ref: *744 - repository: *739 + commit_oid: *744 + enterprise: *737 + installation: *738 + organization: *739 + ref: *745 + repository: *740 sender: *4 required: - action @@ -118910,7 +118948,7 @@ x-webhooks: required: - login - id - dismissed_comment: *436 + dismissed_comment: *437 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -119076,12 +119114,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *743 - enterprise: *736 - installation: *737 - organization: *738 - ref: *744 - repository: *739 + commit_oid: *744 + enterprise: *737 + installation: *738 + organization: *739 + ref: *745 + repository: *740 sender: *4 required: - action @@ -119180,7 +119218,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *436 + dismissed_comment: *437 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -119355,16 +119393,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 ref: 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 nullable: true - repository: *739 + repository: *740 sender: *4 required: - action @@ -119461,7 +119499,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *436 + dismissed_comment: *437 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -119601,12 +119639,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *743 - enterprise: *736 - installation: *737 - organization: *738 - ref: *744 - repository: *739 + commit_oid: *744 + enterprise: *737 + installation: *738 + organization: *739 + ref: *745 + repository: *740 sender: *4 required: - action @@ -119772,7 +119810,7 @@ x-webhooks: required: - login - id - dismissed_comment: *436 + dismissed_comment: *437 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -119917,10 +119955,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -120175,10 +120213,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -120258,18 +120296,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *738 - pusher_type: &745 + organization: *739 + pusher_type: &746 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &746 + ref: &747 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -120279,7 +120317,7 @@ x-webhooks: enum: - tag - branch - repository: *739 + repository: *740 sender: *4 required: - ref @@ -120361,10 +120399,10 @@ x-webhooks: type: string enum: - created - definition: *290 - enterprise: *736 - installation: *737 - organization: *738 + definition: *291 + enterprise: *737 + installation: *738 + organization: *739 sender: *4 required: - action @@ -120449,9 +120487,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 sender: *4 required: - action @@ -120528,10 +120566,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *290 - enterprise: *736 - installation: *737 - organization: *738 + definition: *291 + enterprise: *737 + installation: *738 + organization: *739 sender: *4 required: - action @@ -120608,10 +120646,10 @@ x-webhooks: type: string enum: - updated - definition: *290 - enterprise: *736 - installation: *737 - organization: *738 + definition: *291 + enterprise: *737 + installation: *738 + organization: *739 sender: *4 required: - action @@ -120688,19 +120726,19 @@ x-webhooks: type: string enum: - updated - enterprise: *736 - installation: *737 - repository: *739 - organization: *738 + enterprise: *737 + installation: *738 + repository: *740 + organization: *739 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *294 + items: *295 old_property_values: type: array description: The old custom property values for the repository. - items: *294 + items: *295 required: - action - repository @@ -120776,18 +120814,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *736 - installation: *737 - organization: *738 - pusher_type: *745 - ref: *746 + enterprise: *737 + installation: *738 + organization: *739 + pusher_type: *746 + ref: *747 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *739 + repository: *740 sender: *4 required: - ref @@ -120867,11 +120905,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *498 - installation: *737 - organization: *738 - enterprise: *736 - repository: *739 + alert: *499 + installation: *738 + organization: *739 + enterprise: *737 + repository: *740 sender: *4 required: - action @@ -120951,11 +120989,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *498 - installation: *737 - organization: *738 - enterprise: *736 - repository: *739 + alert: *499 + installation: *738 + organization: *739 + enterprise: *737 + repository: *740 sender: *4 required: - action @@ -121036,11 +121074,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *498 - installation: *737 - organization: *738 - enterprise: *736 - repository: *739 + alert: *499 + installation: *738 + organization: *739 + enterprise: *737 + repository: *740 sender: *4 required: - action @@ -121121,11 +121159,11 @@ x-webhooks: type: string enum: - created - alert: *498 - installation: *737 - organization: *738 - enterprise: *736 - repository: *739 + alert: *499 + installation: *738 + organization: *739 + enterprise: *737 + repository: *740 sender: *4 required: - action @@ -121204,11 +121242,11 @@ x-webhooks: type: string enum: - dismissed - alert: *498 - installation: *737 - organization: *738 - enterprise: *736 - repository: *739 + alert: *499 + installation: *738 + organization: *739 + enterprise: *737 + repository: *740 sender: *4 required: - action @@ -121287,11 +121325,11 @@ x-webhooks: type: string enum: - fixed - alert: *498 - installation: *737 - organization: *738 - enterprise: *736 - repository: *739 + alert: *499 + installation: *738 + organization: *739 + enterprise: *737 + repository: *740 sender: *4 required: - action @@ -121371,11 +121409,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *498 - installation: *737 - organization: *738 - enterprise: *736 - repository: *739 + alert: *499 + installation: *738 + organization: *739 + enterprise: *737 + repository: *740 sender: *4 required: - action @@ -121454,11 +121492,11 @@ x-webhooks: type: string enum: - reopened - alert: *498 - installation: *737 - organization: *738 - enterprise: *736 - repository: *739 + alert: *499 + installation: *738 + organization: *739 + enterprise: *737 + repository: *740 sender: *4 required: - action @@ -121535,9 +121573,9 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - key: &747 + enterprise: *737 + installation: *738 + key: &748 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -121573,8 +121611,8 @@ x-webhooks: - verified - created_at - read_only - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -121651,11 +121689,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - key: *747 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + key: *748 + organization: *739 + repository: *740 sender: *4 required: - action @@ -122211,12 +122249,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 - workflow: &753 + workflow: &754 title: Workflow type: object nullable: true @@ -122957,15 +122995,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *748 - required: *749 + properties: *749 + required: *750 nullable: true pull_requests: type: array - items: *594 - repository: *739 - organization: *738 - installation: *737 + items: *595 + repository: *740 + organization: *739 + installation: *738 sender: *4 responses: '200': @@ -123036,7 +123074,7 @@ x-webhooks: type: string enum: - approved - approver: &750 + approver: &751 type: object properties: avatar_url: @@ -123079,11 +123117,11 @@ x-webhooks: type: string comment: type: string - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 - reviewers: &751 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 + reviewers: &752 type: array items: type: object @@ -123162,7 +123200,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &752 + workflow_job_run: &753 type: object properties: conclusion: @@ -123893,18 +123931,18 @@ x-webhooks: type: string enum: - rejected - approver: *750 + approver: *751 comment: type: string - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 - reviewers: *751 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 + reviewers: *752 sender: *4 since: type: string - workflow_job_run: *752 + workflow_job_run: *753 workflow_job_runs: type: array items: @@ -124608,13 +124646,13 @@ x-webhooks: type: string enum: - requested - enterprise: *736 + enterprise: *737 environment: type: string - installation: *737 - organization: *738 - repository: *739 - requestor: &758 + installation: *738 + organization: *739 + repository: *740 + requestor: &759 title: User type: object nullable: true @@ -126503,12 +126541,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 - workflow: *753 + workflow: *754 workflow_run: title: Deployment Workflow Run type: object @@ -127188,7 +127226,7 @@ x-webhooks: type: string enum: - answered - answer: &756 + answer: &757 type: object properties: author_association: @@ -127345,11 +127383,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -127476,11 +127514,11 @@ x-webhooks: - from required: - category - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -127563,11 +127601,11 @@ x-webhooks: type: string enum: - closed - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -127649,7 +127687,7 @@ x-webhooks: type: string enum: - created - comment: &755 + comment: &756 type: object properties: author_association: @@ -127806,11 +127844,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -127893,12 +127931,12 @@ x-webhooks: type: string enum: - deleted - comment: *755 - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + comment: *756 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -127993,12 +128031,12 @@ x-webhooks: - from required: - body - comment: *755 - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + comment: *756 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -128082,11 +128120,11 @@ x-webhooks: type: string enum: - created - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -128168,11 +128206,11 @@ x-webhooks: type: string enum: - deleted - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -128272,11 +128310,11 @@ x-webhooks: type: string required: - from - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -128358,10 +128396,10 @@ x-webhooks: type: string enum: - labeled - discussion: *754 - enterprise: *736 - installation: *737 - label: &757 + discussion: *755 + enterprise: *737 + installation: *738 + label: &758 title: Label type: object properties: @@ -128393,8 +128431,8 @@ x-webhooks: - color - default - description - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -128477,11 +128515,11 @@ x-webhooks: type: string enum: - locked - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -128563,11 +128601,11 @@ x-webhooks: type: string enum: - pinned - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -128649,11 +128687,11 @@ x-webhooks: type: string enum: - reopened - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -128738,16 +128776,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *754 - new_repository: *739 + new_discussion: *755 + new_repository: *740 required: - new_discussion - new_repository - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -128830,10 +128868,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *754 - old_answer: *756 - organization: *738 - repository: *739 + discussion: *755 + old_answer: *757 + organization: *739 + repository: *740 sender: *4 required: - action @@ -128915,12 +128953,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *754 - enterprise: *736 - installation: *737 - label: *757 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + label: *758 + organization: *739 + repository: *740 sender: *4 required: - action @@ -129003,11 +129041,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -129089,11 +129127,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *754 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + discussion: *755 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -129166,7 +129204,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *736 + enterprise: *737 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -129826,9 +129864,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *737 - organization: *738 - repository: *739 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - forkee @@ -129974,9 +130012,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 pages: description: The pages that were updated. type: array @@ -130013,7 +130051,7 @@ x-webhooks: - action - sha - html_url - repository: *739 + repository: *740 sender: *4 required: - pages @@ -130089,10 +130127,10 @@ x-webhooks: type: string enum: - created - enterprise: *736 + enterprise: *737 installation: *22 - organization: *738 - repositories: &759 + organization: *739 + repositories: &760 description: An array of repository objects that the installation can access. type: array @@ -130118,8 +130156,8 @@ x-webhooks: - name - full_name - private - repository: *739 - requester: *758 + repository: *740 + requester: *759 sender: *4 required: - action @@ -130194,11 +130232,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 + enterprise: *737 installation: *22 - organization: *738 - repositories: *759 - repository: *739 + organization: *739 + repositories: *760 + repository: *740 requester: nullable: true sender: *4 @@ -130274,11 +130312,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *736 + enterprise: *737 installation: *22 - organization: *738 - repositories: *759 - repository: *739 + organization: *739 + repositories: *760 + repository: *740 requester: nullable: true sender: *4 @@ -130354,10 +130392,10 @@ x-webhooks: type: string enum: - added - enterprise: *736 + enterprise: *737 installation: *22 - organization: *738 - repositories_added: &760 + organization: *739 + repositories_added: &761 description: An array of repository objects, which were added to the installation. type: array @@ -130403,15 +130441,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *739 - repository_selection: &761 + repository: *740 + repository_selection: &762 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *758 + requester: *759 sender: *4 required: - action @@ -130490,10 +130528,10 @@ x-webhooks: type: string enum: - removed - enterprise: *736 + enterprise: *737 installation: *22 - organization: *738 - repositories_added: *760 + organization: *739 + repositories_added: *761 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -130520,9 +130558,9 @@ x-webhooks: - name - full_name - private - repository: *739 - repository_selection: *761 - requester: *758 + repository: *740 + repository_selection: *762 + requester: *759 sender: *4 required: - action @@ -130601,11 +130639,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *736 + enterprise: *737 installation: *22 - organization: *738 - repositories: *759 - repository: *739 + organization: *739 + repositories: *760 + repository: *740 requester: nullable: true sender: *4 @@ -130783,10 +130821,10 @@ x-webhooks: type: string required: - from - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 target_type: type: string @@ -130865,11 +130903,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *736 + enterprise: *737 installation: *22 - organization: *738 - repositories: *759 - repository: *739 + organization: *739 + repositories: *760 + repository: *740 requester: nullable: true sender: *4 @@ -131043,8 +131081,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *571 - required: *572 + properties: *572 + required: *573 nullable: true user: title: User @@ -131129,8 +131167,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -131919,8 +131957,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 state: description: State of the issue; either 'open' or 'closed' type: string @@ -131936,7 +131974,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -132269,8 +132307,8 @@ x-webhooks: - state - locked - assignee - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -132350,7 +132388,7 @@ x-webhooks: type: string enum: - deleted - comment: &762 + comment: &763 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -132507,8 +132545,8 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *571 - required: *572 + properties: *572 + required: *573 nullable: true required: - url @@ -132523,8 +132561,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133309,8 +133347,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133326,7 +133364,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -133661,8 +133699,8 @@ x-webhooks: - state - locked - assignee - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -133742,7 +133780,7 @@ x-webhooks: type: string enum: - edited - changes: &792 + changes: &793 description: The changes to the comment. type: object properties: @@ -133754,9 +133792,9 @@ x-webhooks: type: string required: - from - comment: *762 - enterprise: *736 - installation: *737 + comment: *763 + enterprise: *737 + installation: *738 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -134544,8 +134582,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134561,7 +134599,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -134894,8 +134932,8 @@ x-webhooks: - state - locked - assignee - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -134976,9 +135014,9 @@ x-webhooks: type: string enum: - pinned - comment: *762 - enterprise: *736 - installation: *737 + comment: *763 + enterprise: *737 + installation: *738 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -135768,8 +135806,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135785,7 +135823,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -136120,8 +136158,8 @@ x-webhooks: - state - locked - assignee - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -136201,9 +136239,9 @@ x-webhooks: type: string enum: - unpinned - comment: *762 - enterprise: *736 - installation: *737 + comment: *763 + enterprise: *737 + installation: *738 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136993,8 +137031,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137010,7 +137048,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -137345,8 +137383,8 @@ x-webhooks: - state - locked - assignee - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -137435,9 +137473,9 @@ x-webhooks: type: number blocking_issue: *85 blocking_issue_repo: *79 - installation: *737 - organization: *738 - repository: *739 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -137526,9 +137564,9 @@ x-webhooks: type: number blocking_issue: *85 blocking_issue_repo: *79 - installation: *737 - organization: *738 - repository: *739 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -137616,9 +137654,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *85 - installation: *737 - organization: *738 - repository: *739 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -137707,9 +137745,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *85 - installation: *737 - organization: *738 - repository: *739 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -137789,10 +137827,10 @@ x-webhooks: type: string enum: - assigned - assignee: *758 - enterprise: *736 - installation: *737 - issue: &765 + assignee: *759 + enterprise: *737 + installation: *738 + issue: &766 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -138584,11 +138622,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138604,7 +138642,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -138705,8 +138743,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -138786,8 +138824,8 @@ x-webhooks: type: string enum: - closed - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -139584,11 +139622,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139604,7 +139642,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -139840,8 +139878,8 @@ x-webhooks: required: - state - closed_at - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -139920,8 +139958,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -140709,11 +140747,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140729,7 +140767,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -140829,8 +140867,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -140909,8 +140947,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -141720,11 +141758,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141740,7 +141778,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -141819,7 +141857,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &763 + milestone: &764 title: Milestone description: A collection of related issues and pull requests. type: object @@ -141957,8 +141995,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -142057,8 +142095,8 @@ x-webhooks: type: string required: - from - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142850,11 +142888,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142867,7 +142905,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *242 + type: *243 title: description: Title of the issue type: string @@ -142971,9 +143009,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *757 - organization: *738 - repository: *739 + label: *758 + organization: *739 + repository: *740 sender: *4 required: - action @@ -143053,8 +143091,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143845,11 +143883,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143862,7 +143900,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *242 + type: *243 title: description: Title of the issue type: string @@ -143966,9 +144004,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *757 - organization: *738 - repository: *739 + label: *758 + organization: *739 + repository: *740 sender: *4 required: - action @@ -144048,8 +144086,8 @@ x-webhooks: type: string enum: - locked - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144864,11 +144902,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144881,7 +144919,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *242 + type: *243 title: description: Title of the issue type: string @@ -144962,8 +145000,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -145042,8 +145080,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145852,11 +145890,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145872,7 +145910,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -145950,9 +145988,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *763 - organization: *738 - repository: *739 + milestone: *764 + organization: *739 + repository: *740 sender: *4 required: - action @@ -146815,11 +146853,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146920,7 +146958,7 @@ x-webhooks: required: - login - id - type: *242 + type: *243 required: - id - number @@ -147400,8 +147438,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148185,11 +148223,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148205,7 +148243,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -148313,8 +148351,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -148394,9 +148432,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *736 - installation: *737 - issue: &764 + enterprise: *737 + installation: *738 + issue: &765 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -149182,11 +149220,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149202,7 +149240,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -149302,8 +149340,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -149382,8 +149420,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150196,11 +150234,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150294,9 +150332,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *242 - organization: *738 - repository: *739 + type: *243 + organization: *739 + repository: *740 sender: *4 required: - action @@ -151165,11 +151203,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151185,7 +151223,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -151764,11 +151802,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *736 - installation: *737 - issue: *764 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + issue: *765 + organization: *739 + repository: *740 sender: *4 required: - action @@ -151848,12 +151886,12 @@ x-webhooks: type: string enum: - typed - enterprise: *736 - installation: *737 - issue: *765 - type: *242 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + issue: *766 + type: *243 + organization: *739 + repository: *740 sender: *4 required: - action @@ -151934,7 +151972,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &795 + assignee: &796 title: User type: object nullable: true @@ -152004,11 +152042,11 @@ x-webhooks: required: - login - id - enterprise: *736 - installation: *737 - issue: *765 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + issue: *766 + organization: *739 + repository: *740 sender: *4 required: - action @@ -152087,12 +152125,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *736 - installation: *737 - issue: *765 - label: *757 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + issue: *766 + label: *758 + organization: *739 + repository: *740 sender: *4 required: - action @@ -152172,8 +152210,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152986,11 +153024,11 @@ x-webhooks: properties: *86 required: *87 nullable: true - sub_issues_summary: *672 - issue_dependencies_summary: *673 + sub_issues_summary: *673 + issue_dependencies_summary: *674 issue_field_values: type: array - items: *556 + items: *557 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153006,7 +153044,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *242 + type: *243 updated_at: type: string format: date-time @@ -153084,8 +153122,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -153165,11 +153203,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *736 - installation: *737 - issue: *764 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + issue: *765 + organization: *739 + repository: *740 sender: *4 required: - action @@ -153248,12 +153286,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *736 - installation: *737 - issue: *765 - type: *242 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + issue: *766 + type: *243 + organization: *739 + repository: *740 sender: *4 required: - action @@ -153333,11 +153371,11 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - label: *757 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + label: *758 + organization: *739 + repository: *740 sender: *4 required: - action @@ -153415,11 +153453,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - label: *757 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + label: *758 + organization: *739 + repository: *740 sender: *4 required: - action @@ -153529,11 +153567,11 @@ x-webhooks: type: string required: - from - enterprise: *736 - installation: *737 - label: *757 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + label: *758 + organization: *739 + repository: *740 sender: *4 required: - action @@ -153615,9 +153653,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *736 - installation: *737 - marketplace_purchase: &766 + enterprise: *737 + installation: *738 + marketplace_purchase: &767 title: Marketplace Purchase type: object required: @@ -153700,8 +153738,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *738 - previous_marketplace_purchase: &767 + organization: *739 + previous_marketplace_purchase: &768 title: Marketplace Purchase type: object properties: @@ -153781,7 +153819,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *739 + repository: *740 sender: *4 required: - action @@ -153861,10 +153899,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *736 - installation: *737 - marketplace_purchase: *766 - organization: *738 + enterprise: *737 + installation: *738 + marketplace_purchase: *767 + organization: *739 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -153947,7 +153985,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *739 + repository: *740 sender: *4 required: - action @@ -154029,10 +154067,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *736 - installation: *737 - marketplace_purchase: *766 - organization: *738 + enterprise: *737 + installation: *738 + marketplace_purchase: *767 + organization: *739 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -154114,7 +154152,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *739 + repository: *740 sender: *4 required: - action @@ -154195,8 +154233,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 marketplace_purchase: title: Marketplace Purchase type: object @@ -154278,9 +154316,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *738 - previous_marketplace_purchase: *767 - repository: *739 + organization: *739 + previous_marketplace_purchase: *768 + repository: *740 sender: *4 required: - action @@ -154360,12 +154398,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *736 - installation: *737 - marketplace_purchase: *766 - organization: *738 - previous_marketplace_purchase: *767 - repository: *739 + enterprise: *737 + installation: *738 + marketplace_purchase: *767 + organization: *739 + previous_marketplace_purchase: *768 + repository: *740 sender: *4 required: - action @@ -154467,11 +154505,11 @@ x-webhooks: type: string required: - to - enterprise: *736 - installation: *737 - member: *758 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + member: *759 + organization: *739 + repository: *740 sender: *4 required: - action @@ -154571,11 +154609,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *736 - installation: *737 - member: *758 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + member: *759 + organization: *739 + repository: *740 sender: *4 required: - action @@ -154654,11 +154692,11 @@ x-webhooks: type: string enum: - removed - enterprise: *736 - installation: *737 - member: *758 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + member: *759 + organization: *739 + repository: *740 sender: *4 required: - action @@ -154736,11 +154774,11 @@ x-webhooks: type: string enum: - added - enterprise: *736 - installation: *737 - member: *758 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + member: *759 + organization: *739 + repository: *740 scope: description: The scope of the membership. Currently, can only be `team`. @@ -154816,7 +154854,7 @@ x-webhooks: required: - login - id - team: &768 + team: &769 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -155039,11 +155077,11 @@ x-webhooks: type: string enum: - removed - enterprise: *736 - installation: *737 - member: *758 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + member: *759 + organization: *739 + repository: *740 scope: description: The scope of the membership. Currently, can only be `team`. @@ -155120,7 +155158,7 @@ x-webhooks: required: - login - id - team: *768 + team: *769 required: - action - scope @@ -155202,8 +155240,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *737 - merge_group: &770 + installation: *738 + merge_group: &771 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -155222,15 +155260,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *769 + head_commit: *770 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -155316,10 +155354,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *737 - merge_group: *770 - organization: *738 - repository: *739 + installation: *738 + merge_group: *771 + organization: *739 + repository: *740 sender: *4 required: - action @@ -155392,7 +155430,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 + enterprise: *737 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -155501,17 +155539,17 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *737 - organization: *738 + installation: *738 + organization: *739 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *771 - required: *772 - x-github-breaking-changes: *773 + properties: *772 + required: *773 + x-github-breaking-changes: *774 nullable: true sender: *4 required: @@ -155592,11 +155630,11 @@ x-webhooks: type: string enum: - closed - enterprise: *736 - installation: *737 - milestone: *763 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + milestone: *764 + organization: *739 + repository: *740 sender: *4 required: - action @@ -155675,9 +155713,9 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - milestone: &774 + enterprise: *737 + installation: *738 + milestone: &775 title: Milestone description: A collection of related issues and pull requests. type: object @@ -155814,8 +155852,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -155894,11 +155932,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - milestone: *763 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + milestone: *764 + organization: *739 + repository: *740 sender: *4 required: - action @@ -156008,11 +156046,11 @@ x-webhooks: type: string required: - from - enterprise: *736 - installation: *737 - milestone: *763 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + milestone: *764 + organization: *739 + repository: *740 sender: *4 required: - action @@ -156092,11 +156130,11 @@ x-webhooks: type: string enum: - opened - enterprise: *736 - installation: *737 - milestone: *774 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + milestone: *775 + organization: *739 + repository: *740 sender: *4 required: - action @@ -156175,11 +156213,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *758 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + blocked_user: *759 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -156258,11 +156296,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *758 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + blocked_user: *759 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -156341,9 +156379,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - membership: &775 + enterprise: *737 + installation: *738 + membership: &776 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -156450,8 +156488,8 @@ x-webhooks: - role - organization_url - user - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 required: - action @@ -156529,11 +156567,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *736 - installation: *737 - membership: *775 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + membership: *776 + organization: *739 + repository: *740 sender: *4 required: - action @@ -156612,8 +156650,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -156729,10 +156767,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 - user: *758 + user: *759 required: - action - invitation @@ -156810,11 +156848,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *736 - installation: *737 - membership: *775 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + membership: *776 + organization: *739 + repository: *740 sender: *4 required: - action @@ -156901,11 +156939,11 @@ x-webhooks: properties: from: type: string - enterprise: *736 - installation: *737 - membership: *775 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + membership: *776 + organization: *739 + repository: *740 sender: *4 required: - action @@ -156982,9 +157020,9 @@ x-webhooks: type: string enum: - published - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 package: description: Information about the package. type: object @@ -157483,7 +157521,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &776 + items: &777 title: Ruby Gems metadata type: object properties: @@ -157578,7 +157616,7 @@ x-webhooks: - owner - package_version - registry - repository: *739 + repository: *740 sender: *4 required: - action @@ -157654,9 +157692,9 @@ x-webhooks: type: string enum: - updated - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 package: description: Information about the package. type: object @@ -158009,7 +158047,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *776 + items: *777 source_url: type: string format: uri @@ -158079,7 +158117,7 @@ x-webhooks: - owner - package_version - registry - repository: *739 + repository: *740 sender: *4 required: - action @@ -158255,12 +158293,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *736 + enterprise: *737 id: type: integer - installation: *737 - organization: *738 - repository: *739 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - id @@ -158337,7 +158375,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &777 + personal_access_token_request: &778 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -158483,10 +158521,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *736 - organization: *738 + enterprise: *737 + organization: *739 sender: *4 - installation: *737 + installation: *738 required: - action - personal_access_token_request @@ -158563,11 +158601,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *777 - enterprise: *736 - organization: *738 + personal_access_token_request: *778 + enterprise: *737 + organization: *739 sender: *4 - installation: *737 + installation: *738 required: - action - personal_access_token_request @@ -158643,11 +158681,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *777 - enterprise: *736 - organization: *738 + personal_access_token_request: *778 + enterprise: *737 + organization: *739 sender: *4 - installation: *737 + installation: *738 required: - action - personal_access_token_request @@ -158722,11 +158760,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *777 - organization: *738 - enterprise: *736 + personal_access_token_request: *778 + organization: *739 + enterprise: *737 sender: *4 - installation: *737 + installation: *738 required: - action - personal_access_token_request @@ -158831,7 +158869,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *778 + last_response: *779 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -158863,8 +158901,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 zen: description: Random string of GitHub zen. @@ -159109,10 +159147,10 @@ x-webhooks: - from required: - note - enterprise: *736 - installation: *737 - organization: *738 - project_card: &779 + enterprise: *737 + installation: *738 + organization: *739 + project_card: &780 title: Project Card type: object properties: @@ -159231,7 +159269,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *739 + repository: *740 sender: *4 required: - action @@ -159312,11 +159350,11 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - organization: *738 - project_card: *779 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + project_card: *780 + repository: *740 sender: *4 required: - action @@ -159396,9 +159434,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 project_card: title: Project Card type: object @@ -159526,9 +159564,9 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *771 - required: *772 - x-github-breaking-changes: *773 + properties: *772 + required: *773 + x-github-breaking-changes: *774 nullable: true sender: *4 required: @@ -159622,11 +159660,11 @@ x-webhooks: - from required: - note - enterprise: *736 - installation: *737 - organization: *738 - project_card: *779 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + project_card: *780 + repository: *740 sender: *4 required: - action @@ -159720,9 +159758,9 @@ x-webhooks: - from required: - column_id - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 project_card: allOf: - title: Project Card @@ -159912,7 +159950,7 @@ x-webhooks: type: string required: - after_id - repository: *739 + repository: *740 sender: *4 required: - action @@ -159992,10 +160030,10 @@ x-webhooks: type: string enum: - closed - enterprise: *736 - installation: *737 - organization: *738 - project: &781 + enterprise: *737 + installation: *738 + organization: *739 + project: &782 title: Project type: object properties: @@ -160119,7 +160157,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *739 + repository: *740 sender: *4 required: - action @@ -160199,10 +160237,10 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - organization: *738 - project_column: &780 + enterprise: *737 + installation: *738 + organization: *739 + project_column: &781 title: Project Column type: object properties: @@ -160241,7 +160279,7 @@ x-webhooks: - name - created_at - updated_at - repository: *739 + repository: *740 sender: *4 required: - action @@ -160320,19 +160358,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - organization: *738 - project_column: *780 + enterprise: *737 + installation: *738 + organization: *739 + project_column: *781 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *771 - required: *772 - x-github-breaking-changes: *773 + properties: *772 + required: *773 + x-github-breaking-changes: *774 nullable: true sender: *4 required: @@ -160422,11 +160460,11 @@ x-webhooks: type: string required: - from - enterprise: *736 - installation: *737 - organization: *738 - project_column: *780 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + project_column: *781 + repository: *740 sender: *4 required: - action @@ -160506,11 +160544,11 @@ x-webhooks: type: string enum: - moved - enterprise: *736 - installation: *737 - organization: *738 - project_column: *780 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + project_column: *781 + repository: *740 sender: *4 required: - action @@ -160590,11 +160628,11 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - organization: *738 - project: *781 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + project: *782 + repository: *740 sender: *4 required: - action @@ -160674,19 +160712,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - organization: *738 - project: *781 + enterprise: *737 + installation: *738 + organization: *739 + project: *782 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *771 - required: *772 - x-github-breaking-changes: *773 + properties: *772 + required: *773 + x-github-breaking-changes: *774 nullable: true sender: *4 required: @@ -160788,11 +160826,11 @@ x-webhooks: type: string required: - from - enterprise: *736 - installation: *737 - organization: *738 - project: *781 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + project: *782 + repository: *740 sender: *4 required: - action @@ -160871,11 +160909,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *736 - installation: *737 - organization: *738 - project: *781 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + project: *782 + repository: *740 sender: *4 required: - action @@ -160956,9 +160994,9 @@ x-webhooks: type: string enum: - closed - installation: *737 - organization: *738 - projects_v2: *276 + installation: *738 + organization: *739 + projects_v2: *277 sender: *4 required: - action @@ -161039,9 +161077,9 @@ x-webhooks: type: string enum: - created - installation: *737 - organization: *738 - projects_v2: *276 + installation: *738 + organization: *739 + projects_v2: *277 sender: *4 required: - action @@ -161122,9 +161160,9 @@ x-webhooks: type: string enum: - deleted - installation: *737 - organization: *738 - projects_v2: *276 + installation: *738 + organization: *739 + projects_v2: *277 sender: *4 required: - action @@ -161241,9 +161279,9 @@ x-webhooks: type: string to: type: string - installation: *737 - organization: *738 - projects_v2: *276 + installation: *738 + organization: *739 + projects_v2: *277 sender: *4 required: - action @@ -161326,7 +161364,7 @@ x-webhooks: type: string enum: - archived - changes: &785 + changes: &786 type: object properties: archived_at: @@ -161340,9 +161378,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *737 - organization: *738 - projects_v2_item: &782 + installation: *738 + organization: *739 + projects_v2_item: &783 title: Projects v2 Item description: An item belonging to a project type: object @@ -161360,7 +161398,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *283 + content_type: *284 creator: *4 created_at: type: string @@ -161477,9 +161515,9 @@ x-webhooks: nullable: true to: type: string - installation: *737 - organization: *738 - projects_v2_item: *782 + installation: *738 + organization: *739 + projects_v2_item: *783 sender: *4 required: - action @@ -161561,9 +161599,9 @@ x-webhooks: type: string enum: - created - installation: *737 - organization: *738 - projects_v2_item: *782 + installation: *738 + organization: *739 + projects_v2_item: *783 sender: *4 required: - action @@ -161644,9 +161682,9 @@ x-webhooks: type: string enum: - deleted - installation: *737 - organization: *738 - projects_v2_item: *782 + installation: *738 + organization: *739 + projects_v2_item: *783 sender: *4 required: - action @@ -161752,7 +161790,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &783 + - &784 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -161774,7 +161812,7 @@ x-webhooks: required: - id - name - - &784 + - &785 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -161808,8 +161846,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *783 - *784 + - *785 required: - field_value - type: object @@ -161825,9 +161863,9 @@ x-webhooks: nullable: true required: - body - installation: *737 - organization: *738 - projects_v2_item: *782 + installation: *738 + organization: *739 + projects_v2_item: *783 sender: *4 required: - action @@ -161922,9 +161960,9 @@ x-webhooks: to: type: string nullable: true - installation: *737 - organization: *738 - projects_v2_item: *782 + installation: *738 + organization: *739 + projects_v2_item: *783 sender: *4 required: - action @@ -162007,10 +162045,10 @@ x-webhooks: type: string enum: - restored - changes: *785 - installation: *737 - organization: *738 - projects_v2_item: *782 + changes: *786 + installation: *738 + organization: *739 + projects_v2_item: *783 sender: *4 required: - action @@ -162092,9 +162130,9 @@ x-webhooks: type: string enum: - reopened - installation: *737 - organization: *738 - projects_v2: *276 + installation: *738 + organization: *739 + projects_v2: *277 sender: *4 required: - action @@ -162175,14 +162213,14 @@ x-webhooks: type: string enum: - created - installation: *737 - organization: *738 - projects_v2_status_update: &788 + installation: *738 + organization: *739 + projects_v2_status_update: &789 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *786 - required: *787 + properties: *787 + required: *788 sender: *4 required: - action @@ -162263,9 +162301,9 @@ x-webhooks: type: string enum: - deleted - installation: *737 - organization: *738 - projects_v2_status_update: *788 + installation: *738 + organization: *739 + projects_v2_status_update: *789 sender: *4 required: - action @@ -162401,9 +162439,9 @@ x-webhooks: type: string format: date nullable: true - installation: *737 - organization: *738 - projects_v2_status_update: *788 + installation: *738 + organization: *739 + projects_v2_status_update: *789 sender: *4 required: - action @@ -162474,10 +162512,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - repository @@ -162554,13 +162592,13 @@ x-webhooks: type: string enum: - assigned - assignee: *758 - enterprise: *736 - installation: *737 - number: &789 + assignee: *759 + enterprise: *737 + installation: *738 + number: &790 description: The pull request number. type: integer - organization: *738 + organization: *739 pull_request: title: Pull Request type: object @@ -164865,7 +164903,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *739 + repository: *740 sender: *4 required: - action @@ -164962,11 +165000,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 number: type: integer - organization: *738 + organization: *739 pull_request: title: Pull Request type: object @@ -167266,7 +167304,7 @@ x-webhooks: - draft reason: type: string - repository: *739 + repository: *740 sender: *4 required: - action @@ -167363,11 +167401,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 number: type: integer - organization: *738 + organization: *739 pull_request: title: Pull Request type: object @@ -169667,7 +169705,7 @@ x-webhooks: - draft reason: type: string - repository: *739 + repository: *740 sender: *4 required: - action @@ -169764,13 +169802,13 @@ x-webhooks: type: string enum: - closed - enterprise: *736 - installation: *737 - number: *789 - organization: *738 - pull_request: &790 + enterprise: *737 + installation: *738 + number: *790 + organization: *739 + pull_request: &791 allOf: - - *594 + - *595 - type: object properties: allow_auto_merge: @@ -169832,7 +169870,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *739 + repository: *740 sender: *4 required: - action @@ -169913,12 +169951,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *736 - installation: *737 - number: *789 - organization: *738 - pull_request: *790 - repository: *739 + enterprise: *737 + installation: *738 + number: *790 + organization: *739 + pull_request: *791 + repository: *740 sender: *4 required: - action @@ -169998,11 +170036,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *736 - milestone: *578 - number: *789 - organization: *738 - pull_request: &791 + enterprise: *737 + milestone: *579 + number: *790 + organization: *739 + pull_request: &792 title: Pull Request type: object properties: @@ -172329,7 +172367,7 @@ x-webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *739 + repository: *740 sender: *4 required: - action @@ -172408,11 +172446,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 number: type: integer - organization: *738 + organization: *739 pull_request: title: Pull Request type: object @@ -174716,7 +174754,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *739 + repository: *740 sender: *4 required: - action @@ -174848,12 +174886,12 @@ x-webhooks: type: string required: - from - enterprise: *736 - installation: *737 - number: *789 - organization: *738 - pull_request: *790 - repository: *739 + enterprise: *737 + installation: *738 + number: *790 + organization: *739 + pull_request: *791 + repository: *740 sender: *4 required: - action @@ -174933,11 +174971,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 number: type: integer - organization: *738 + organization: *739 pull_request: title: Pull Request type: object @@ -177226,7 +177264,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *739 + repository: *740 sender: *4 required: - action @@ -177314,11 +177352,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *736 - installation: *737 - label: *757 - number: *789 - organization: *738 + enterprise: *737 + installation: *738 + label: *758 + number: *790 + organization: *739 pull_request: title: Pull Request type: object @@ -179622,7 +179660,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *739 + repository: *740 sender: *4 required: - action @@ -179718,10 +179756,10 @@ x-webhooks: type: string enum: - locked - enterprise: *736 - installation: *737 - number: *789 - organization: *738 + enterprise: *737 + installation: *738 + number: *790 + organization: *739 pull_request: title: Pull Request type: object @@ -182023,7 +182061,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *739 + repository: *740 sender: *4 required: - action @@ -182118,12 +182156,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *736 - milestone: *578 - number: *789 - organization: *738 - pull_request: *791 - repository: *739 + enterprise: *737 + milestone: *579 + number: *790 + organization: *739 + pull_request: *792 + repository: *740 sender: *4 required: - action @@ -182202,12 +182240,12 @@ x-webhooks: type: string enum: - opened - enterprise: *736 - installation: *737 - number: *789 - organization: *738 - pull_request: *790 - repository: *739 + enterprise: *737 + installation: *738 + number: *790 + organization: *739 + pull_request: *791 + repository: *740 sender: *4 required: - action @@ -182288,12 +182326,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *736 - installation: *737 - number: *789 - organization: *738 - pull_request: *790 - repository: *739 + enterprise: *737 + installation: *738 + number: *790 + organization: *739 + pull_request: *791 + repository: *740 sender: *4 required: - action @@ -182373,12 +182411,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *736 - installation: *737 - number: *789 - organization: *738 - pull_request: *790 - repository: *739 + enterprise: *737 + installation: *738 + number: *790 + organization: *739 + pull_request: *791 + repository: *740 sender: *4 required: - action @@ -182744,9 +182782,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 pull_request: type: object properties: @@ -184938,7 +184976,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *739 + repository: *740 sender: *4 required: - action @@ -185033,7 +185071,7 @@ x-webhooks: type: string enum: - deleted - comment: &793 + comment: &794 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -185318,9 +185356,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 pull_request: type: object properties: @@ -187500,7 +187538,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *739 + repository: *740 sender: *4 required: - action @@ -187595,11 +187633,11 @@ x-webhooks: type: string enum: - edited - changes: *792 - comment: *793 - enterprise: *736 - installation: *737 - organization: *738 + changes: *793 + comment: *794 + enterprise: *737 + installation: *738 + organization: *739 pull_request: type: object properties: @@ -189782,7 +189820,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *739 + repository: *740 sender: *4 required: - action @@ -189878,9 +189916,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 pull_request: title: Simple Pull Request type: object @@ -192075,7 +192113,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *739 + repository: *740 review: description: The review that was affected. type: object @@ -192337,9 +192375,9 @@ x-webhooks: type: string required: - from - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 pull_request: title: Simple Pull Request type: object @@ -194393,8 +194431,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *739 - review: &794 + repository: *740 + review: &795 description: The review that was affected. type: object properties: @@ -194635,12 +194673,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 number: description: The pull request number. type: integer - organization: *738 + organization: *739 pull_request: title: Pull Request type: object @@ -196945,7 +196983,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *739 + repository: *740 requested_reviewer: title: User type: object @@ -197029,12 +197067,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 number: description: The pull request number. type: integer - organization: *738 + organization: *739 pull_request: title: Pull Request type: object @@ -199346,7 +199384,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *739 + repository: *740 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199561,12 +199599,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 number: description: The pull request number. type: integer - organization: *738 + organization: *739 pull_request: title: Pull Request type: object @@ -201873,7 +201911,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *739 + repository: *740 requested_reviewer: title: User type: object @@ -201958,12 +201996,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *736 - installation: *737 + enterprise: *737 + installation: *738 number: description: The pull request number. type: integer - organization: *738 + organization: *739 pull_request: title: Pull Request type: object @@ -204261,7 +204299,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *739 + repository: *740 requested_team: title: Team description: Groups of organization members that gives permissions @@ -204465,9 +204503,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 pull_request: title: Simple Pull Request type: object @@ -206664,8 +206702,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *739 - review: *794 + repository: *740 + review: *795 sender: *4 required: - action @@ -206760,9 +206798,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 pull_request: title: Simple Pull Request type: object @@ -208854,7 +208892,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *739 + repository: *740 sender: *4 thread: type: object @@ -209249,9 +209287,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 pull_request: title: Simple Pull Request type: object @@ -211329,7 +211367,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *739 + repository: *740 sender: *4 thread: type: object @@ -211727,10 +211765,10 @@ x-webhooks: type: string before: type: string - enterprise: *736 - installation: *737 - number: *789 - organization: *738 + enterprise: *737 + installation: *738 + number: *790 + organization: *739 pull_request: title: Pull Request type: object @@ -214023,7 +214061,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *739 + repository: *740 sender: *4 required: - action @@ -214120,11 +214158,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *795 - enterprise: *736 - installation: *737 - number: *789 - organization: *738 + assignee: *796 + enterprise: *737 + installation: *738 + number: *790 + organization: *739 pull_request: title: Pull Request type: object @@ -216429,7 +216467,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *739 + repository: *740 sender: *4 required: - action @@ -216523,11 +216561,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *736 - installation: *737 - label: *757 - number: *789 - organization: *738 + enterprise: *737 + installation: *738 + label: *758 + number: *790 + organization: *739 pull_request: title: Pull Request type: object @@ -218822,7 +218860,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *739 + repository: *740 sender: *4 required: - action @@ -218918,10 +218956,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *736 - installation: *737 - number: *789 - organization: *738 + enterprise: *737 + installation: *738 + number: *790 + organization: *739 pull_request: title: Pull Request type: object @@ -221208,7 +221246,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *739 + repository: *740 sender: *4 required: - action @@ -221423,7 +221461,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *736 + enterprise: *737 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -221515,8 +221553,8 @@ x-webhooks: - url - author - committer - installation: *737 - organization: *738 + installation: *738 + organization: *739 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -222102,9 +222140,9 @@ x-webhooks: type: string enum: - published - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 registry_package: type: object properties: @@ -222550,7 +222588,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *776 + items: *777 summary: type: string tag_name: @@ -222604,7 +222642,7 @@ x-webhooks: - owner - package_version - registry - repository: *739 + repository: *740 sender: *4 required: - action @@ -222682,9 +222720,9 @@ x-webhooks: type: string enum: - updated - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 registry_package: type: object properties: @@ -222992,7 +223030,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *776 + items: *777 summary: type: string tag_name: @@ -223041,7 +223079,7 @@ x-webhooks: - owner - package_version - registry - repository: *739 + repository: *740 sender: *4 required: - action @@ -223118,10 +223156,10 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - organization: *738 - release: &796 + enterprise: *737 + installation: *738 + organization: *739 + release: &797 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -223439,7 +223477,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *739 + repository: *740 sender: *4 required: - action @@ -223516,11 +223554,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - organization: *738 - release: *796 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + release: *797 + repository: *740 sender: *4 required: - action @@ -223637,11 +223675,11 @@ x-webhooks: type: boolean required: - to - enterprise: *736 - installation: *737 - organization: *738 - release: *796 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + release: *797 + repository: *740 sender: *4 required: - action @@ -223719,9 +223757,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -224043,7 +224081,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *739 + repository: *740 sender: *4 required: - action @@ -224119,10 +224157,10 @@ x-webhooks: type: string enum: - published - enterprise: *736 - installation: *737 - organization: *738 - release: &797 + enterprise: *737 + installation: *738 + organization: *739 + release: &798 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -224441,7 +224479,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *739 + repository: *740 sender: *4 required: - action @@ -224517,11 +224555,11 @@ x-webhooks: type: string enum: - released - enterprise: *736 - installation: *737 - organization: *738 - release: *796 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + release: *797 + repository: *740 sender: *4 required: - action @@ -224597,11 +224635,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *736 - installation: *737 - organization: *738 - release: *797 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + release: *798 + repository: *740 sender: *4 required: - action @@ -224677,11 +224715,11 @@ x-webhooks: type: string enum: - published - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 - repository_advisory: *658 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 + repository_advisory: *659 sender: *4 required: - action @@ -224757,11 +224795,11 @@ x-webhooks: type: string enum: - reported - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 - repository_advisory: *658 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 + repository_advisory: *659 sender: *4 required: - action @@ -224837,10 +224875,10 @@ x-webhooks: type: string enum: - archived - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -224917,10 +224955,10 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -224998,10 +225036,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -225085,10 +225123,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -225200,10 +225238,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -225275,10 +225313,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 status: type: string @@ -225359,10 +225397,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -225439,10 +225477,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -225536,10 +225574,10 @@ x-webhooks: - name required: - repository - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -225619,11 +225657,11 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 - repository_ruleset: *325 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 + repository_ruleset: *326 sender: *4 required: - action @@ -225701,11 +225739,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 - repository_ruleset: *325 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 + repository_ruleset: *326 sender: *4 required: - action @@ -225783,11 +225821,11 @@ x-webhooks: type: string enum: - edited - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 - repository_ruleset: *325 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 + repository_ruleset: *326 changes: type: object properties: @@ -225806,16 +225844,16 @@ x-webhooks: properties: added: type: array - items: *299 + items: *300 deleted: type: array - items: *299 + items: *300 updated: type: array items: type: object properties: - condition: *299 + condition: *300 changes: type: object properties: @@ -225848,16 +225886,16 @@ x-webhooks: properties: added: type: array - items: *614 + items: *615 deleted: type: array - items: *614 + items: *615 updated: type: array items: type: object properties: - rule: *614 + rule: *615 changes: type: object properties: @@ -226091,10 +226129,10 @@ x-webhooks: - from required: - owner - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -226172,10 +226210,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -226253,7 +226291,7 @@ x-webhooks: type: string enum: - create - alert: &798 + alert: &799 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -226375,10 +226413,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -226584,10 +226622,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -226665,11 +226703,11 @@ x-webhooks: type: string enum: - reopen - alert: *798 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + alert: *799 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -226868,10 +226906,10 @@ x-webhooks: enum: - fixed - open - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -226949,7 +226987,7 @@ x-webhooks: type: string enum: - assigned - alert: &799 + alert: &800 type: object properties: number: *178 @@ -227083,10 +227121,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -227164,11 +227202,11 @@ x-webhooks: type: string enum: - created - alert: *799 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + alert: *800 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -227249,11 +227287,11 @@ x-webhooks: type: string enum: - created - alert: *799 - installation: *737 - location: *800 - organization: *738 - repository: *739 + alert: *800 + installation: *738 + location: *801 + organization: *739 + repository: *740 sender: *4 required: - location @@ -227491,11 +227529,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *799 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + alert: *800 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -227573,11 +227611,11 @@ x-webhooks: type: string enum: - reopened - alert: *799 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + alert: *800 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -227655,11 +227693,11 @@ x-webhooks: type: string enum: - resolved - alert: *799 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + alert: *800 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -227737,12 +227775,12 @@ x-webhooks: type: string enum: - unassigned - alert: *799 + alert: *800 assignee: *4 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -227820,11 +227858,11 @@ x-webhooks: type: string enum: - validated - alert: *799 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + alert: *800 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -227950,10 +227988,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *739 - enterprise: *736 - installation: *737 - organization: *738 + repository: *740 + enterprise: *737 + installation: *738 + organization: *739 sender: *4 required: - action @@ -228031,11 +228069,11 @@ x-webhooks: type: string enum: - published - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 - security_advisory: &801 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 + security_advisory: &802 description: The details of the security advisory, including summary, description, and severity. type: object @@ -228236,11 +228274,11 @@ x-webhooks: type: string enum: - updated - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 - security_advisory: *801 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 + security_advisory: *802 sender: *4 required: - action @@ -228313,10 +228351,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -228508,11 +228546,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *298 - enterprise: *736 - installation: *737 - organization: *738 - repository: *346 + security_and_analysis: *299 + enterprise: *737 + installation: *738 + organization: *739 + repository: *347 sender: *4 required: - changes @@ -228590,12 +228628,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 - sponsorship: &802 + sponsorship: &803 type: object properties: created_at: @@ -228896,12 +228934,12 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 - sponsorship: *802 + sponsorship: *803 required: - action - sponsorship @@ -228989,12 +229027,12 @@ x-webhooks: type: string required: - from - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 - sponsorship: *802 + sponsorship: *803 required: - action - changes @@ -229071,17 +229109,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &803 + effective_date: &804 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: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 - sponsorship: *802 + sponsorship: *803 required: - action - sponsorship @@ -229155,7 +229193,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &804 + changes: &805 type: object properties: tier: @@ -229199,13 +229237,13 @@ x-webhooks: - from required: - tier - effective_date: *803 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + effective_date: *804 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 - sponsorship: *802 + sponsorship: *803 required: - action - changes @@ -229282,13 +229320,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *804 - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + changes: *805 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 - sponsorship: *802 + sponsorship: *803 required: - action - changes @@ -229362,10 +229400,10 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -229448,10 +229486,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -229871,15 +229909,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *736 + enterprise: *737 id: description: The unique identifier of the status. type: integer - installation: *737 + installation: *738 name: type: string - organization: *738 - repository: *739 + organization: *739 + repository: *740 sender: *4 sha: description: The Commit SHA. @@ -229994,9 +230032,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *85 - installation: *737 - organization: *738 - repository: *739 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -230086,9 +230124,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *85 - installation: *737 - organization: *738 - repository: *739 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -230178,9 +230216,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *85 - installation: *737 - organization: *738 - repository: *739 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -230270,9 +230308,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *85 - installation: *737 - organization: *738 - repository: *739 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -230349,12 +230387,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 - team: &805 + team: &806 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -230577,9 +230615,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 repository: title: Repository description: A git repository @@ -231037,7 +231075,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *805 + team: *806 required: - action - team @@ -231113,9 +231151,9 @@ x-webhooks: type: string enum: - created - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 repository: title: Repository description: A git repository @@ -231573,7 +231611,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *805 + team: *806 required: - action - team @@ -231650,9 +231688,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 repository: title: Repository description: A git repository @@ -232110,7 +232148,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *805 + team: *806 required: - action - team @@ -232254,9 +232292,9 @@ x-webhooks: - from required: - permissions - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 repository: title: Repository description: A git repository @@ -232714,7 +232752,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *805 + team: *806 required: - action - changes @@ -232792,9 +232830,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *736 - installation: *737 - organization: *738 + enterprise: *737 + installation: *738 + organization: *739 repository: title: Repository description: A git repository @@ -233252,7 +233290,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *805 + team: *806 required: - action - team @@ -233328,10 +233366,10 @@ x-webhooks: type: string enum: - started - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 required: - action @@ -233404,16 +233442,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *736 + enterprise: *737 inputs: type: object nullable: true additionalProperties: true - installation: *737 - organization: *738 + installation: *738 + organization: *739 ref: type: string - repository: *739 + repository: *740 sender: *4 workflow: type: string @@ -233495,10 +233533,10 @@ x-webhooks: type: string enum: - completed - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 workflow_job: allOf: @@ -233735,7 +233773,7 @@ x-webhooks: type: string required: - conclusion - deployment: *504 + deployment: *505 required: - action - repository @@ -233814,10 +233852,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 workflow_job: allOf: @@ -234077,7 +234115,7 @@ x-webhooks: required: - status - steps - deployment: *504 + deployment: *505 required: - action - repository @@ -234156,10 +234194,10 @@ x-webhooks: type: string enum: - queued - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 workflow_job: type: object @@ -234294,7 +234332,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *504 + deployment: *505 required: - action - repository @@ -234373,10 +234411,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enterprise: *737 + installation: *738 + organization: *739 + repository: *740 sender: *4 workflow_job: type: object @@ -234512,7 +234550,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *504 + deployment: *505 required: - action - repository @@ -234592,12 +234630,12 @@ x-webhooks: type: string enum: - completed - enterprise: *736 - installation: *737 - organization: *738 - repository: *739 + enter{"code":"deadline_exceeded","msg":"operation timed out"}