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": "stri{"code":"deadline_exceeded","msg":"operation timed out"}