diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index bbdb63ef82..edd6984ff4 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -7086,6 +7086,9 @@ { "$ref": "#/components/parameters/enterprise" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -23230,6 +23233,9 @@ { "$ref": "#/components/parameters/org" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -50084,6 +50090,9 @@ { "$ref": "#/components/parameters/repo" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -69969,7 +69978,7 @@ "/search/code": { "get": { "summary": "Search code", - "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", + "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\n> [!NOTE]\n> `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", "tags": [ "search" ], @@ -111284,6 +111293,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -330052,6 +330070,14 @@ ] } }, + "dependabot-alert-comma-separated-classifications": { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, "dependabot-alert-comma-separated-states": { "name": "state", "in": "query", diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index 42f24b3587..8c2fc4e0cc 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -5261,6 +5261,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -17110,6 +17111,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -36669,6 +36671,7 @@ paths: parameters: - "$ref": "#/components/parameters/owner" - "$ref": "#/components/parameters/repo" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -50880,6 +50883,9 @@ paths: * You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is. + > [!NOTE] + > `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata. + This endpoint requires you to authenticate and limits you to 10 requests per minute. tags: - search @@ -80650,6 +80656,13 @@ components: - medium - high - critical + classification: + type: string + description: The classification of the advisory. + readOnly: true + enum: + - general + - malware cvss: type: object description: Details for the advisory pertaining to the Common Vulnerability @@ -246747,6 +246760,15 @@ components: format: date examples: - '2025-10-13' + dependabot-alert-comma-separated-classifications: + name: classification + in: query + description: |- + A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned. + + Can be: `malware`, `general` + schema: + type: string dependabot-alert-comma-separated-states: name: state in: query diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index 3b6cf00c41..8b955e8999 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.json @@ -7086,6 +7086,9 @@ { "$ref": "#/components/parameters/enterprise" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -23188,6 +23191,9 @@ { "$ref": "#/components/parameters/org" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -50004,6 +50010,9 @@ { "$ref": "#/components/parameters/repo" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -69875,7 +69884,7 @@ "/search/code": { "get": { "summary": "Search code", - "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", + "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\n> [!NOTE]\n> `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", "tags": [ "search" ], @@ -111094,6 +111103,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "$ref": "#/components/schemas/cvss-severities" }, @@ -329206,6 +329224,14 @@ ] } }, + "dependabot-alert-comma-separated-classifications": { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, "dependabot-alert-comma-separated-states": { "name": "state", "in": "query", diff --git a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index cf57d4f219..3a43fb4195 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml @@ -5261,6 +5261,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -17076,6 +17077,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -36606,6 +36608,7 @@ paths: parameters: - "$ref": "#/components/parameters/owner" - "$ref": "#/components/parameters/repo" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -50803,6 +50806,9 @@ paths: * You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is. + > [!NOTE] + > `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata. + This endpoint requires you to authenticate and limits you to 10 requests per minute. tags: - search @@ -80497,6 +80503,13 @@ components: - medium - high - critical + classification: + type: string + description: The classification of the advisory. + readOnly: true + enum: + - general + - malware cvss_severities: "$ref": "#/components/schemas/cvss-severities" epss: @@ -246051,6 +246064,15 @@ components: format: date examples: - '2025-10-13' + dependabot-alert-comma-separated-classifications: + name: classification + in: query + description: |- + A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned. + + Can be: `malware`, `general` + schema: + type: string dependabot-alert-comma-separated-states: name: state in: query diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index 6f1efe21c7..792d0fe0d2 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -7100,6 +7100,9 @@ { "$ref": "#/components/parameters/enterprise" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -23332,6 +23335,9 @@ { "$ref": "#/components/parameters/org" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -50348,6 +50354,9 @@ { "$ref": "#/components/parameters/repo" }, + { + "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" + }, { "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" }, @@ -70271,7 +70280,7 @@ "/search/code": { "get": { "summary": "Search code", - "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", + "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\n> [!NOTE]\n> `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", "tags": [ "search" ], @@ -111865,6 +111874,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -331960,6 +331978,14 @@ ] } }, + "dependabot-alert-comma-separated-classifications": { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, "dependabot-alert-comma-separated-states": { "name": "state", "in": "query", diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 642fe567cb..052d3e7345 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -5269,6 +5269,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-enterprise parameters: - "$ref": "#/components/parameters/enterprise" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -17164,6 +17165,7 @@ paths: url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-an-organization parameters: - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -36834,6 +36836,7 @@ paths: parameters: - "$ref": "#/components/parameters/owner" - "$ref": "#/components/parameters/repo" + - "$ref": "#/components/parameters/dependabot-alert-comma-separated-classifications" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-states" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-severities" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-ecosystems" @@ -51065,6 +51068,9 @@ paths: * You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is. + > [!NOTE] + > `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata. + This endpoint requires you to authenticate and limits you to 10 requests per minute. tags: - search @@ -81026,6 +81032,13 @@ components: - medium - high - critical + classification: + type: string + description: The classification of the advisory. + readOnly: true + enum: + - general + - malware cvss: type: object description: Details for the advisory pertaining to the Common Vulnerability @@ -247982,6 +247995,15 @@ components: format: date examples: - '2025-10-13' + dependabot-alert-comma-separated-classifications: + name: classification + in: query + description: |- + A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned. + + Can be: `malware`, `general` + schema: + type: string dependabot-alert-comma-separated-states: name: state in: query diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index 5b4e0783a5..6535e9cc94 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -27995,6 +27995,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -28337,6 +28345,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -133448,6 +133465,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -133815,6 +133840,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -381799,6 +381833,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -382149,6 +382191,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -383637,6 +383688,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -384954,6 +385014,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -661058,7 +661127,7 @@ "/search/code": { "get": { "summary": "Search code", - "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", + "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\n> [!NOTE]\n> `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", "tags": [ "search" ], @@ -922352,6 +922421,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -925337,6 +925415,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -928322,6 +928409,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -931307,6 +931403,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -934292,6 +934397,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -937277,6 +937391,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -940262,6 +940385,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -943247,6 +943379,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index 55d624dafb..c9a97d4ebd 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -907,7 +907,7 @@ paths: - subscriptions_url - type - url - type: &313 + type: &314 type: string description: The type of credit the user is receiving. enum: @@ -1073,7 +1073,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &630 + - &631 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4173,7 +4173,7 @@ paths: schema: type: integer default: 30 - - &203 + - &204 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -4182,7 +4182,7 @@ paths: required: false schema: type: string - - &204 + - &205 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4202,7 +4202,7 @@ paths: application/json: schema: type: array - items: &205 + items: &206 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4298,7 +4298,7 @@ paths: - installation_id - repository_id examples: - default: &206 + default: &207 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4433,7 +4433,7 @@ paths: description: Response content: application/json: - schema: &207 + schema: &208 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4568,7 +4568,7 @@ paths: - request - response examples: - default: &208 + default: &209 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -12055,6 +12055,15 @@ paths: parameters: - *38 - &189 + name: classification + in: query + description: |- + A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned. + + Can be: `malware`, `general` + schema: + type: string + - &190 name: state in: query description: |- @@ -12063,7 +12072,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &190 + - &191 name: severity in: query description: |- @@ -12072,7 +12081,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &191 + - &192 name: ecosystem in: query description: |- @@ -12081,14 +12090,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &192 + - &193 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &193 + - &194 name: epss_percentage in: query description: |- @@ -12100,7 +12109,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &470 + - &471 name: has in: query description: |- @@ -12114,7 +12123,7 @@ paths: type: string enum: - patch - - &194 + - &195 name: assignee in: query description: |- @@ -12123,7 +12132,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &195 + - &196 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -12133,7 +12142,7 @@ paths: enum: - development - runtime - - &196 + - &197 name: sort in: query description: |- @@ -12159,7 +12168,7 @@ paths: application/json: schema: type: array - items: &197 + items: &198 type: object description: A Dependabot alert. properties: @@ -12230,7 +12239,7 @@ paths: - transitive - inconclusive - - security_advisory: &471 + security_advisory: &472 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12313,6 +12322,13 @@ paths: - medium - high - critical + classification: + type: string + description: The classification of the advisory. + readOnly: true + enum: + - general + - malware cvss: type: object description: Details for the advisory pertaining to the @@ -12498,7 +12514,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &472 + auto_dismissed_at: &473 type: - string - 'null' @@ -12506,7 +12522,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &473 + dismissal_request: &474 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12569,7 +12585,7 @@ paths: - repository additionalProperties: false examples: - default: &198 + default: &199 value: - number: 2 state: dismissed @@ -13933,7 +13949,7 @@ paths: properties: action: type: string - discussion: &721 + discussion: &722 title: Discussion description: A Discussion in a repository. type: object @@ -14434,7 +14450,7 @@ paths: milestone: anyOf: - type: 'null' - - &265 + - &266 title: Milestone description: A collection of related issues and pull requests. @@ -14606,7 +14622,7 @@ paths: timeline_url: type: string format: uri - type: &229 + type: &230 title: Issue Type description: The type of issue. type: @@ -14717,7 +14733,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &642 + sub_issues_summary: &643 title: Sub-issues Summary type: object properties: @@ -14801,7 +14817,7 @@ paths: pin: anyOf: - type: 'null' - - &543 + - &544 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -14828,7 +14844,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &643 + issue_dependencies_summary: &644 title: Issue Dependencies Summary type: object properties: @@ -14847,7 +14863,7 @@ paths: - total_blocking issue_field_values: type: array - items: &528 + items: &529 title: Issue Field Value description: A value assigned to an issue field type: object @@ -15628,7 +15644,7 @@ paths: type: string release: allOf: - - &575 + - &576 title: Release description: A release. type: object @@ -15710,7 +15726,7 @@ paths: author: *4 assets: type: array - items: &576 + items: &577 title: Release Asset description: Data related to a release. type: object @@ -16313,7 +16329,7 @@ paths: url: type: string format: uri - user: &649 + user: &650 title: Public User description: Public User type: object @@ -18210,7 +18226,7 @@ paths: - closed - all default: open - - &232 + - &233 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -18261,7 +18277,7 @@ paths: type: array items: *81 examples: - default: &233 + default: &234 value: - id: 1 node_id: MDU6SXNzdWUx @@ -19673,14 +19689,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &324 + - &325 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &325 + - &326 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -19742,7 +19758,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &328 + '301': &329 description: Moved permanently content: application/json: @@ -19764,7 +19780,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &551 + - &552 name: all description: If `true`, show notifications marked as read. in: query @@ -19772,7 +19788,7 @@ paths: schema: type: boolean default: false - - &552 + - &553 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -19782,7 +19798,7 @@ paths: type: boolean default: false - *86 - - &553 + - &554 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -20164,7 +20180,7 @@ paths: type: boolean examples: - false - security_and_analysis: &280 + security_and_analysis: &281 type: - object - 'null' @@ -20368,7 +20384,7 @@ paths: - url - subscription_url examples: - default: &554 + default: &555 value: - id: '1' repository: @@ -21938,7 +21954,7 @@ paths: required: false schema: type: string - - &698 + - &699 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -22084,7 +22100,7 @@ paths: parameters: - *73 - *115 - - &699 + - &700 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -22196,7 +22212,7 @@ paths: - *115 - *117 - *116 - - &700 + - &701 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22204,7 +22220,7 @@ paths: schema: type: string - *118 - - &701 + - &702 name: sku description: The SKU to query for usage. in: query @@ -23183,7 +23199,7 @@ paths: type: integer repository_cache_usages: type: array - items: &335 + items: &336 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -24545,7 +24561,7 @@ paths: - all - local_only - selected - selected_actions_url: &341 + selected_actions_url: &342 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -24628,7 +24644,7 @@ paths: description: Response content: application/json: - schema: &345 + schema: &346 type: object properties: days: @@ -24670,7 +24686,7 @@ paths: required: true content: application/json: - schema: &346 + schema: &347 type: object properties: days: @@ -24727,7 +24743,7 @@ paths: required: - approval_policy examples: - default: &347 + default: &348 value: approval_policy: first_time_contributors '404': *6 @@ -24786,7 +24802,7 @@ paths: description: Response content: application/json: - schema: &348 + schema: &349 type: object required: - run_workflows_from_fork_pull_requests @@ -24840,7 +24856,7 @@ paths: required: true content: application/json: - schema: &349 + schema: &350 type: object required: - run_workflows_from_fork_pull_requests @@ -25475,7 +25491,7 @@ paths: description: Response content: application/json: - schema: &350 + schema: &351 type: object properties: default_workflow_permissions: &145 @@ -25526,7 +25542,7 @@ paths: required: false content: application/json: - schema: &351 + schema: &352 type: object properties: default_workflow_permissions: *145 @@ -26666,7 +26682,7 @@ paths: application/json: schema: type: array - items: &352 + items: &353 title: Runner Application description: Runner Application type: object @@ -26691,7 +26707,7 @@ paths: - download_url - filename examples: - default: &353 + default: &354 value: - os: osx architecture: x64 @@ -26777,7 +26793,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &354 + '201': &355 description: Response content: application/json: @@ -26892,7 +26908,7 @@ paths: - token - expires_at examples: - default: &355 + default: &356 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -26931,7 +26947,7 @@ paths: application/json: schema: *156 examples: - default: &356 + default: &357 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -26965,7 +26981,7 @@ paths: application/json: schema: *154 examples: - default: &357 + default: &358 value: id: 23 name: MBP @@ -27191,7 +27207,7 @@ paths: - *73 - *153 responses: - '200': &358 + '200': &359 description: Response content: application/json: @@ -27248,7 +27264,7 @@ paths: parameters: - *73 - *153 - - &359 + - &360 name: name description: The name of a self-hosted runner's custom label. in: path @@ -27380,7 +27396,7 @@ paths: description: Response content: application/json: - schema: &371 + schema: &372 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -27415,7 +27431,7 @@ paths: - key_id - key examples: - default: &372 + default: &373 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27828,7 +27844,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *73 - - &340 + - &341 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -29049,12 +29065,12 @@ paths: required: - subject_digests examples: - default: &680 + default: &681 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &681 + withPredicateType: &682 value: subject_digests: - sha256:abc123 @@ -29113,7 +29129,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &682 + default: &683 value: attestations_subject_digests: - sha256:abc: @@ -29464,7 +29480,7 @@ paths: initiator: type: string examples: - default: &385 + default: &386 value: attestations: - bundle: @@ -29817,7 +29833,7 @@ paths: parent: anyOf: - type: 'null' - - &244 + - &245 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -30420,7 +30436,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *73 - - &409 + - &410 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -30430,7 +30446,7 @@ paths: schema: &177 type: string description: The name of the tool used to generate the code scanning analysis. - - &410 + - &411 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -30454,7 +30470,7 @@ paths: be returned. in: query required: false - schema: &412 + schema: &413 type: string description: State of a code scanning alert. enum: @@ -30477,7 +30493,7 @@ paths: be returned. in: query required: false - schema: &413 + schema: &414 type: string description: Severity of a code scanning alert. enum: @@ -30511,7 +30527,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: &414 + instances_url: &415 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -30533,7 +30549,7 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: &415 + dismissed_reason: &416 type: - string - 'null' @@ -30544,14 +30560,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &416 + dismissed_comment: &417 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &417 + rule: &418 type: object properties: id: @@ -30612,7 +30628,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &418 + tool: &419 type: object properties: name: *177 @@ -30623,26 +30639,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *178 - most_recent_instance: &419 + most_recent_instance: &420 type: object properties: - ref: &411 + ref: &412 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &429 + analysis_key: &430 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &430 + environment: &431 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &431 + category: &432 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -30662,7 +30678,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &432 + location: &433 type: object description: Describe a region within a file for the alert. properties: @@ -30683,7 +30699,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &433 + items: &434 type: - string - 'null' @@ -31973,7 +31989,7 @@ paths: type: integer codespaces: type: array - items: &234 + items: &235 type: object title: Codespace description: A codespace. @@ -32008,7 +32024,7 @@ paths: machine: anyOf: - type: 'null' - - &445 + - &446 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -32295,7 +32311,7 @@ paths: - pulls_url - recent_folders examples: - default: &235 + default: &236 value: total_count: 3 codespaces: @@ -32960,7 +32976,7 @@ paths: - updated_at - visibility examples: - default: &446 + default: &447 value: total_count: 2 secrets: @@ -32998,7 +33014,7 @@ paths: description: Response content: application/json: - schema: &447 + schema: &448 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -33033,7 +33049,7 @@ paths: - key_id - key examples: - default: &448 + default: &449 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -33065,7 +33081,7 @@ paths: application/json: schema: *186 examples: - default: &450 + default: &451 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -33532,7 +33548,7 @@ paths: currently being billed. seats: type: array - items: &237 + items: &238 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -34503,7 +34519,7 @@ paths: application/json: schema: type: array - items: &317 + items: &318 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -34818,7 +34834,7 @@ paths: - date additionalProperties: true examples: - default: &318 + default: &319 value: - date: '2024-06-24' total_active_users: 24 @@ -34920,7 +34936,7 @@ paths: '500': *53 '403': *27 '404': *6 - '422': &319 + '422': &320 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -35105,6 +35121,7 @@ paths: - *191 - *192 - *193 + - *194 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -35134,7 +35151,7 @@ paths: enum: - patch - deployment - - *194 + - *195 - name: runtime_risk in: query description: |- @@ -35143,8 +35160,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *195 - *196 + - *197 - *59 - *45 - *46 @@ -35156,9 +35173,9 @@ paths: application/json: schema: type: array - items: *197 + items: *198 examples: - default: *198 + default: *199 '304': *35 '400': *14 '403': *27 @@ -35202,7 +35219,7 @@ paths: type: integer secrets: type: array - items: &199 + items: &200 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -35281,7 +35298,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &477 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -35300,7 +35317,7 @@ paths: - key_id - key examples: - default: &477 + default: &478 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -35330,7 +35347,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *200 examples: default: value: @@ -35629,7 +35646,7 @@ paths: application/json: schema: type: array - items: &246 + items: &247 title: Package description: A software package type: object @@ -35700,7 +35717,7 @@ paths: - created_at - updated_at examples: - default: &247 + default: &248 value: - id: 197 name: hello_docker @@ -35870,7 +35887,7 @@ paths: application/json: schema: type: array - items: &223 + items: &224 title: Organization Invitation description: Organization Invitation type: object @@ -35924,7 +35941,7 @@ paths: - invitation_teams_url - node_id examples: - default: &224 + default: &225 value: - id: 1 login: monalisa @@ -35991,7 +36008,7 @@ paths: application/json: schema: type: array - items: &200 + items: &201 title: Org Hook description: Org Hook type: object @@ -36176,9 +36193,9 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: - default: &201 + default: &202 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -36226,7 +36243,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *73 - - &202 + - &203 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -36239,9 +36256,9 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: - default: *201 + default: *202 '404': *6 x-github: githubCloudOnly: false @@ -36269,7 +36286,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *73 - - *202 + - *203 requestBody: required: false content: @@ -36315,7 +36332,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: default: value: @@ -36357,7 +36374,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *73 - - *202 + - *203 responses: '204': description: Response @@ -36385,7 +36402,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *73 - - *202 + - *203 responses: '200': description: Response @@ -36416,7 +36433,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *73 - - *202 + - *203 requestBody: required: false content: @@ -36467,10 +36484,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *73 - - *202 - - *17 - *203 + - *17 - *204 + - *205 responses: '200': description: Response @@ -36478,9 +36495,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *206 + default: *207 '400': *14 '422': *15 x-github: @@ -36506,16 +36523,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *73 - - *202 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *207 + schema: *208 examples: - default: *208 + default: *209 '400': *14 '422': *15 x-github: @@ -36541,7 +36558,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *73 - - *202 + - *203 - *16 responses: '202': *37 @@ -36571,7 +36588,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *73 - - *202 + - *203 responses: '204': description: Response @@ -36594,7 +36611,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *73 - - &213 + - &214 name: actor_type in: path description: The type of the actor @@ -36607,14 +36624,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &214 + - &215 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &209 + - &210 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -36622,7 +36639,7 @@ paths: required: true schema: type: string - - &210 + - &211 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -36717,12 +36734,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *73 - - *209 - *210 + - *211 - *19 - *17 - *59 - - &219 + - &220 name: sort description: The property to sort the results by. in: query @@ -36801,14 +36818,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *73 - - *209 - *210 + - *211 responses: '200': description: Response content: application/json: - schema: &211 + schema: &212 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -36824,7 +36841,7 @@ paths: type: integer format: int64 examples: - default: &212 + default: &213 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -36845,23 +36862,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *73 - - &215 + - &216 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *209 - *210 + - *211 responses: '200': description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: *212 + default: *213 x-github: enabledForGitHubApps: true category: orgs @@ -36880,18 +36897,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *73 - - *209 - *210 - - *213 + - *211 - *214 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: *212 + default: *213 x-github: enabledForGitHubApps: true category: orgs @@ -36909,9 +36926,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *73 - - *209 - *210 - - &216 + - *211 + - &217 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -36924,7 +36941,7 @@ paths: description: Response content: application/json: - schema: &217 + schema: &218 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -36940,7 +36957,7 @@ paths: type: integer format: int64 examples: - default: &218 + default: &219 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -36977,18 +36994,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *73 - - *215 - - *209 - - *210 - *216 + - *210 + - *211 + - *217 responses: '200': description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 x-github: enabledForGitHubApps: true category: orgs @@ -37006,19 +37023,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *73 - - *213 - *214 - - *209 + - *215 - *210 - - *216 + - *211 + - *217 responses: '200': description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 x-github: enabledForGitHubApps: true category: orgs @@ -37036,13 +37053,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *73 - - *215 - - *209 + - *216 - *210 + - *211 - *19 - *17 - *59 - - *219 + - *220 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -37126,7 +37143,7 @@ paths: application/json: schema: *20 examples: - default: &515 + default: &516 value: id: 1 account: @@ -37292,12 +37309,12 @@ paths: application/json: schema: anyOf: - - &221 + - &222 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &220 + limit: &221 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -37325,7 +37342,7 @@ paths: properties: {} additionalProperties: false examples: - default: &222 + default: &223 value: limit: collaborators_only origin: organization @@ -37354,13 +37371,13 @@ paths: required: true content: application/json: - schema: &516 + schema: &517 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *220 + limit: *221 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -37385,9 +37402,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *222 + default: *223 '422': *15 x-github: githubCloudOnly: false @@ -37463,9 +37480,9 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 '404': *6 @@ -37542,7 +37559,7 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: default: value: @@ -37597,7 +37614,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *73 - - &225 + - &226 name: invitation_id description: The unique identifier of the invitation. in: path @@ -37628,7 +37645,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *73 - - *225 + - *226 - *17 - *19 responses: @@ -37640,7 +37657,7 @@ paths: type: array items: *187 examples: - default: &245 + default: &246 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -37683,7 +37700,7 @@ paths: application/json: schema: type: array - items: &226 + items: &227 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -37926,9 +37943,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: - default: &227 + default: &228 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -37984,7 +38001,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *73 - - &228 + - &229 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -38085,9 +38102,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: - default: *227 + default: *228 '404': *6 '422': *7 x-github: @@ -38112,7 +38129,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *73 - - *228 + - *229 responses: '204': *183 '404': *6 @@ -38142,7 +38159,7 @@ paths: application/json: schema: type: array - items: *229 + items: *230 examples: default: value: @@ -38230,9 +38247,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: &230 + default: &231 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -38265,7 +38282,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *73 - - &231 + - &232 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -38321,9 +38338,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 '404': *6 '422': *7 x-github: @@ -38348,7 +38365,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *73 - - *231 + - *232 responses: '204': description: Response @@ -38411,7 +38428,7 @@ paths: - closed - all default: open - - *232 + - *233 - name: type description: Can be the name of an issue type. in: query @@ -38442,7 +38459,7 @@ paths: type: array items: *81 examples: - default: *233 + default: *234 headers: Link: *65 '404': *6 @@ -38601,9 +38618,9 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '304': *35 '500': *53 '401': *23 @@ -38630,7 +38647,7 @@ paths: parameters: - *73 - *69 - - &236 + - &237 name: codespace_name in: path required: true @@ -38665,15 +38682,15 @@ paths: parameters: - *73 - *69 - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: &444 + default: &445 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -38853,7 +38870,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *237 + schema: *238 examples: default: value: @@ -38929,7 +38946,7 @@ paths: description: Response content: application/json: - schema: &238 + schema: &239 title: Org Membership description: Org Membership type: object @@ -38998,7 +39015,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &239 + response-if-user-has-an-active-admin-membership-with-organization: &240 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -39099,9 +39116,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - response-if-user-already-had-membership-with-organization: *239 + response-if-user-already-had-membership-with-organization: *240 '422': *15 '403': *27 x-github: @@ -39173,7 +39190,7 @@ paths: application/json: schema: type: array - items: &240 + items: &241 title: Migration description: A migration. type: object @@ -39511,7 +39528,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -39690,7 +39707,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *73 - - &241 + - &242 name: migration_id description: The unique identifier of the migration. in: path @@ -39718,7 +39735,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -39888,7 +39905,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *73 - - *241 + - *242 responses: '302': description: Response @@ -39910,7 +39927,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *73 - - *241 + - *242 responses: '204': description: Response @@ -39934,8 +39951,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *73 - - *241 - - &663 + - *242 + - &664 name: repo_name description: repo_name parameter in: path @@ -39963,7 +39980,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *73 - - *241 + - *242 - *17 - *19 responses: @@ -39975,7 +39992,7 @@ paths: type: array items: *152 examples: - default: &252 + default: &253 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -40130,7 +40147,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &243 + items: &244 title: Organization Role description: Organization roles type: object @@ -40307,7 +40324,7 @@ paths: parameters: - *73 - *75 - - &242 + - &243 name: role_id description: The unique identifier of the role. in: path @@ -40344,7 +40361,7 @@ paths: parameters: - *73 - *75 - - *242 + - *243 responses: '204': description: Response @@ -40397,7 +40414,7 @@ paths: parameters: - *73 - *69 - - *242 + - *243 responses: '204': description: Response @@ -40429,7 +40446,7 @@ paths: parameters: - *73 - *69 - - *242 + - *243 responses: '204': description: Response @@ -40458,13 +40475,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *73 - - *242 + - *243 responses: '200': description: Response content: application/json: - schema: *243 + schema: *244 examples: default: value: @@ -40515,7 +40532,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *73 - - *242 + - *243 - *17 - *19 responses: @@ -40594,7 +40611,7 @@ paths: parent: anyOf: - type: 'null' - - *244 + - *245 type: description: The ownership type of the team type: string @@ -40627,7 +40644,7 @@ paths: - type - parent examples: - default: *245 + default: *246 headers: Link: *65 '404': @@ -40657,7 +40674,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *73 - - *242 + - *243 - *17 - *19 responses: @@ -40686,7 +40703,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *244 + items: *245 name: type: - string @@ -40996,7 +41013,7 @@ paths: - nuget - container - *73 - - &664 + - &665 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -41032,12 +41049,12 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *247 + default: *248 '403': *27 '401': *23 - '400': &666 + '400': &667 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -41059,7 +41076,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &248 + - &249 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -41077,7 +41094,7 @@ paths: - docker - nuget - container - - &249 + - &250 name: package_name description: The name of the package. in: path @@ -41090,7 +41107,7 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: default: value: @@ -41142,8 +41159,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *248 - *249 + - *250 - *73 responses: '204': @@ -41176,8 +41193,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - name: token description: package token @@ -41210,8 +41227,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *248 - *249 + - *250 - *73 - *19 - *17 @@ -41232,7 +41249,7 @@ paths: application/json: schema: type: array - items: &250 + items: &251 title: Package Version description: A version of a software package type: object @@ -41367,10 +41384,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - &251 + - &252 name: package_version_id description: Unique identifier of the package version. in: path @@ -41382,7 +41399,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -41418,10 +41435,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - *251 + - *252 responses: '204': description: Response @@ -41453,10 +41470,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - *251 + - *252 responses: '204': description: Response @@ -41486,7 +41503,7 @@ paths: - *73 - *17 - *19 - - &253 + - &254 name: sort description: The property by which to sort the results. in: query @@ -41497,7 +41514,7 @@ paths: - created_at default: created_at - *59 - - &254 + - &255 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -41509,7 +41526,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &255 + - &256 name: repository description: The name of the repository to use to filter the results. in: query @@ -41518,7 +41535,7 @@ paths: type: string examples: - Hello-World - - &256 + - &257 name: permission description: The permission to use to filter the results. in: query @@ -41527,7 +41544,7 @@ paths: type: string examples: - issues_read - - &257 + - &258 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -41537,7 +41554,7 @@ paths: schema: type: string format: date-time - - &258 + - &259 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -41547,7 +41564,7 @@ paths: schema: type: string format: date-time - - &259 + - &260 name: token_id description: The ID of the token in: query @@ -41866,7 +41883,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -41892,14 +41909,14 @@ paths: - *73 - *17 - *19 - - *253 - - *59 - *254 + - *59 - *255 - *256 - *257 - *258 - *259 + - *260 responses: '500': *53 '422': *15 @@ -42183,7 +42200,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -42225,7 +42242,7 @@ paths: type: integer configurations: type: array - items: &260 + items: &261 title: Organization private registry description: Private registry configuration for an organization type: object @@ -42659,7 +42676,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &261 + org-private-registry-with-selected-visibility: &262 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -42757,9 +42774,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *260 + schema: *261 examples: - default: *261 + default: *262 '404': *6 x-github: githubCloudOnly: false @@ -42987,7 +43004,7 @@ paths: application/json: schema: type: array - items: &262 + items: &263 title: Projects v2 Project description: A projects v2 project type: object @@ -43061,7 +43078,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &749 + - &750 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -43146,7 +43163,7 @@ paths: - deleted_at - deleted_by examples: - default: &263 + default: &264 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -43249,7 +43266,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &264 + - &265 name: project_number description: The project's number. in: path @@ -43262,9 +43279,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -43287,7 +43304,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true description: Details of the draft item to create in the project. @@ -43321,7 +43338,7 @@ paths: description: Response content: application/json: - schema: &269 + schema: &270 title: Projects v2 Item description: An item belonging to a project type: object @@ -43335,7 +43352,7 @@ paths: content: oneOf: - *81 - - &459 + - &460 title: Pull Request Simple description: Pull Request Simple type: object @@ -43455,7 +43472,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 active_lock_reason: type: - string @@ -43548,7 +43565,7 @@ paths: _links: type: object properties: - comments: &266 + comments: &267 title: Link description: Hypermedia Link type: object @@ -43557,13 +43574,13 @@ paths: type: string required: - href - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + commits: *267 + statuses: *267 + html: *267 + issue: *267 + review_comments: *267 + review_comment: *267 + self: *267 required: - comments - commits @@ -43574,7 +43591,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: &561 + auto_merge: &562 title: Auto merge description: The status of auto merging a pull request. type: @@ -43676,7 +43693,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &268 + content_type: &269 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -43720,7 +43737,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &270 + draft_issue: &271 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -43794,7 +43811,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *264 + - *265 - *73 - *17 - *45 @@ -43806,7 +43823,7 @@ paths: application/json: schema: type: array - items: &267 + items: &268 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -43959,7 +43976,7 @@ paths: - updated_at - project_url examples: - default: &685 + default: &686 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -44089,7 +44106,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *264 + - *265 - *73 requestBody: required: true @@ -44136,7 +44153,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &686 + items: &687 type: object properties: name: @@ -44173,7 +44190,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &687 + iteration_configuration: &688 type: object description: The configuration for iteration fields. properties: @@ -44223,7 +44240,7 @@ paths: value: name: Due date data_type: date - single_select_field: &688 + single_select_field: &689 summary: Create a single select field value: name: Priority @@ -44250,7 +44267,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &689 + iteration_field: &690 summary: Create an iteration field value: name: Sprint @@ -44274,9 +44291,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *267 + schema: *268 examples: - text_field: &690 + text_field: &691 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -44285,7 +44302,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &691 + number_field: &692 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -44294,7 +44311,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &692 + date_field: &693 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -44303,7 +44320,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &693 + single_select_field: &694 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -44337,7 +44354,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &694 + iteration_field: &695 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -44382,8 +44399,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *264 - - &695 + - *265 + - &696 name: field_id description: The unique identifier of the field. in: path @@ -44396,9 +44413,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: - default: &696 + default: &697 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -44454,7 +44471,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *264 + - *265 - *73 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -44487,7 +44504,7 @@ paths: application/json: schema: type: array - items: &271 + items: &272 title: Projects v2 Item description: An item belonging to a project type: object @@ -44504,7 +44521,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *268 + content_type: *269 content: type: - object @@ -44554,7 +44571,7 @@ paths: - updated_at - archived_at examples: - default: &272 + default: &273 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -45252,7 +45269,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -45322,22 +45339,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *271 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *271 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *271 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *271 '304': *35 '403': *27 '401': *23 @@ -45357,9 +45374,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *264 + - *265 - *73 - - &273 + - &274 name: item_id description: The unique identifier of the project item. in: path @@ -45385,9 +45402,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -45408,9 +45425,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *264 + - *265 - *73 - - *273 + - *274 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -45483,13 +45500,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *273 + number_field: *273 + date_field: *273 + single_select_field: *273 + iteration_field: *273 '401': *23 '403': *27 '404': *6 @@ -45509,9 +45526,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *264 + - *265 - *73 - - *273 + - *274 responses: '204': description: Response @@ -45535,7 +45552,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true content: @@ -45609,7 +45626,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &677 + schema: &678 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -45713,7 +45730,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &274 + value: &275 value: id: 1 number: 1 @@ -45759,10 +45776,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *274 + value: *275 roadmap_view: summary: Response for creating a roadmap view - value: *274 + value: *275 '304': *35 '403': *27 '401': *23 @@ -45790,9 +45807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *264 + - *265 - *73 - - &697 + - &698 name: view_number description: The number that identifies the project view. in: path @@ -45824,9 +45841,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -45859,7 +45876,7 @@ paths: application/json: schema: type: array - items: &275 + items: &276 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -45937,7 +45954,7 @@ paths: - property_name - value_type examples: - default: &276 + default: &277 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -45997,7 +46014,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *275 + items: *276 minItems: 1 maxItems: 100 required: @@ -46027,9 +46044,9 @@ paths: application/json: schema: type: array - items: *275 + items: *276 examples: - default: *276 + default: *277 '403': *27 '404': *6 x-github: @@ -46051,7 +46068,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *73 - - &277 + - &278 name: custom_property_name description: The custom property name in: path @@ -46063,9 +46080,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: &278 + default: &279 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -46100,7 +46117,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *73 - - *277 + - *278 requestBody: required: true content: @@ -46180,9 +46197,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: *278 + default: *279 '403': *27 '404': *6 x-github: @@ -46206,7 +46223,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *73 - - *277 + - *278 responses: '204': *183 '403': *27 @@ -46270,7 +46287,7 @@ paths: - octocat/Hello-World properties: type: array - items: &279 + items: &280 title: Custom Property Value description: Custom property name and associated value type: object @@ -46360,7 +46377,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *279 + items: *280 required: - repository_names - properties @@ -46552,7 +46569,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -46755,7 +46772,7 @@ paths: description: Response content: application/json: - schema: &327 + schema: &328 title: Full Repository description: Full Repository type: object @@ -47233,7 +47250,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &464 + code_of_conduct: &465 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -47263,7 +47280,7 @@ paths: - key - name - html_url - security_and_analysis: *280 + security_and_analysis: *281 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -47347,7 +47364,7 @@ paths: - network_count - subscribers_count examples: - default: &329 + default: &330 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -47868,7 +47885,7 @@ paths: - *73 - *17 - *19 - - &583 + - &584 name: targets description: | A comma-separated list of rule targets to filter by. @@ -47887,7 +47904,7 @@ paths: application/json: schema: type: array - items: &307 + items: &308 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -47922,7 +47939,7 @@ paths: source: type: string description: The name of the source - enforcement: &283 + enforcement: &284 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -47935,7 +47952,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &284 + items: &285 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -48006,7 +48023,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &281 + - &282 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -48030,7 +48047,7 @@ paths: match. items: type: string - - &285 + - &286 title: Organization ruleset conditions type: object description: |- @@ -48044,7 +48061,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -48078,7 +48095,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -48100,7 +48117,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -48113,7 +48130,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &282 + items: &283 title: Repository ruleset property targeting definition type: object @@ -48146,7 +48163,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *282 + items: *283 required: - repository_property type: @@ -48154,12 +48171,12 @@ paths: - object rules: type: array - items: &584 + items: &585 title: Repository Rule type: object description: A repository rule. oneOf: - - &286 + - &287 title: creation description: Only allow users with bypass permission to create matching refs. @@ -48171,7 +48188,7 @@ paths: type: string enum: - creation - - &287 + - &288 title: update description: Only allow users with bypass permission to update matching refs. @@ -48192,7 +48209,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &288 + - &289 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -48204,7 +48221,7 @@ paths: type: string enum: - deletion - - &289 + - &290 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -48216,7 +48233,7 @@ paths: type: string enum: - required_linear_history - - &582 + - &583 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -48294,7 +48311,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &290 + - &291 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -48318,7 +48335,7 @@ paths: type: string required: - required_deployment_environments - - &291 + - &292 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -48330,7 +48347,7 @@ paths: type: string enum: - required_signatures - - &292 + - &293 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -48436,7 +48453,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &293 + - &294 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -48484,7 +48501,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &294 + - &295 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -48496,7 +48513,7 @@ paths: type: string enum: - non_fast_forward - - &295 + - &296 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -48533,7 +48550,7 @@ paths: required: - operator - pattern - - &296 + - &297 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -48570,7 +48587,7 @@ paths: required: - operator - pattern - - &297 + - &298 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -48607,7 +48624,7 @@ paths: required: - operator - pattern - - &298 + - &299 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -48644,7 +48661,7 @@ paths: required: - operator - pattern - - &299 + - &300 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -48681,7 +48698,7 @@ paths: required: - operator - pattern - - &300 + - &301 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -48706,7 +48723,7 @@ paths: type: string required: - restricted_file_paths - - &301 + - &302 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -48730,7 +48747,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &302 + - &303 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -48753,7 +48770,7 @@ paths: type: string required: - restricted_file_extensions - - &303 + - &304 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -48778,7 +48795,7 @@ paths: maximum: 100 required: - max_file_size - - &304 + - &305 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -48828,7 +48845,7 @@ paths: - repository_id required: - workflows - - &305 + - &306 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -48889,7 +48906,7 @@ paths: - tool required: - code_scanning_tools - - &306 + - &307 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -48988,21 +49005,20 @@ paths: - push - repository default: branch - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *285 + items: *285 + conditions: *286 rules: type: array description: An array of rules within the ruleset. - items: &309 + items: &310 title: Repository Rule type: object description: A repository rule. oneOf: - - *286 - *287 - *288 - *289 @@ -49023,6 +49039,7 @@ paths: - *304 - *305 - *306 + - *307 required: - name - enforcement @@ -49060,9 +49077,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &308 + default: &309 value: id: 21 name: super cool ruleset @@ -49118,7 +49135,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *73 - - &585 + - &586 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -49133,7 +49150,7 @@ paths: in: query schema: type: string - - &586 + - &587 name: time_period description: |- The time period to filter by. @@ -49149,14 +49166,14 @@ paths: - week - month default: day - - &587 + - &588 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &588 + - &589 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -49176,7 +49193,7 @@ paths: description: Response content: application/json: - schema: &589 + schema: &590 title: Rule Suites description: Response type: array @@ -49232,7 +49249,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &590 + default: &591 value: - id: 21 actor_id: 12 @@ -49276,7 +49293,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *73 - - &591 + - &592 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -49292,7 +49309,7 @@ paths: description: Response content: application/json: - schema: &592 + schema: &593 title: Rule Suite description: Response type: object @@ -49399,7 +49416,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &593 + default: &594 value: id: 21 actor_id: 12 @@ -49472,9 +49489,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *308 + default: *309 '404': *6 '500': *53 put: @@ -49518,16 +49535,16 @@ paths: - tag - push - repository - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *285 + items: *285 + conditions: *286 rules: description: An array of rules within the ruleset. type: array - items: *309 + items: *310 examples: default: value: @@ -49562,9 +49579,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *308 + default: *309 '404': *6 '422': *15 '500': *53 @@ -49622,7 +49639,7 @@ paths: application/json: schema: type: array - items: &310 + items: &311 title: Ruleset version type: object description: The historical version of a ruleset @@ -49646,7 +49663,7 @@ paths: type: string format: date-time examples: - default: &595 + default: &596 value: - version_id: 3 actor: @@ -49699,9 +49716,9 @@ paths: description: Response content: application/json: - schema: &596 + schema: &597 allOf: - - *310 + - *311 - type: object required: - state @@ -49771,7 +49788,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *73 - - &597 + - &598 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -49782,7 +49799,7 @@ paths: enum: - open - resolved - - &598 + - &599 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -49792,7 +49809,7 @@ paths: required: false schema: type: string - - &599 + - &600 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -49801,7 +49818,7 @@ paths: required: false schema: type: string - - &600 + - &601 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -49820,7 +49837,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &601 + - &602 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -49835,7 +49852,7 @@ paths: - *59 - *19 - *17 - - &602 + - &603 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -49845,7 +49862,7 @@ paths: required: false schema: type: string - - &603 + - &604 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -49855,7 +49872,7 @@ paths: required: false schema: type: string - - &604 + - &605 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -49864,7 +49881,7 @@ paths: required: false schema: type: string - - &605 + - &606 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -49873,7 +49890,7 @@ paths: schema: type: boolean default: false - - &606 + - &607 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -49882,7 +49899,7 @@ paths: schema: type: boolean default: false - - &607 + - &608 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -49914,14 +49931,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &608 + state: &609 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &609 + resolution: &610 type: - string - 'null' @@ -50028,14 +50045,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &610 + - &611 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &612 + - &613 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -50099,7 +50116,7 @@ paths: - blob_url - commit_sha - commit_url - - &613 + - &614 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -50160,7 +50177,7 @@ paths: - page_url - commit_sha - commit_url - - &614 + - &615 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -50182,7 +50199,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &615 + - &616 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -50204,7 +50221,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &616 + - &617 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -50226,7 +50243,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &617 + - &618 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -50241,7 +50258,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &618 + - &619 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -50256,7 +50273,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &619 + - &620 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -50271,7 +50288,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &620 + - &621 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -50293,7 +50310,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &621 + - &622 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -50315,7 +50332,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &622 + - &623 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -50337,7 +50354,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &623 + - &624 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -50359,7 +50376,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &624 + - &625 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull @@ -50620,7 +50637,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &312 + pattern_config_version: &313 type: - string - 'null' @@ -50630,7 +50647,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &311 + items: &312 type: object properties: token_type: @@ -50699,7 +50716,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *311 + items: *312 examples: default: value: @@ -50756,7 +50773,7 @@ paths: schema: type: object properties: - pattern_config_version: *312 + pattern_config_version: *313 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -50782,7 +50799,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *312 + custom_pattern_version: *313 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -50880,7 +50897,7 @@ paths: application/json: schema: type: array - items: &628 + items: &629 description: A repository security advisory. type: object properties: @@ -51124,7 +51141,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 credits_detailed: type: - array @@ -51135,7 +51152,7 @@ paths: type: object properties: user: *4 - type: *313 + type: *314 state: type: string description: The state of the user's acceptance of the @@ -51199,7 +51216,7 @@ paths: - private_fork additionalProperties: false examples: - default: &629 + default: &630 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -51586,7 +51603,7 @@ paths: application/json: schema: type: array - items: *244 + items: *245 examples: default: value: @@ -51941,7 +51958,7 @@ paths: type: integer network_configurations: type: array - items: &314 + items: &315 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -52094,9 +52111,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: &315 + default: &316 value: id: 123456789ABCDEF name: My network configuration @@ -52125,7 +52142,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *73 - - &316 + - &317 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -52137,9 +52154,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: *315 + default: *316 headers: Link: *65 x-github: @@ -52161,7 +52178,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *73 - - *316 + - *317 requestBody: required: true content: @@ -52214,9 +52231,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: *315 + default: *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52236,7 +52253,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *73 - - *316 + - *317 responses: '204': description: Response @@ -52381,13 +52398,13 @@ paths: application/json: schema: type: array - items: *317 + items: *318 examples: - default: *318 + default: *319 '500': *53 '403': *27 '404': *6 - '422': *319 + '422': *320 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52429,7 +52446,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 headers: Link: *65 '403': *27 @@ -52523,7 +52540,7 @@ paths: description: Response content: application/json: - schema: &320 + schema: &321 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -52597,7 +52614,7 @@ paths: parent: anyOf: - type: 'null' - - *244 + - *245 members_count: type: integer examples: @@ -52922,7 +52939,7 @@ paths: - repos_count - organization examples: - default: &321 + default: &322 value: id: 1 node_id: MDQ6VGVhbTE= @@ -52999,9 +53016,9 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 x-github: githubCloudOnly: false @@ -53086,16 +53103,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '201': description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 '422': *15 '403': *27 @@ -53125,7 +53142,7 @@ paths: responses: '204': description: Response - '422': &322 + '422': &323 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -53159,12 +53176,12 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 - '422': *322 + '422': *323 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -53246,7 +53263,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &324 title: Team Membership description: Team Membership type: object @@ -53274,7 +53291,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &645 + response-if-user-is-a-team-maintainer: &646 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -53337,9 +53354,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: &646 + response-if-users-membership-with-team-is-now-pending: &647 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -53415,7 +53432,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -53446,14 +53463,14 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &647 + schema: &648 title: Team Repository description: A team's access to a repository. type: object @@ -54096,8 +54113,8 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 requestBody: required: false content: @@ -54144,8 +54161,8 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 responses: '204': description: Response @@ -54182,7 +54199,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: &648 + response-if-child-teams-exist: &649 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -54336,7 +54353,7 @@ paths: resources: type: object properties: - core: &326 + core: &327 title: Rate Limit type: object properties: @@ -54353,21 +54370,21 @@ paths: - remaining - reset - used - graphql: *326 - search: *326 - code_search: *326 - source_import: *326 - integration_manifest: *326 - code_scanning_upload: *326 - actions_runner_registration: *326 - scim: *326 - dependency_snapshots: *326 - dependency_sbom: *326 - code_scanning_autofix: *326 + graphql: *327 + search: *327 + code_search: *327 + source_import: *327 + integration_manifest: *327 + code_scanning_upload: *327 + actions_runner_registration: *327 + scim: *327 + dependency_snapshots: *327 + dependency_sbom: *327 + code_scanning_autofix: *327 required: - core - search - rate: *326 + rate: *327 required: - rate - resources @@ -54472,14 +54489,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *327 + schema: *328 examples: default-response: summary: Default response @@ -54984,7 +55001,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *328 + '301': *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55002,8 +55019,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -55295,10 +55312,10 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 - '307': &330 + default: *330 + '307': &331 description: Temporary Redirect content: application/json: @@ -55327,8 +55344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -55350,7 +55367,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *330 + '307': *331 '404': *6 '409': *52 x-github: @@ -55374,11 +55391,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 - - &363 + - &364 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -55401,7 +55418,7 @@ paths: type: integer artifacts: type: array - items: &331 + items: &332 title: Artifact description: An artifact type: object @@ -55496,7 +55513,7 @@ paths: - expires_at - updated_at examples: - default: &364 + default: &365 value: total_count: 2 artifacts: @@ -55557,9 +55574,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *324 - *325 - - &332 + - *326 + - &333 name: artifact_id description: The unique identifier of the artifact. in: path @@ -55571,7 +55588,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -55609,9 +55626,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *324 - *325 - - *332 + - *326 + - *333 responses: '204': description: Response @@ -55635,9 +55652,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *324 - *325 - - *332 + - *326 + - *333 - name: archive_format in: path required: true @@ -55651,7 +55668,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &519 + '410': &520 description: Gone content: application/json: @@ -55676,14 +55693,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &333 + schema: &334 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -55717,13 +55734,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *333 + schema: *334 examples: selected_actions: *40 responses: @@ -55752,14 +55769,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &334 + schema: &335 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -55793,13 +55810,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *334 + schema: *335 examples: selected_actions: *42 responses: @@ -55830,14 +55847,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *335 + schema: *336 examples: default: value: @@ -55863,11 +55880,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 - - &336 + - &337 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -55901,7 +55918,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &338 title: Repository actions caches description: Repository actions caches type: object @@ -55951,7 +55968,7 @@ paths: - total_count - actions_caches examples: - default: &338 + default: &339 value: total_count: 1 actions_caches: @@ -55983,23 +56000,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *324 - *325 + - *326 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *336 + - *337 responses: '200': description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56019,8 +56036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *324 - *325 + - *326 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -56051,9 +56068,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *324 - *325 - - &339 + - *326 + - &340 name: job_id description: The unique identifier of the job. in: path @@ -56065,7 +56082,7 @@ paths: description: Response content: application/json: - schema: &367 + schema: &368 title: Job description: Information of a job execution in a workflow run type: object @@ -56412,9 +56429,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *324 - *325 - - *339 + - *326 + - *340 responses: '302': description: Response @@ -56442,9 +56459,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *324 - *325 - - *339 + - *326 + - *340 requestBody: required: false content: @@ -56490,8 +56507,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Status response @@ -56541,8 +56558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -56605,8 +56622,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -56624,7 +56641,7 @@ paths: type: integer secrets: type: array - items: &369 + items: &370 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -56645,7 +56662,7 @@ paths: - created_at - updated_at examples: - default: &370 + default: &371 value: total_count: 2 secrets: @@ -56678,9 +56695,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *324 - *325 - - *340 + - *326 + - *341 - *19 responses: '200': @@ -56697,7 +56714,7 @@ paths: type: integer variables: type: array - items: &373 + items: &374 title: Actions Variable type: object properties: @@ -56731,7 +56748,7 @@ paths: - created_at - updated_at examples: - default: &374 + default: &375 value: total_count: 2 variables: @@ -56764,8 +56781,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -56774,11 +56791,11 @@ paths: schema: type: object properties: - enabled: &342 + enabled: &343 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *137 - selected_actions_url: *341 + selected_actions_url: *342 sha_pinning_required: *138 required: - enabled @@ -56807,8 +56824,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -56819,7 +56836,7 @@ paths: schema: type: object properties: - enabled: *342 + enabled: *343 allowed_actions: *137 sha_pinning_required: *138 required: @@ -56851,14 +56868,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &343 + schema: &344 type: object properties: access_level: @@ -56875,7 +56892,7 @@ paths: required: - access_level examples: - default: &344 + default: &345 value: access_level: organization x-github: @@ -56899,15 +56916,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *343 + schema: *344 examples: - default: *344 + default: *345 responses: '204': description: Response @@ -56931,14 +56948,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *345 + schema: *346 examples: default: value: @@ -56962,8 +56979,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Empty response for successful settings update @@ -56973,7 +56990,7 @@ paths: required: true content: application/json: - schema: *346 + schema: *347 examples: default: summary: Set retention days @@ -56997,8 +57014,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -57006,7 +57023,7 @@ paths: application/json: schema: *139 examples: - default: *347 + default: *348 '404': *6 x-github: enabledForGitHubApps: true @@ -57025,8 +57042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -57060,14 +57077,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *348 + schema: *349 examples: default: *140 '403': *27 @@ -57089,13 +57106,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *349 + schema: *350 examples: default: *140 responses: @@ -57121,8 +57138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -57149,8 +57166,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -57182,14 +57199,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *350 + schema: *351 examples: default: *147 x-github: @@ -57212,8 +57229,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Success response @@ -57224,7 +57241,7 @@ paths: required: true content: application/json: - schema: *351 + schema: *352 examples: default: *147 x-github: @@ -57253,8 +57270,8 @@ paths: in: query schema: type: string - - *324 - *325 + - *326 - *17 - *19 responses: @@ -57298,8 +57315,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -57307,9 +57324,9 @@ paths: application/json: schema: type: array - items: *352 + items: *353 examples: - default: *353 + default: *354 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57331,8 +57348,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -57375,7 +57392,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *354 + '201': *355 '404': *6 '422': *7 '409': *52 @@ -57406,8 +57423,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -57415,7 +57432,7 @@ paths: application/json: schema: *156 examples: - default: *355 + default: *356 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57443,8 +57460,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -57452,7 +57469,7 @@ paths: application/json: schema: *156 examples: - default: *356 + default: *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57474,8 +57491,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '200': @@ -57484,7 +57501,7 @@ paths: application/json: schema: *154 examples: - default: *357 + default: *358 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57505,8 +57522,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '204': @@ -57533,8 +57550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '200': *158 @@ -57559,8 +57576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 requestBody: required: true @@ -57609,8 +57626,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 requestBody: required: true @@ -57660,11 +57677,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: - '200': *358 + '200': *359 '404': *6 x-github: githubCloudOnly: false @@ -57691,10 +57708,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 - - *359 + - *360 responses: '200': *158 '404': *6 @@ -57722,9 +57739,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *324 - *325 - - &377 + - *326 + - &378 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -57732,7 +57749,7 @@ paths: required: false schema: type: string - - &378 + - &379 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -57740,7 +57757,7 @@ paths: required: false schema: type: string - - &379 + - &380 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -57749,7 +57766,7 @@ paths: required: false schema: type: string - - &380 + - &381 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -57776,7 +57793,7 @@ paths: - pending - *17 - *19 - - &381 + - &382 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -57785,7 +57802,7 @@ paths: schema: type: string format: date-time - - &360 + - &361 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -57794,13 +57811,13 @@ paths: schema: type: boolean default: false - - &382 + - &383 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &383 + - &384 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -57823,7 +57840,7 @@ paths: type: integer workflow_runs: type: array - items: &361 + items: &362 title: Workflow Run description: An invocation of a workflow type: object @@ -58001,7 +58018,7 @@ paths: head_commit: anyOf: - type: 'null' - - &405 + - &406 title: Simple Commit description: A commit. type: object @@ -58116,7 +58133,7 @@ paths: - workflow_url - pull_requests examples: - default: &384 + default: &385 value: total_count: 1 workflow_runs: @@ -58352,24 +58369,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *324 - *325 - - &362 + - *326 + - &363 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: &365 + default: &366 value: id: 30433642 name: Build @@ -58610,9 +58627,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '204': description: Response @@ -58635,9 +58652,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -58765,9 +58782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '201': description: Response @@ -58800,12 +58817,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *324 - *325 - - *362 + - *326 + - *363 - *17 - *19 - - *363 + - *364 - *59 responses: '200': @@ -58822,9 +58839,9 @@ paths: type: integer artifacts: type: array - items: *331 + items: *332 examples: - default: *364 + default: *365 headers: Link: *65 x-github: @@ -58848,25 +58865,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *324 - *325 - - *362 - - &366 + - *326 + - *363 + - &367 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: *365 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58889,10 +58906,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *324 - *325 - - *362 - - *366 + - *326 + - *363 + - *367 - *17 - *19 responses: @@ -58910,9 +58927,9 @@ paths: type: integer jobs: type: array - items: *367 + items: *368 examples: - default: &368 + default: &369 value: total_count: 1 jobs: @@ -59025,10 +59042,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *324 - *325 - - *362 - - *366 + - *326 + - *363 + - *367 responses: '302': description: Response @@ -59056,9 +59073,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '202': description: Response @@ -59091,9 +59108,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: true content: @@ -59160,9 +59177,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '202': description: Response @@ -59195,9 +59212,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -59227,9 +59244,9 @@ paths: type: integer jobs: type: array - items: *367 + items: *368 examples: - default: *368 + default: *369 headers: Link: *65 x-github: @@ -59254,9 +59271,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '302': description: Response @@ -59283,9 +59300,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '204': description: Response @@ -59312,9 +59329,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -59383,7 +59400,7 @@ paths: items: type: object properties: - type: &485 + type: &486 type: string description: The type of reviewer. enum: @@ -59469,9 +59486,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: true content: @@ -59521,7 +59538,7 @@ paths: application/json: schema: type: array - items: &480 + items: &481 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -59633,7 +59650,7 @@ paths: - created_at - updated_at examples: - default: &481 + default: &482 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -59689,9 +59706,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: false content: @@ -59736,9 +59753,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: false content: @@ -59792,9 +59809,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -59931,8 +59948,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -59950,9 +59967,9 @@ paths: type: integer secrets: type: array - items: *369 + items: *370 examples: - default: *370 + default: *371 headers: Link: *65 x-github: @@ -59977,16 +59994,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60008,17 +60025,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *369 + schema: *370 examples: - default: &498 + default: &499 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -60044,8 +60061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -60103,8 +60120,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -60130,9 +60147,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *324 - *325 - - *340 + - *326 + - *341 - *19 responses: '200': @@ -60149,9 +60166,9 @@ paths: type: integer variables: type: array - items: *373 + items: *374 examples: - default: *374 + default: *375 headers: Link: *65 x-github: @@ -60174,8 +60191,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -60227,17 +60244,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: &499 + default: &500 value: name: USERNAME value: octocat @@ -60263,8 +60280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 requestBody: required: true @@ -60307,8 +60324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 responses: '204': @@ -60334,8 +60351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -60353,7 +60370,7 @@ paths: type: integer workflows: type: array - items: &375 + items: &376 title: Workflow description: A GitHub Actions workflow type: object @@ -60471,9 +60488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *324 - *325 - - &376 + - *326 + - &377 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -60488,7 +60505,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *376 examples: default: value: @@ -60521,9 +60538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Response @@ -60548,9 +60565,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -60637,9 +60654,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Response @@ -60666,19 +60683,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *324 - *325 - - *376 + - *326 - *377 - *378 - *379 - *380 + - *381 - *17 - *19 - - *381 - - *360 - *382 + - *361 - *383 + - *384 responses: '200': description: Response @@ -60694,9 +60711,9 @@ paths: type: integer workflow_runs: type: array - items: *361 + items: *362 examples: - default: *384 + default: *385 headers: Link: *65 x-github: @@ -60728,9 +60745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '200': description: Response @@ -60791,8 +60808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *324 - *325 + - *326 - *59 - *17 - *45 @@ -60960,8 +60977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -60998,8 +61015,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *324 - *325 + - *326 - name: assignee in: path required: true @@ -61035,8 +61052,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -61146,8 +61163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *324 - *325 + - *326 - *17 - *45 - *46 @@ -61204,7 +61221,7 @@ paths: initiator: type: string examples: - default: *385 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61224,8 +61241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -61233,7 +61250,7 @@ paths: application/json: schema: type: array - items: &386 + items: &387 title: Autolink reference description: An autolink reference. type: object @@ -61292,8 +61309,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -61332,9 +61349,9 @@ paths: description: response content: application/json: - schema: *386 + schema: *387 examples: - default: &387 + default: &388 value: id: 1 key_prefix: TICKET- @@ -61365,9 +61382,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *324 - *325 - - &388 + - *326 + - &389 name: autolink_id description: The unique identifier of the autolink. in: path @@ -61379,9 +61396,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *387 + default: *388 '404': *6 x-github: githubCloudOnly: false @@ -61401,9 +61418,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *324 - *325 - - *388 + - *326 + - *389 responses: '204': description: Response @@ -61427,8 +61444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response if Dependabot is enabled @@ -61478,8 +61495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -61500,8 +61517,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -61521,8 +61538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *324 - *325 + - *326 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -61560,7 +61577,7 @@ paths: - url protected: type: boolean - protection: &390 + protection: &391 title: Branch Protection description: Branch Protection type: object @@ -61603,7 +61620,7 @@ paths: required: - contexts - checks - enforce_admins: &393 + enforce_admins: &394 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -61620,7 +61637,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &395 + required_pull_request_reviews: &396 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -61704,7 +61721,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &392 + restrictions: &393 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -61997,9 +62014,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *324 - *325 - - &391 + - *326 + - &392 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -62013,14 +62030,14 @@ paths: description: Response content: application/json: - schema: &401 + schema: &402 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &455 + commit: &456 title: Commit description: Commit type: object @@ -62059,7 +62076,7 @@ paths: author: anyOf: - type: 'null' - - &389 + - &390 title: Git User description: Metaproperties for Git author/committer information. @@ -62081,7 +62098,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 message: type: string examples: @@ -62105,7 +62122,7 @@ paths: required: - sha - url - verification: &505 + verification: &506 title: Verification type: object properties: @@ -62185,7 +62202,7 @@ paths: type: integer files: type: array - items: &466 + items: &467 title: Diff Entry description: Diff Entry type: object @@ -62281,7 +62298,7 @@ paths: - self protected: type: boolean - protection: *390 + protection: *391 protection_url: type: string format: uri @@ -62390,7 +62407,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *328 + '301': *329 '404': *6 x-github: githubCloudOnly: false @@ -62412,15 +62429,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *390 + schema: *391 examples: default: value: @@ -62614,9 +62631,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -62876,7 +62893,7 @@ paths: url: type: string format: uri - required_status_checks: &398 + required_status_checks: &399 title: Status Check Policy description: Status Check Policy type: object @@ -63035,7 +63052,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *392 + restrictions: *393 required_conversation_resolution: type: object properties: @@ -63147,9 +63164,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63174,17 +63191,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &394 + default: &395 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -63206,17 +63223,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *394 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63235,9 +63252,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63262,17 +63279,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: &396 + default: &397 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -63368,9 +63385,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63468,9 +63485,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: *396 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -63491,9 +63508,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63520,17 +63537,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &397 + default: &398 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -63553,17 +63570,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *397 + default: *398 '404': *6 x-github: githubCloudOnly: false @@ -63583,9 +63600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63610,17 +63627,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *398 + schema: *399 examples: - default: &399 + default: &400 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -63646,9 +63663,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63700,9 +63717,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: - default: *399 + default: *400 '404': *6 '422': *15 x-github: @@ -63724,9 +63741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63750,9 +63767,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -63786,9 +63803,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63855,9 +63872,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63921,9 +63938,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: content: application/json: @@ -63989,15 +64006,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *392 + schema: *393 examples: default: value: @@ -64088,9 +64105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -64113,9 +64130,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -64125,7 +64142,7 @@ paths: type: array items: *5 examples: - default: &400 + default: &401 value: - id: 1 slug: octoapp @@ -64182,9 +64199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64218,7 +64235,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -64239,9 +64256,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64275,7 +64292,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -64296,9 +64313,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64332,7 +64349,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -64354,9 +64371,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -64366,7 +64383,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '404': *6 x-github: githubCloudOnly: false @@ -64386,9 +64403,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -64426,7 +64443,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -64447,9 +64464,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -64487,7 +64504,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -64508,9 +64525,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: content: application/json: @@ -64547,7 +64564,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -64569,9 +64586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -64605,9 +64622,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64665,9 +64682,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64725,9 +64742,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64787,9 +64804,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64811,7 +64828,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: default: value: @@ -64927,8 +64944,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -65207,7 +65224,7 @@ paths: description: Response content: application/json: - schema: &402 + schema: &403 title: CheckRun description: A check performed on the code of a given code change type: object @@ -65343,7 +65360,7 @@ paths: check. type: array items: *84 - deployment: &710 + deployment: &711 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -65630,9 +65647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *324 - *325 - - &403 + - *326 + - &404 name: check_run_id description: The unique identifier of the check run. in: path @@ -65644,9 +65661,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *403 examples: - default: &404 + default: &405 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -65746,9 +65763,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *324 - *325 - - *403 + - *326 + - *404 requestBody: required: true content: @@ -65988,9 +66005,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *403 examples: - default: *404 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66010,9 +66027,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *324 - *325 - - *403 + - *326 + - *404 - *17 - *19 responses: @@ -66122,9 +66139,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *324 - *325 - - *403 + - *326 + - *404 responses: '201': description: Response @@ -66168,8 +66185,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -66191,7 +66208,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &406 + schema: &407 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -66289,7 +66306,7 @@ paths: - string - 'null' format: date-time - head_commit: *405 + head_commit: *406 latest_check_runs_count: type: integer check_runs_url: @@ -66317,7 +66334,7 @@ paths: - check_runs_url - pull_requests examples: - default: &407 + default: &408 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -66608,9 +66625,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *406 + schema: *407 examples: - default: *407 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66629,8 +66646,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -66939,9 +66956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *324 - *325 - - &408 + - *326 + - &409 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -66953,9 +66970,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *407 examples: - default: *407 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66978,17 +66995,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *324 - *325 - - *408 - - &461 + - *326 + - *409 + - &462 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &462 + - &463 name: status description: Returns check runs with the specified `status`. in: query @@ -67027,9 +67044,9 @@ paths: type: integer check_runs: type: array - items: *402 + items: *403 examples: - default: &463 + default: &464 value: total_count: 1 check_runs: @@ -67131,9 +67148,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *324 - *325 - - *408 + - *326 + - *409 responses: '201': description: Response @@ -67166,21 +67183,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *324 - *325 - - *409 + - *326 - *410 + - *411 - *19 - *17 - - &427 + - &428 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *411 - - &428 + schema: *412 + - &429 name: pr description: The number of the pull request for the results you want to list. in: query @@ -67205,13 +67222,13 @@ paths: be returned. in: query required: false - schema: *412 + schema: *413 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *413 + schema: *414 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -67235,7 +67252,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: *414 + instances_url: *415 state: *179 fixed_at: *175 dismissed_by: @@ -67243,11 +67260,11 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: *415 - dismissed_comment: *416 - rule: *417 - tool: *418 - most_recent_instance: *419 + dismissed_reason: *416 + dismissed_comment: *417 + rule: *418 + tool: *419 + most_recent_instance: *420 dismissal_approved_by: anyOf: - type: 'null' @@ -67370,7 +67387,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &420 + '403': &421 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -67397,9 +67414,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *324 - *325 - - &421 + - *326 + - &422 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -67413,7 +67430,7 @@ paths: description: Response content: application/json: - schema: &422 + schema: &423 type: object properties: number: *170 @@ -67421,7 +67438,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: *414 + instances_url: *415 state: *179 fixed_at: *175 dismissed_by: @@ -67429,8 +67446,8 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: *415 - dismissed_comment: *416 + dismissed_reason: *416 + dismissed_comment: *417 rule: type: object properties: @@ -67492,8 +67509,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *418 - most_recent_instance: *419 + tool: *419 + most_recent_instance: *420 dismissal_approved_by: anyOf: - type: 'null' @@ -67589,7 +67606,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -67609,9 +67626,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: true content: @@ -67626,8 +67643,8 @@ paths: enum: - open - dismissed - dismissed_reason: *415 - dismissed_comment: *416 + dismissed_reason: *416 + dismissed_comment: *417 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -67655,7 +67672,7 @@ paths: description: Response content: application/json: - schema: *422 + schema: *423 examples: default: value: @@ -67731,7 +67748,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &426 + '403': &427 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -67758,15 +67775,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 responses: '200': description: Response content: application/json: - schema: &423 + schema: &424 type: object properties: status: @@ -67793,13 +67810,13 @@ paths: - description - started_at examples: - default: &424 + default: &425 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &425 + '400': &426 description: Bad Request content: application/json: @@ -67810,7 +67827,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -67835,29 +67852,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 responses: '200': description: OK content: application/json: - schema: *423 + schema: *424 examples: - default: *424 + default: *425 '202': description: Accepted content: application/json: - schema: *423 + schema: *424 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *425 + '400': *426 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -67889,9 +67906,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: false content: @@ -67937,8 +67954,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *425 - '403': *426 + '400': *426 + '403': *427 '404': *6 '422': description: Unprocessable Entity @@ -67962,13 +67979,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 - *19 - *17 - - *427 - *428 + - *429 responses: '200': description: Response @@ -67979,10 +67996,10 @@ paths: items: type: object properties: - ref: *411 - analysis_key: *429 - environment: *430 - category: *431 + ref: *412 + analysis_key: *430 + environment: *431 + category: *432 state: type: - string @@ -67999,7 +68016,7 @@ paths: properties: text: type: string - location: *432 + location: *433 html_url: type: string classifications: @@ -68007,7 +68024,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *433 + items: *434 examples: default: value: @@ -68044,7 +68061,7 @@ paths: end_column: 50 classifications: - source - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68078,25 +68095,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *324 - *325 - - *409 + - *326 - *410 + - *411 - *19 - *17 - - *428 + - *429 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *411 + schema: *412 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &434 + schema: &435 type: string description: An identifier for the upload. examples: @@ -68118,23 +68135,23 @@ paths: application/json: schema: type: array - items: &435 + items: &436 type: object properties: - ref: *411 - commit_sha: &443 + ref: *412 + commit_sha: &444 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *429 + analysis_key: *430 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *431 + category: *432 error: type: string examples: @@ -68159,8 +68176,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *434 - tool: *418 + sarif_id: *435 + tool: *419 deletable: type: boolean warning: @@ -68222,7 +68239,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68258,8 +68275,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *324 - *325 + - *326 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -68272,7 +68289,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *436 examples: response: summary: application/json response @@ -68326,7 +68343,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *420 + '403': *421 '404': *6 '422': description: Response if analysis could not be processed @@ -68413,8 +68430,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *324 - *325 + - *326 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -68470,7 +68487,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *426 + '403': *427 '404': *6 '503': *113 x-github: @@ -68492,8 +68509,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -68501,7 +68518,7 @@ paths: application/json: schema: type: array - items: &436 + items: &437 title: CodeQL Database description: A CodeQL database. type: object @@ -68613,7 +68630,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68642,8 +68659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *324 - *325 + - *326 - name: language in: path description: The language of the CodeQL database. @@ -68655,7 +68672,7 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: default: value: @@ -68687,9 +68704,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &468 + '302': &469 description: Found - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68711,8 +68728,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *324 - *325 + - *326 - name: language in: path description: The language of the CodeQL database. @@ -68722,7 +68739,7 @@ paths: responses: '204': description: Response - '403': *426 + '403': *427 '404': *6 '503': *113 x-github: @@ -68750,8 +68767,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -68760,7 +68777,7 @@ paths: type: object additionalProperties: false properties: - language: &437 + language: &438 type: string description: The language targeted by the CodeQL query enum: @@ -68840,7 +68857,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &441 + schema: &442 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -68850,7 +68867,7 @@ paths: description: The ID of the variant analysis. controller_repo: *64 actor: *4 - query_language: *437 + query_language: *438 query_pack_url: type: string description: The download url for the query pack. @@ -68898,7 +68915,7 @@ paths: items: type: object properties: - repository: &438 + repository: &439 title: Repository Identifier description: Repository Identifier type: object @@ -68940,7 +68957,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &442 + analysis_status: &443 type: string description: The new status of the CodeQL variant analysis repository task. @@ -68972,7 +68989,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &439 + access_mismatch_repos: &440 type: object properties: repository_count: @@ -68987,7 +69004,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *438 + items: *439 required: - repository_count - repositories @@ -69010,8 +69027,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *439 - over_limit_repos: *439 + no_codeql_db_repos: *440 + over_limit_repos: *440 required: - access_mismatch_repos - not_found_repos @@ -69027,7 +69044,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &440 + value: &441 summary: Default response value: id: 1 @@ -69173,10 +69190,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *440 + value: *441 repository_lists: summary: Response for a successful variant analysis submission - value: *440 + value: *441 '404': *6 '422': description: Unable to process variant analysis submission @@ -69204,8 +69221,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *324 - *325 + - *326 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -69217,9 +69234,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *442 examples: - default: *440 + default: *441 '404': *6 '503': *113 x-github: @@ -69242,7 +69259,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *324 + - *325 - name: repo in: path description: The name of the controller repository. @@ -69277,7 +69294,7 @@ paths: type: object properties: repository: *64 - analysis_status: *442 + analysis_status: *443 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -69402,8 +69419,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -69496,7 +69513,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -69517,8 +69534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -69612,7 +69629,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *426 + '403': *427 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -69683,8 +69700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -69692,7 +69709,7 @@ paths: schema: type: object properties: - commit_sha: *443 + commit_sha: *444 ref: type: string description: |- @@ -69752,7 +69769,7 @@ paths: schema: type: object properties: - id: *434 + id: *435 url: type: string description: The REST API URL for checking the status of the upload. @@ -69766,7 +69783,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *426 + '403': *427 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -69789,8 +69806,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *324 - *325 + - *326 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -69838,7 +69855,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *420 + '403': *421 '404': description: Not Found if the sarif id does not match any upload '503': *113 @@ -69863,8 +69880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -69945,8 +69962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *324 - *325 + - *326 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -70074,8 +70091,8 @@ paths: parameters: - *17 - *19 - - *324 - *325 + - *326 responses: '200': description: Response @@ -70091,7 +70108,7 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: default: value: @@ -70389,8 +70406,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -70454,17 +70471,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '400': *14 '401': *23 '403': *27 @@ -70493,8 +70510,8 @@ paths: parameters: - *17 - *19 - - *324 - *325 + - *326 responses: '200': description: Response @@ -70558,8 +70575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *324 - *325 + - *326 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -70596,9 +70613,9 @@ paths: type: integer machines: type: array - items: *445 + items: *446 examples: - default: &654 + default: &655 value: total_count: 2 machines: @@ -70638,8 +70655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *324 - *325 + - *326 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -70726,8 +70743,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *324 - *325 + - *326 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -70796,8 +70813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -70815,7 +70832,7 @@ paths: type: integer secrets: type: array - items: &449 + items: &450 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -70836,7 +70853,7 @@ paths: - created_at - updated_at examples: - default: *446 + default: *447 headers: Link: *65 x-github: @@ -70859,16 +70876,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *447 + schema: *448 examples: - default: *448 + default: *449 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -70888,17 +70905,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *449 + schema: *450 examples: - default: *450 + default: *451 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70918,8 +70935,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -70972,8 +70989,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -71002,8 +71019,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *324 - *325 + - *326 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -71041,7 +71058,7 @@ paths: application/json: schema: type: array - items: &451 + items: &452 title: Collaborator description: Collaborator type: object @@ -71234,8 +71251,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 responses: '204': @@ -71282,8 +71299,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 requestBody: required: false @@ -71310,7 +71327,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &518 + schema: &519 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -71538,8 +71555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 responses: '204': @@ -71571,8 +71588,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *324 - *325 + - *326 - *69 responses: '200': @@ -71593,7 +71610,7 @@ paths: user: anyOf: - type: 'null' - - *451 + - *452 required: - permission - role_name @@ -71647,8 +71664,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -71658,7 +71675,7 @@ paths: application/json: schema: type: array - items: &452 + items: &453 title: Commit Comment description: Commit Comment type: object @@ -71716,7 +71733,7 @@ paths: - created_at - updated_at examples: - default: &457 + default: &458 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -71775,17 +71792,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: &458 + default: &459 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -71842,8 +71859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -71866,7 +71883,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: default: value: @@ -71917,8 +71934,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -71940,8 +71957,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -71968,7 +71985,7 @@ paths: application/json: schema: type: array - items: &453 + items: &454 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -72012,7 +72029,7 @@ paths: - content - created_at examples: - default: &521 + default: &522 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -72057,8 +72074,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -72091,9 +72108,9 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: &454 + default: &455 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -72122,9 +72139,9 @@ paths: description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -72146,10 +72163,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - &522 + - &523 name: reaction_id description: The unique identifier of the reaction. in: path @@ -72204,8 +72221,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *324 - *325 + - *326 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -72261,9 +72278,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: &568 + default: &569 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -72357,9 +72374,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *324 - *325 - - &456 + - *326 + - &457 name: commit_sha description: The SHA of the commit. in: path @@ -72431,9 +72448,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *324 - *325 - - *456 + - *326 + - *457 - *17 - *19 responses: @@ -72443,9 +72460,9 @@ paths: application/json: schema: type: array - items: *452 + items: *453 examples: - default: *457 + default: *458 headers: Link: *65 x-github: @@ -72473,9 +72490,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *324 - *325 - - *456 + - *326 + - *457 requestBody: required: true content: @@ -72510,9 +72527,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: *458 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -72540,9 +72557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *324 - *325 - - *456 + - *326 + - *457 - *17 - *19 responses: @@ -72552,9 +72569,9 @@ paths: application/json: schema: type: array - items: *459 + items: *460 examples: - default: &560 + default: &561 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -73091,11 +73108,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *324 - *325 + - *326 - *19 - *17 - - &460 + - &461 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -73110,9 +73127,9 @@ paths: description: Response content: application/json: - schema: *455 + schema: *456 examples: - default: &548 + default: &549 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -73225,11 +73242,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *324 - *325 - - *460 + - *326 - *461 - *462 + - *463 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -73263,9 +73280,9 @@ paths: type: integer check_runs: type: array - items: *402 + items: *403 examples: - default: *463 + default: *464 headers: Link: *65 x-github: @@ -73290,9 +73307,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -73300,7 +73317,7 @@ paths: schema: type: integer example: 1 - - *461 + - *462 - *17 - *19 responses: @@ -73318,7 +73335,7 @@ paths: type: integer check_suites: type: array - items: *406 + items: *407 examples: default: value: @@ -73518,9 +73535,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - *17 - *19 responses: @@ -73722,9 +73739,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - *17 - *19 responses: @@ -73734,7 +73751,7 @@ paths: application/json: schema: type: array - items: &633 + items: &634 title: Status description: The status of a commit. type: object @@ -73815,7 +73832,7 @@ paths: site_admin: false headers: Link: *65 - '301': *328 + '301': *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73843,8 +73860,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -73877,11 +73894,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *464 + - *465 code_of_conduct_file: anyOf: - type: 'null' - - &465 + - &466 title: Community Health File type: object properties: @@ -73901,19 +73918,19 @@ paths: contributing: anyOf: - type: 'null' - - *465 + - *466 readme: anyOf: - type: 'null' - - *465 + - *466 issue_template: anyOf: - type: 'null' - - *465 + - *466 pull_request_template: anyOf: - type: 'null' - - *465 + - *466 required: - code_of_conduct - code_of_conduct_file @@ -74042,8 +74059,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *324 - *325 + - *326 - *19 - *17 - name: basehead @@ -74091,8 +74108,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *455 - merge_base_commit: *455 + base_commit: *456 + merge_base_commit: *456 status: type: string enum: @@ -74116,10 +74133,10 @@ paths: - 6 commits: type: array - items: *455 + items: *456 files: type: array - items: *466 + items: *467 required: - url - html_url @@ -74405,8 +74422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -74576,7 +74593,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &467 + response-if-content-is-a-file-github-object: &468 summary: Response if content is a file value: type: file @@ -74713,7 +74730,7 @@ paths: - size - type - url - - &573 + - &574 title: Content File description: Content File type: object @@ -74931,7 +74948,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *467 + response-if-content-is-a-file: *468 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -75000,7 +75017,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *468 + '302': *469 '304': *35 x-github: githubCloudOnly: false @@ -75023,8 +75040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -75119,7 +75136,7 @@ paths: description: Response content: application/json: - schema: &469 + schema: &470 title: File Commit description: File Commit type: object @@ -75275,7 +75292,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *470 examples: example-for-creating-a-file: value: @@ -75329,7 +75346,7 @@ paths: schema: oneOf: - *3 - - &500 + - &501 description: Repository rule violation was detected type: object properties: @@ -75350,7 +75367,7 @@ paths: items: type: object properties: - placeholder_id: &625 + placeholder_id: &626 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -75382,8 +75399,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -75444,7 +75461,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *470 examples: default: value: @@ -75499,8 +75516,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *324 - *325 + - *326 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -75624,23 +75641,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *324 - *325 + - *326 - *189 - *190 - *191 - *192 + - *193 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *193 - - *470 - *194 + - *471 - *195 - *196 + - *197 - *59 - *45 - *46 @@ -75652,7 +75670,7 @@ paths: application/json: schema: type: array - items: &474 + items: &475 type: object description: A Dependabot alert. properties: @@ -75703,7 +75721,7 @@ paths: - transitive - inconclusive - - security_advisory: *471 + security_advisory: *472 security_vulnerability: *63 url: *173 html_url: *174 @@ -75734,8 +75752,8 @@ paths: dismissal. maxLength: 280 fixed_at: *175 - auto_dismissed_at: *472 - dismissal_request: *473 + auto_dismissed_at: *473 + dismissal_request: *474 assignees: type: array description: The users assigned to this alert. @@ -75990,9 +76008,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *324 - *325 - - &475 + - *326 + - &476 name: alert_number in: path description: |- @@ -76007,7 +76025,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: default: value: @@ -76139,9 +76157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *324 - *325 - - *475 + - *326 + - *476 requestBody: required: true content: @@ -76197,7 +76215,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: default: value: @@ -76327,8 +76345,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -76346,7 +76364,7 @@ paths: type: integer secrets: type: array - items: &478 + items: &479 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -76400,16 +76418,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *477 + default: *478 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76429,15 +76447,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *478 + schema: *479 examples: default: value: @@ -76463,8 +76481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -76517,8 +76535,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -76541,8 +76559,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *324 - *325 + - *326 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -76716,8 +76734,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -76977,8 +76995,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -77061,7 +77079,7 @@ paths: - version - url additionalProperties: false - metadata: &479 + metadata: &480 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -77100,7 +77118,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *479 + metadata: *480 resolved: type: object description: A collection of resolved package dependencies. @@ -77114,7 +77132,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *479 + metadata: *480 relationship: type: string description: A notation of whether a dependency is requested @@ -77247,8 +77265,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *324 - *325 + - *326 - name: sha description: The SHA recorded at creation time. in: query @@ -77289,9 +77307,9 @@ paths: application/json: schema: type: array - items: *480 + items: *481 examples: - default: *481 + default: *482 headers: Link: *65 x-github: @@ -77357,8 +77375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -77440,7 +77458,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: simple-example: summary: Simple example @@ -77513,9 +77531,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *324 - *325 - - &482 + - *326 + - &483 name: deployment_id description: deployment_id parameter in: path @@ -77527,7 +77545,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: default: value: @@ -77592,9 +77610,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *324 - *325 - - *482 + - *326 + - *483 responses: '204': description: Response @@ -77616,9 +77634,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *324 - *325 - - *482 + - *326 + - *483 - *17 - *19 responses: @@ -77628,7 +77646,7 @@ paths: application/json: schema: type: array - items: &483 + items: &484 title: Deployment Status description: The status of a deployment. type: object @@ -77792,9 +77810,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *324 - *325 - - *482 + - *326 + - *483 requestBody: required: true content: @@ -77869,9 +77887,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: - default: &484 + default: &485 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -77927,9 +77945,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *324 - *325 - - *482 + - *326 + - *483 - name: status_id in: path required: true @@ -77940,9 +77958,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: - default: *484 + default: *485 '404': *6 x-github: githubCloudOnly: false @@ -77967,8 +77985,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -78025,8 +78043,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -78044,7 +78062,7 @@ paths: - 5 environments: type: array - items: &486 + items: &487 title: Environment description: Details of a deployment environment type: object @@ -78106,7 +78124,7 @@ paths: type: string examples: - wait_timer - wait_timer: &488 + wait_timer: &489 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -78148,7 +78166,7 @@ paths: items: type: object properties: - type: *485 + type: *486 reviewer: anyOf: - *4 @@ -78175,7 +78193,7 @@ paths: - id - node_id - type - deployment_branch_policy: &489 + deployment_branch_policy: &490 type: - object - 'null' @@ -78292,9 +78310,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *324 - *325 - - &487 + - *326 + - &488 name: environment_name in: path required: true @@ -78307,9 +78325,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: &490 + default: &491 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -78393,9 +78411,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: false content: @@ -78405,7 +78423,7 @@ paths: - object - 'null' properties: - wait_timer: *488 + wait_timer: *489 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -78424,14 +78442,14 @@ paths: items: type: object properties: - type: *485 + type: *486 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *489 + deployment_branch_policy: *490 additionalProperties: false examples: default: @@ -78451,9 +78469,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: *490 + default: *491 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -78477,9 +78495,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *324 - *325 - - *487 + - *326 + - *488 responses: '204': description: Default response @@ -78504,9 +78522,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *17 - *19 responses: @@ -78525,7 +78543,7 @@ paths: - 2 branch_policies: type: array - items: &491 + items: &492 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -78586,9 +78604,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: true content: @@ -78636,9 +78654,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - example-wildcard: &492 + example-wildcard: &493 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -78680,10 +78698,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - &493 + - *326 + - *488 + - &494 name: branch_policy_id in: path required: true @@ -78695,9 +78713,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78716,10 +78734,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - *493 + - *326 + - *488 + - *494 requestBody: required: true content: @@ -78748,9 +78766,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78769,10 +78787,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - *493 + - *326 + - *488 + - *494 responses: '204': description: Response @@ -78797,9 +78815,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 responses: '200': description: List of deployment protection rules @@ -78816,7 +78834,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &494 + items: &495 title: Deployment protection rule description: Deployment protection rule type: object @@ -78838,7 +78856,7 @@ paths: for the environment. examples: - true - app: &495 + app: &496 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -78941,9 +78959,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 requestBody: content: application/json: @@ -78964,9 +78982,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *494 + schema: *495 examples: - default: &496 + default: &497 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -79001,9 +79019,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 - *19 - *17 responses: @@ -79023,7 +79041,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *495 + items: *496 examples: default: value: @@ -79058,10 +79076,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *324 - *325 - - *487 - - &497 + - *326 + - *488 + - &498 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -79073,9 +79091,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - default: *496 + default: *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79096,10 +79114,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 - - *497 + - *498 responses: '204': description: Response @@ -79125,9 +79143,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *17 - *19 responses: @@ -79145,9 +79163,9 @@ paths: type: integer secrets: type: array - items: *369 + items: *370 examples: - default: *370 + default: *371 headers: Link: *65 x-github: @@ -79172,17 +79190,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *324 - *325 - - *487 + - *326 + - *488 responses: '200': description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79204,18 +79222,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 responses: '200': description: Response content: application/json: - schema: *369 + schema: *370 examples: - default: *498 + default: *499 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79237,9 +79255,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 requestBody: required: true @@ -79297,9 +79315,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 responses: '204': @@ -79325,10 +79343,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *324 - *325 - - *487 - - *340 + - *326 + - *488 + - *341 - *19 responses: '200': @@ -79345,9 +79363,9 @@ paths: type: integer variables: type: array - items: *373 + items: *374 examples: - default: *374 + default: *375 headers: Link: *65 x-github: @@ -79370,9 +79388,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: true content: @@ -79424,18 +79442,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *163 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: *499 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79456,10 +79474,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *324 - *325 + - *326 - *163 - - *487 + - *488 requestBody: required: true content: @@ -79501,10 +79519,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *324 - *325 + - *326 - *163 - - *487 + - *488 responses: '204': description: Response @@ -79526,8 +79544,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -79595,8 +79613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *324 - *325 + - *326 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -79755,8 +79773,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -79789,9 +79807,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 '400': *14 '422': *15 '403': *27 @@ -79812,8 +79830,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -79873,7 +79891,7 @@ paths: schema: oneOf: - *121 - - *500 + - *501 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79898,8 +79916,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *324 - *325 + - *326 - name: file_sha in: path required: true @@ -79999,8 +80017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80109,7 +80127,7 @@ paths: description: Response content: application/json: - schema: &501 + schema: &502 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -80336,15 +80354,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *324 - *325 - - *456 + - *326 + - *457 responses: '200': description: Response content: application/json: - schema: *501 + schema: *502 examples: default: value: @@ -80400,9 +80418,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *324 - *325 - - &502 + - *326 + - &503 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -80419,7 +80437,7 @@ paths: application/json: schema: type: array - items: &503 + items: &504 title: Git Reference description: Git references within a repository type: object @@ -80495,17 +80513,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 responses: '200': description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: &504 + default: &505 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -80534,8 +80552,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80564,9 +80582,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -80592,9 +80610,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 requestBody: required: true content: @@ -80623,9 +80641,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 '422': *15 '409': *52 x-github: @@ -80643,9 +80661,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 responses: '204': description: Response @@ -80700,8 +80718,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80768,7 +80786,7 @@ paths: description: Response content: application/json: - schema: &506 + schema: &507 title: Git Tag description: Metadata for a Git tag type: object @@ -80824,7 +80842,7 @@ paths: - sha - type - url - verification: *505 + verification: *506 required: - sha - url @@ -80834,7 +80852,7 @@ paths: - tag - message examples: - default: &507 + default: &508 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -80907,8 +80925,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *324 - *325 + - *326 - name: tag_sha in: path required: true @@ -80919,9 +80937,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *507 + default: *508 '404': *6 '409': *52 x-github: @@ -80945,8 +80963,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -81020,7 +81038,7 @@ paths: description: Response content: application/json: - schema: &508 + schema: &509 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -81122,8 +81140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *324 - *325 + - *326 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -81146,7 +81164,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: default-response: summary: Default response @@ -81205,8 +81223,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -81216,7 +81234,7 @@ paths: application/json: schema: type: array - items: &509 + items: &510 title: Webhook description: Webhooks for repositories. type: object @@ -81279,7 +81297,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &741 + last_response: &742 title: Hook Response type: object properties: @@ -81356,8 +81374,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -81410,9 +81428,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: &510 + default: &511 value: type: Repository id: 12345678 @@ -81460,17 +81478,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '200': description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '404': *6 x-github: githubCloudOnly: false @@ -81490,9 +81508,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 requestBody: required: true content: @@ -81537,9 +81555,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '422': *15 '404': *6 x-github: @@ -81560,9 +81578,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -81586,9 +81604,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '200': description: Response @@ -81615,9 +81633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *324 - *325 - - *202 + - *326 + - *203 requestBody: required: false content: @@ -81661,12 +81679,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *324 - *325 - - *202 - - *17 + - *326 - *203 + - *17 - *204 + - *205 responses: '200': description: Response @@ -81674,9 +81692,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *206 + default: *207 '400': *14 '422': *15 x-github: @@ -81695,18 +81713,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *207 + schema: *208 examples: - default: *208 + default: *209 '400': *14 '422': *15 x-github: @@ -81725,9 +81743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 - *16 responses: '202': *37 @@ -81750,9 +81768,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -81777,9 +81795,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -81802,8 +81820,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response if immutable releases are enabled @@ -81851,8 +81869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *324 - *325 + - *326 responses: '204': *183 '409': *52 @@ -81872,8 +81890,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *324 - *325 + - *326 responses: '204': *183 '409': *52 @@ -81930,14 +81948,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &511 + schema: &512 title: Import description: A repository import from an external source. type: object @@ -82044,7 +82062,7 @@ paths: - html_url - authors_url examples: - default: &514 + default: &515 value: vcs: subversion use_lfs: true @@ -82060,7 +82078,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &512 + '503': &513 description: Unavailable due to service under maintenance. content: application/json: @@ -82089,8 +82107,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -82138,7 +82156,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: default: value: @@ -82163,7 +82181,7 @@ paths: type: string '422': *15 '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82191,8 +82209,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -82244,7 +82262,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: example-1: summary: Example 1 @@ -82292,7 +82310,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82315,12 +82333,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *324 - *325 + - *326 responses: '204': description: Response - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82346,9 +82364,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *324 - *325 - - &675 + - *326 + - &676 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -82362,7 +82380,7 @@ paths: application/json: schema: type: array - items: &513 + items: &514 title: Porter Author description: Porter Author type: object @@ -82416,7 +82434,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82441,8 +82459,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *324 - *325 + - *326 - name: author_id in: path required: true @@ -82472,7 +82490,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: default: value: @@ -82485,7 +82503,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82509,8 +82527,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -82551,7 +82569,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82579,8 +82597,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -82607,11 +82625,11 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *514 + default: *515 '422': *15 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82634,8 +82652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -82643,8 +82661,8 @@ paths: application/json: schema: *20 examples: - default: *515 - '301': *328 + default: *516 + '301': *329 '404': *6 x-github: githubCloudOnly: false @@ -82664,8 +82682,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -82673,12 +82691,12 @@ paths: application/json: schema: anyOf: - - *221 + - *222 - type: object properties: {} additionalProperties: false examples: - default: &517 + default: &518 value: limit: collaborators_only origin: repository @@ -82703,13 +82721,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *516 + schema: *517 examples: default: summary: Example request body @@ -82721,9 +82739,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *517 + default: *518 '409': description: Response x-github: @@ -82745,8 +82763,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -82769,8 +82787,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -82780,9 +82798,9 @@ paths: application/json: schema: type: array - items: *518 + items: *519 examples: - default: &668 + default: &669 value: - id: 1 repository: @@ -82913,9 +82931,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *324 - *325 - - *225 + - *326 + - *226 requestBody: required: false content: @@ -82944,7 +82962,7 @@ paths: description: Response content: application/json: - schema: *518 + schema: *519 examples: default: value: @@ -83075,9 +83093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *324 - *325 - - *225 + - *326 + - *226 responses: '204': description: Response @@ -83108,8 +83126,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *324 - *325 + - *326 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -83157,7 +83175,7 @@ paths: required: false schema: type: string - - *232 + - *233 - name: sort description: What to sort results by. in: query @@ -83182,7 +83200,7 @@ paths: type: array items: *81 examples: - default: &527 + default: &528 value: - id: 1 node_id: MDU6SXNzdWUx @@ -83331,7 +83349,7 @@ paths: state_reason: completed headers: Link: *65 - '301': *328 + '301': *329 '422': *15 '404': *6 x-github: @@ -83360,8 +83378,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -83453,7 +83471,7 @@ paths: application/json: schema: *81 examples: - default: &524 + default: &525 value: id: 1 node_id: MDU6SXNzdWUx @@ -83610,7 +83628,7 @@ paths: '422': *15 '503': *113 '404': *6 - '410': *519 + '410': *520 x-github: triggersNotification: true githubCloudOnly: false @@ -83638,8 +83656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *324 - *325 + - *326 - *103 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -83662,7 +83680,7 @@ paths: type: array items: *82 examples: - default: &526 + default: &527 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -83720,8 +83738,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': @@ -83730,7 +83748,7 @@ paths: application/json: schema: *82 examples: - default: &520 + default: &521 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -83785,8 +83803,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -83811,7 +83829,7 @@ paths: application/json: schema: *82 examples: - default: *520 + default: *521 '422': *15 x-github: githubCloudOnly: false @@ -83829,8 +83847,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -83859,8 +83877,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': @@ -83923,7 +83941,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -83940,8 +83958,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -83949,7 +83967,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 '503': *113 x-github: githubCloudOnly: false @@ -83967,8 +83985,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -83995,9 +84013,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -84018,8 +84036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -84052,16 +84070,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -84083,10 +84101,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - *522 + - *523 responses: '204': description: Response @@ -84106,8 +84124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -84117,7 +84135,7 @@ paths: application/json: schema: type: array - items: &523 + items: &524 title: Issue Event description: Issue Event type: object @@ -84457,8 +84475,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *324 - *325 + - *326 - name: event_id in: path required: true @@ -84469,7 +84487,7 @@ paths: description: Response content: application/json: - schema: *523 + schema: *524 examples: default: value: @@ -84662,7 +84680,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *519 + '410': *520 '403': *27 x-github: githubCloudOnly: false @@ -84696,9 +84714,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *324 - *325 - - &525 + - *326 + - &526 name: issue_number description: The number that identifies the issue. in: path @@ -84714,7 +84732,7 @@ paths: examples: default: summary: Issue - value: *524 + value: *525 pinned_comment: summary: Issue with pinned comment value: @@ -84913,9 +84931,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 '304': *35 x-github: githubCloudOnly: false @@ -84940,9 +84958,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -85083,13 +85101,13 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 '422': *15 '503': *113 '403': *27 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85107,9 +85125,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -85137,7 +85155,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85153,9 +85171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: content: application/json: @@ -85182,7 +85200,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85204,9 +85222,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: assignee in: path required: true @@ -85246,9 +85264,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *86 - *17 - *19 @@ -85261,11 +85279,11 @@ paths: type: array items: *82 examples: - default: *526 + default: *527 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85294,9 +85312,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -85320,14 +85338,14 @@ paths: application/json: schema: *82 examples: - default: *520 + default: *521 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -85355,9 +85373,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85369,12 +85387,12 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85402,9 +85420,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -85428,15 +85446,15 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *328 + '301': *329 '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -85467,9 +85485,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -85483,13 +85501,13 @@ paths: application/json: schema: *81 examples: - default: *524 - '301': *328 + default: *525 + '301': *329 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 x-github: triggersNotification: true githubCloudOnly: false @@ -85515,9 +85533,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85529,12 +85547,12 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85551,9 +85569,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85567,7 +85585,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &530 + - &531 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -85616,7 +85634,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &531 + - &532 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -85744,7 +85762,7 @@ paths: - performed_via_github_app - assignee - assigner - - &532 + - &533 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -85790,7 +85808,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &533 + - &534 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -85836,7 +85854,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &534 + - &535 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -85885,7 +85903,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &535 + - &536 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -85927,7 +85945,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &536 + - &537 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -85969,7 +85987,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &537 + - &538 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -86025,7 +86043,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &538 + - &539 title: Locked Issue Event description: Locked Issue Event type: object @@ -86070,7 +86088,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &539 + - &540 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -86131,7 +86149,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &540 + - &541 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -86192,7 +86210,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &541 + - &542 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -86253,7 +86271,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &542 + - &543 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -86346,7 +86364,7 @@ paths: color: red headers: Link: *65 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86363,9 +86381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -86375,9 +86393,9 @@ paths: application/json: schema: type: array - items: *528 + items: *529 examples: - default: &639 + default: &640 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -86401,9 +86419,9 @@ paths: value: '2025-12-25' headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86420,9 +86438,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -86434,7 +86452,7 @@ paths: type: array items: *80 examples: - default: &529 + default: &530 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -86452,9 +86470,9 @@ paths: default: false headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86470,9 +86488,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -86517,10 +86535,10 @@ paths: type: array items: *80 examples: - default: *529 - '301': *328 + default: *530 + '301': *329 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -86537,9 +86555,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -86601,10 +86619,10 @@ paths: type: array items: *80 examples: - default: *529 - '301': *328 + default: *530 + '301': *329 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -86621,15 +86639,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '204': description: Response - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86648,9 +86666,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: name in: path required: true @@ -86674,9 +86692,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86696,9 +86714,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -86727,7 +86745,7 @@ paths: '204': description: Response '403': *27 - '410': *519 + '410': *520 '404': *6 '422': *15 x-github: @@ -86745,9 +86763,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '204': description: Response @@ -86777,9 +86795,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '200': description: Response @@ -86787,10 +86805,10 @@ paths: application/json: schema: *81 examples: - default: *524 - '301': *328 + default: *525 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86807,9 +86825,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -86835,13 +86853,13 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86859,9 +86877,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86893,16 +86911,16 @@ paths: description: Response content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Response content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -86924,10 +86942,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *324 - *325 - - *525 - - *522 + - *326 + - *526 + - *523 responses: '204': description: Response @@ -86956,9 +86974,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86982,7 +87000,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -87015,9 +87033,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -87029,11 +87047,11 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87061,9 +87079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -87092,14 +87110,14 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -87119,9 +87137,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -87154,7 +87172,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 '403': *27 '404': *6 '422': *7 @@ -87176,9 +87194,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -87193,7 +87211,6 @@ paths: description: Timeline Event type: object anyOf: - - *530 - *531 - *532 - *533 @@ -87206,6 +87223,7 @@ paths: - *540 - *541 - *542 + - *543 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -87262,7 +87280,7 @@ paths: pin: anyOf: - type: 'null' - - *543 + - *544 required: - event - actor @@ -87538,7 +87556,7 @@ paths: type: string comments: type: array - items: &562 + items: &563 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -87779,7 +87797,7 @@ paths: type: string comments: type: array - items: *452 + items: *453 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -88054,7 +88072,7 @@ paths: headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88071,8 +88089,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -88082,7 +88100,7 @@ paths: application/json: schema: type: array - items: &544 + items: &545 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -88150,8 +88168,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88187,9 +88205,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: &545 + default: &546 value: id: 1 key: ssh-rsa AAA... @@ -88223,9 +88241,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *324 - *325 - - &546 + - *326 + - &547 name: key_id description: The unique identifier of the key. in: path @@ -88237,9 +88255,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: *545 + default: *546 '404': *6 x-github: githubCloudOnly: false @@ -88257,9 +88275,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *324 - *325 - - *546 + - *326 + - *547 responses: '204': description: Response @@ -88279,8 +88297,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -88292,7 +88310,7 @@ paths: type: array items: *80 examples: - default: *529 + default: *530 headers: Link: *65 '404': *6 @@ -88313,8 +88331,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88352,7 +88370,7 @@ paths: application/json: schema: *80 examples: - default: &547 + default: &548 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -88384,8 +88402,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -88398,7 +88416,7 @@ paths: application/json: schema: *80 examples: - default: *547 + default: *548 '404': *6 x-github: githubCloudOnly: false @@ -88415,8 +88433,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -88481,8 +88499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -88508,8 +88526,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -88548,9 +88566,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *324 - *325 - - *427 + - *326 + - *428 responses: '200': description: Response @@ -88697,8 +88715,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88763,8 +88781,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88798,9 +88816,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *455 + schema: *456 examples: - default: *548 + default: *549 '204': description: Response when already merged '404': @@ -88825,8 +88843,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *324 - *325 + - *326 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -88867,7 +88885,7 @@ paths: application/json: schema: type: array - items: *265 + items: *266 examples: default: value: @@ -88923,8 +88941,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88964,9 +88982,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: &549 + default: &550 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -89025,9 +89043,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *324 - *325 - - &550 + - *326 + - &551 name: milestone_number description: The number that identifies the milestone. in: path @@ -89039,9 +89057,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *549 + default: *550 '404': *6 x-github: githubCloudOnly: false @@ -89058,9 +89076,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 requestBody: required: false content: @@ -89098,9 +89116,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *549 + default: *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89116,9 +89134,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 responses: '204': description: Response @@ -89139,9 +89157,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 - *17 - *19 responses: @@ -89153,7 +89171,7 @@ paths: type: array items: *80 examples: - default: *529 + default: *530 headers: Link: *65 x-github: @@ -89172,12 +89190,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *324 - *325 - - *551 + - *326 - *552 - - *86 - *553 + - *86 + - *554 - *17 - *19 responses: @@ -89189,7 +89207,7 @@ paths: type: array items: *106 examples: - default: *554 + default: *555 headers: Link: *65 x-github: @@ -89213,8 +89231,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -89272,14 +89290,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &555 + schema: &556 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -89423,7 +89441,7 @@ paths: - custom_404 - public examples: - default: &556 + default: &557 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -89464,8 +89482,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89520,9 +89538,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *556 examples: - default: *556 + default: *557 '422': *15 '409': *52 x-github: @@ -89545,8 +89563,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89646,8 +89664,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -89673,8 +89691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -89684,7 +89702,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: Page Build description: Page Build type: object @@ -89776,8 +89794,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -89824,16 +89842,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: &558 + default: &559 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -89881,8 +89899,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *324 - *325 + - *326 - name: build_id in: path required: true @@ -89893,9 +89911,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89915,8 +89933,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90024,9 +90042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *324 - *325 - - &559 + - *326 + - &560 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -90084,9 +90102,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *324 - *325 - - *559 + - *326 + - *560 responses: '204': *183 '404': *6 @@ -90113,8 +90131,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -90409,8 +90427,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Private vulnerability reporting status @@ -90447,8 +90465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': *183 '422': *14 @@ -90469,8 +90487,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': *183 '422': *14 @@ -90492,8 +90510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -90501,7 +90519,7 @@ paths: application/json: schema: type: array - items: *279 + items: *280 examples: default: value: @@ -90532,8 +90550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90545,7 +90563,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *279 + items: *280 required: - properties examples: @@ -90595,8 +90613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *324 - *325 + - *326 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -90656,9 +90674,9 @@ paths: application/json: schema: type: array - items: *459 + items: *460 examples: - default: *560 + default: *561 headers: Link: *65 '304': *35 @@ -90690,8 +90708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90758,7 +90776,7 @@ paths: description: Response content: application/json: - schema: &564 + schema: &565 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -90887,7 +90905,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 active_lock_reason: type: - string @@ -90936,7 +90954,7 @@ paths: items: *4 requested_teams: type: array - items: *244 + items: *245 head: type: object properties: @@ -90974,14 +90992,14 @@ paths: _links: type: object properties: - comments: *266 - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + comments: *267 + commits: *267 + statuses: *267 + html: *267 + issue: *267 + review_comments: *267 + review_comment: *267 + self: *267 required: - comments - commits @@ -90992,7 +91010,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: *561 + auto_merge: *562 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -91094,7 +91112,7 @@ paths: - merged_by - review_comments examples: - default: &565 + default: &566 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -91621,8 +91639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *324 - *325 + - *326 - name: sort in: query required: false @@ -91651,9 +91669,9 @@ paths: application/json: schema: type: array - items: *562 + items: *563 examples: - default: &567 + default: &568 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -91730,17 +91748,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 responses: '200': description: Response content: application/json: - schema: *562 + schema: *563 examples: - default: &563 + default: &564 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -91815,8 +91833,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -91839,9 +91857,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: - default: *563 + default: *564 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91857,8 +91875,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -91880,8 +91898,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -91908,9 +91926,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -91931,8 +91949,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -91965,16 +91983,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -91996,10 +92014,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - *522 + - *523 responses: '204': description: Response @@ -92042,9 +92060,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *324 - *325 - - &566 + - *326 + - &567 name: pull_number description: The number that identifies the pull request. in: path @@ -92057,9 +92075,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *564 + schema: *565 examples: - default: *565 + default: *566 '304': *35 '404': *6 '406': @@ -92094,9 +92112,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -92138,9 +92156,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: *565 + default: *566 '422': *15 '403': *27 x-github: @@ -92162,9 +92180,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -92225,17 +92243,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -92265,9 +92283,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -92288,9 +92306,9 @@ paths: application/json: schema: type: array - items: *562 + items: *563 examples: - default: *567 + default: *568 headers: Link: *65 x-github: @@ -92323,9 +92341,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -92431,7 +92449,7 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: example-for-a-multi-line-comment: value: @@ -92519,9 +92537,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *95 requestBody: required: true @@ -92544,7 +92562,7 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: default: value: @@ -92630,9 +92648,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -92642,9 +92660,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: *568 + default: *569 headers: Link: *65 x-github: @@ -92674,9 +92692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -92686,7 +92704,7 @@ paths: application/json: schema: type: array - items: *466 + items: *467 examples: default: value: @@ -92724,9 +92742,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *324 - *325 - - *566 + - *326 + - *567 responses: '204': description: Response if pull request has been merged @@ -92749,9 +92767,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -92863,9 +92881,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 responses: '200': description: Response @@ -92940,9 +92958,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -92979,7 +92997,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: default: value: @@ -93515,9 +93533,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -93551,7 +93569,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: default: value: @@ -94056,9 +94074,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -94068,7 +94086,7 @@ paths: application/json: schema: type: array - items: &569 + items: &570 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -94224,9 +94242,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -94316,9 +94334,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: &571 + default: &572 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -94381,10 +94399,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - &570 + - *326 + - *567 + - &571 name: review_id description: The unique identifier of the review. in: path @@ -94396,9 +94414,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: &572 + default: &573 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -94457,10 +94475,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -94483,7 +94501,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: default: value: @@ -94545,18 +94563,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 responses: '200': description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *571 + default: *572 '422': *7 '404': *6 x-github: @@ -94583,10 +94601,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 - *17 - *19 responses: @@ -94684,9 +94702,9 @@ paths: _links: type: object properties: - self: *266 - html: *266 - pull_request: *266 + self: *267 + html: *267 + pull_request: *267 required: - self - html @@ -94844,10 +94862,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -94876,7 +94894,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: default: value: @@ -94939,10 +94957,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -94977,9 +94995,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *572 + default: *573 '404': *6 '422': *7 '403': *27 @@ -95001,9 +95019,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -95067,8 +95085,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *324 - *325 + - *326 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -95081,9 +95099,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: &574 + default: &575 value: type: file encoding: base64 @@ -95125,8 +95143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *324 - *325 + - *326 - name: dir description: The alternate path to look for a README file in: path @@ -95146,9 +95164,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *574 + default: *575 '404': *6 '422': *15 x-github: @@ -95170,8 +95188,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -95181,7 +95199,7 @@ paths: application/json: schema: type: array - items: *575 + items: *576 examples: default: value: @@ -95275,8 +95293,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -95352,9 +95370,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: &579 + default: &580 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -95459,9 +95477,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *324 - *325 - - &577 + - *326 + - &578 name: asset_id description: The unique identifier of the asset. in: path @@ -95473,9 +95491,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: &578 + default: &579 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -95510,7 +95528,7 @@ paths: type: User site_admin: false '404': *6 - '302': *468 + '302': *469 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95526,9 +95544,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *324 - *325 - - *577 + - *326 + - *578 requestBody: required: false content: @@ -95557,9 +95575,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: *578 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95575,9 +95593,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *324 - *325 - - *577 + - *326 + - *578 responses: '204': description: Response @@ -95602,8 +95620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -95689,16 +95707,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -95716,8 +95734,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *324 - *325 + - *326 - name: tag description: tag parameter in: path @@ -95730,9 +95748,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -95754,9 +95772,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *324 - *325 - - &580 + - *326 + - &581 name: release_id description: The unique identifier of the release. in: path @@ -95770,9 +95788,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '401': description: Unauthorized x-github: @@ -95790,9 +95808,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 requestBody: required: false content: @@ -95856,9 +95874,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': description: Not Found if the discussion category name is invalid content: @@ -95879,9 +95897,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 responses: '204': description: Response @@ -95902,9 +95920,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *324 - *325 - - *580 + - *326 + - *581 - *17 - *19 responses: @@ -95914,7 +95932,7 @@ paths: application/json: schema: type: array - items: *576 + items: *577 examples: default: value: @@ -95995,9 +96013,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *324 - *325 - - *580 + - *326 + - *581 - name: name in: query required: true @@ -96023,7 +96041,7 @@ paths: description: Response for successful upload content: application/json: - schema: *576 + schema: *577 examples: response-for-successful-upload: value: @@ -96078,9 +96096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -96104,9 +96122,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -96127,9 +96145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 requestBody: required: true content: @@ -96159,16 +96177,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -96190,10 +96208,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *324 - *325 - - *580 - - *522 + - *326 + - *581 + - *523 responses: '204': description: Response @@ -96217,9 +96235,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 - *17 - *19 responses: @@ -96235,8 +96253,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *286 - - &581 + - *287 + - &582 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -96255,69 +96273,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *287 - - *581 - allOf: - *288 - - *581 + - *582 - allOf: - *289 - - *581 - - allOf: - *582 - - *581 - allOf: - *290 - - *581 + - *582 + - allOf: + - *583 + - *582 - allOf: - *291 - - *581 + - *582 - allOf: - *292 - - *581 + - *582 - allOf: - *293 - - *581 + - *582 - allOf: - *294 - - *581 + - *582 - allOf: - *295 - - *581 + - *582 - allOf: - *296 - - *581 + - *582 - allOf: - *297 - - *581 + - *582 - allOf: - *298 - - *581 + - *582 - allOf: - *299 - - *581 + - *582 - allOf: - *300 - - *581 + - *582 - allOf: - *301 - - *581 + - *582 - allOf: - *302 - - *581 + - *582 - allOf: - *303 - - *581 + - *582 - allOf: - *304 - - *581 + - *582 - allOf: - *305 - - *581 + - *582 - allOf: - *306 - - *581 + - *582 + - allOf: + - *307 + - *582 examples: default: value: @@ -96356,8 +96374,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - *17 - *19 - name: includes_parents @@ -96368,7 +96386,7 @@ paths: schema: type: boolean default: true - - *583 + - *584 responses: '200': description: Response @@ -96376,7 +96394,7 @@ paths: application/json: schema: type: array - items: *307 + items: *308 examples: default: value: @@ -96423,8 +96441,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 requestBody: description: Request body required: true @@ -96444,16 +96462,16 @@ paths: - tag - push default: branch - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *281 + items: *285 + conditions: *282 rules: type: array description: An array of rules within the ruleset. - items: *584 + items: *585 required: - name - enforcement @@ -96484,9 +96502,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &594 + default: &595 value: id: 42 name: super cool ruleset @@ -96534,12 +96552,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *324 - *325 - - *585 + - *326 - *586 - *587 - *588 + - *589 - *17 - *19 responses: @@ -96547,9 +96565,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 '404': *6 '500': *53 x-github: @@ -96570,17 +96588,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *324 - *325 - - *591 + - *326 + - *592 responses: '200': description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '404': *6 '500': *53 x-github: @@ -96608,8 +96626,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96629,9 +96647,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *594 + default: *595 '404': *6 '500': *53 put: @@ -96649,8 +96667,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96675,16 +96693,16 @@ paths: - branch - tag - push - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *281 + items: *285 + conditions: *282 rules: description: An array of rules within the ruleset. type: array - items: *584 + items: *585 examples: default: value: @@ -96712,9 +96730,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *594 + default: *595 '404': *6 '422': *15 '500': *53 @@ -96733,8 +96751,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96757,8 +96775,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *324 - *325 + - *326 - *17 - *19 - name: ruleset_id @@ -96774,9 +96792,9 @@ paths: application/json: schema: type: array - items: *310 + items: *311 examples: - default: *595 + default: *596 '404': *6 '500': *53 x-github: @@ -96795,8 +96813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96814,7 +96832,7 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: default: value: @@ -96869,22 +96887,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *324 - *325 - - *597 + - *326 - *598 - *599 - *600 - *601 + - *602 - *59 - *19 - *17 - - *602 - *603 - *604 - *605 - *606 - *607 + - *608 responses: '200': description: Response @@ -96892,7 +96910,7 @@ paths: application/json: schema: type: array - items: &611 + items: &612 type: object properties: number: *170 @@ -96908,8 +96926,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *608 - resolution: *609 + state: *609 + resolution: *610 resolved_at: type: - string @@ -97003,7 +97021,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *610 + - *611 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -97162,16 +97180,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 - - *607 + - *326 + - *422 + - *608 responses: '200': description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -97225,9 +97243,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: true content: @@ -97235,8 +97253,8 @@ paths: schema: type: object properties: - state: *608 - resolution: *609 + state: *609 + resolution: *610 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -97274,7 +97292,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -97369,9 +97387,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 - *19 - *17 responses: @@ -97382,7 +97400,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &761 + items: &762 type: object properties: type: @@ -97409,7 +97427,6 @@ paths: - commit details: oneOf: - - *612 - *613 - *614 - *615 @@ -97422,6 +97439,7 @@ paths: - *622 - *623 - *624 + - *625 examples: default: value: @@ -97507,8 +97525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -97516,14 +97534,14 @@ paths: schema: type: object properties: - reason: &626 + reason: &627 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *625 + placeholder_id: *626 required: - reason - placeholder_id @@ -97540,7 +97558,7 @@ paths: schema: type: object properties: - reason: *626 + reason: *627 expire_at: type: - string @@ -97587,8 +97605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *324 - *325 + - *326 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -97603,7 +97621,7 @@ paths: properties: incremental_scans: type: array - items: &627 + items: &628 description: Information on a single scan performed by secret scanning on the repository type: object @@ -97631,15 +97649,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *627 + items: *628 backfill_scans: type: array - items: *627 + items: *628 custom_pattern_backfill_scans: type: array items: allOf: - - *627 + - *628 - type: object properties: pattern_name: @@ -97709,8 +97727,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *324 - *325 + - *326 - *59 - name: sort description: The property to sort the results by. @@ -97754,9 +97772,9 @@ paths: application/json: schema: type: array - items: *628 + items: *629 examples: - default: *629 + default: *630 '400': *14 '404': *6 x-github: @@ -97779,8 +97797,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -97860,7 +97878,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 required: - login - type @@ -97950,9 +97968,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: &631 + default: &632 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -98185,8 +98203,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -98299,7 +98317,7 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: default: value: @@ -98446,17 +98464,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '200': description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: *631 + default: *632 '403': *27 '404': *6 x-github: @@ -98480,9 +98498,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 requestBody: required: true content: @@ -98562,7 +98580,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 required: - login - type @@ -98653,10 +98671,10 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: *631 - add_credit: *631 + default: *632 + add_credit: *632 '403': *27 '404': *6 '422': @@ -98694,9 +98712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '202': *37 '400': *14 @@ -98723,17 +98741,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '202': description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 '400': *14 '422': *15 '403': *27 @@ -98759,8 +98777,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -98856,8 +98874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -98866,7 +98884,7 @@ paths: application/json: schema: type: array - items: &632 + items: &633 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -98899,8 +98917,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -98978,8 +98996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -99073,8 +99091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *324 - *325 + - *326 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -99228,8 +99246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *324 - *325 + - *326 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -99239,7 +99257,7 @@ paths: application/json: schema: type: array - items: *632 + items: *633 examples: default: value: @@ -99272,8 +99290,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *324 - *325 + - *326 - name: sha in: path required: true @@ -99329,7 +99347,7 @@ paths: description: Response content: application/json: - schema: *633 + schema: *634 examples: default: value: @@ -99383,8 +99401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -99416,14 +99434,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *324 - *325 + - *326 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &634 + schema: &635 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -99496,8 +99514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -99523,7 +99541,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -99550,8 +99568,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -99571,8 +99589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -99654,8 +99672,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *324 - *325 + - *326 - name: ref in: path required: true @@ -99691,8 +99709,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -99704,7 +99722,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 headers: Link: *65 '404': *6 @@ -99724,8 +99742,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *324 - *325 + - *326 - *19 - *17 responses: @@ -99733,7 +99751,7 @@ paths: description: Response content: application/json: - schema: &635 + schema: &636 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -99745,7 +99763,7 @@ paths: required: - names examples: - default: &636 + default: &637 value: names: - octocat @@ -99768,8 +99786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -99800,9 +99818,9 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: - default: *636 + default: *637 '404': *6 '422': *7 x-github: @@ -99823,9 +99841,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *324 - *325 - - &637 + - *326 + - &638 name: per description: The time frame to display results for. in: query @@ -99856,7 +99874,7 @@ paths: - 128 clones: type: array - items: &638 + items: &639 title: Traffic type: object properties: @@ -99943,8 +99961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -100038,8 +100056,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -100102,9 +100120,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *324 - *325 - - *637 + - *326 + - *638 responses: '200': description: Response @@ -100125,7 +100143,7 @@ paths: - 3782 views: type: array - items: *638 + items: *639 required: - uniques - count @@ -100202,8 +100220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -100477,8 +100495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -100501,8 +100519,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -100524,8 +100542,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -100551,8 +100569,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *324 - *325 + - *326 - name: ref in: path required: true @@ -100644,9 +100662,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -100794,7 +100812,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *141 - - *525 + - *526 requestBody: required: true content: @@ -100860,9 +100878,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *528 + items: *529 examples: - default: *639 + default: *640 '400': *14 '403': *27 '404': *6 @@ -100899,7 +100917,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *141 - - *525 + - *526 requestBody: required: true content: @@ -100966,9 +100984,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *528 + items: *529 examples: - default: *639 + default: *640 '400': *14 '403': *27 '404': *6 @@ -101000,8 +101018,8 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *141 - - *525 - - *228 + - *526 + - *229 responses: '204': description: Issue field value deleted successfully @@ -101038,6 +101056,9 @@ paths: * You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is. + > [!NOTE] + > `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata. + This endpoint requires you to authenticate and limits you to 10 requests per minute. tags: - search @@ -101141,7 +101162,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &640 + text_matches: &641 title: Search Result Text Matches type: array items: @@ -101304,7 +101325,7 @@ paths: enum: - author-date - committer-date - - &641 + - &642 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -101373,7 +101394,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 comment_count: type: integer message: @@ -101392,7 +101413,7 @@ paths: url: type: string format: uri - verification: *505 + verification: *506 required: - author - committer @@ -101407,7 +101428,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 parents: type: array items: @@ -101424,7 +101445,7 @@ paths: type: number node_id: type: string - text_matches: *640 + text_matches: *641 required: - sha - node_id @@ -101616,7 +101637,7 @@ paths: - interactions - created - updated - - *641 + - *642 - *17 - *19 - name: advanced_search @@ -101730,11 +101751,11 @@ paths: type: - string - 'null' - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: type: string state_reason: @@ -101748,7 +101769,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 comments: type: integer created_at: @@ -101762,7 +101783,7 @@ paths: - string - 'null' format: date-time - text_matches: *640 + text_matches: *641 pull_request: type: object properties: @@ -101811,7 +101832,7 @@ paths: timeline_url: type: string format: uri - type: *229 + type: *230 performed_via_github_app: anyOf: - type: 'null' @@ -102028,7 +102049,7 @@ paths: enum: - created - updated - - *641 + - *642 - *17 - *19 responses: @@ -102073,7 +102094,7 @@ paths: - 'null' score: type: number - text_matches: *640 + text_matches: *641 required: - id - node_id @@ -102158,7 +102179,7 @@ paths: - forks - help-wanted-issues - updated - - *641 + - *642 - *17 - *19 responses: @@ -102404,7 +102425,7 @@ paths: - admin - pull - push - text_matches: *640 + text_matches: *641 temp_clone_token: type: string allow_merge_commit: @@ -102712,7 +102733,7 @@ paths: - string - 'null' format: uri - text_matches: *640 + text_matches: *641 related: type: - array @@ -102905,7 +102926,7 @@ paths: - followers - repositories - joined - - *641 + - *642 - *17 - *19 responses: @@ -103015,7 +103036,7 @@ paths: type: - boolean - 'null' - text_matches: *640 + text_matches: *641 blog: type: - string @@ -103097,7 +103118,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &644 + - &645 name: team_id description: The unique identifier of the team. in: path @@ -103109,9 +103130,9 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 x-github: githubCloudOnly: false @@ -103138,7 +103159,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *644 + - *645 requestBody: required: true content: @@ -103202,16 +103223,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '201': description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 '422': *15 '403': *27 @@ -103239,7 +103260,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *644 + - *645 responses: '204': description: Response @@ -103268,7 +103289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -103278,9 +103299,9 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 x-github: @@ -103306,7 +103327,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *644 + - *645 - name: role description: Filters members returned by their role in the team. in: query @@ -103357,7 +103378,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -103394,7 +103415,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -103434,7 +103455,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -103471,16 +103492,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 responses: '200': description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-user-is-a-team-maintainer: *645 + response-if-user-is-a-team-maintainer: *646 '404': *6 x-github: githubCloudOnly: false @@ -103513,7 +103534,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 requestBody: required: false @@ -103539,9 +103560,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: *646 + response-if-users-membership-with-team-is-now-pending: *647 '403': description: Forbidden if team synchronization is set up '422': @@ -103575,7 +103596,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -103603,7 +103624,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -103615,7 +103636,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 '404': *6 @@ -103645,15 +103666,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *647 + schema: *648 examples: alternative-response-with-extra-repository-information: value: @@ -103804,9 +103825,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 requestBody: required: false content: @@ -103856,9 +103877,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 responses: '204': description: Response @@ -103883,7 +103904,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -103895,7 +103916,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: *648 + response-if-child-teams-exist: *649 headers: Link: *65 '404': *6 @@ -103928,7 +103949,7 @@ paths: application/json: schema: oneOf: - - &650 + - &651 title: Private User description: Private User type: object @@ -104178,7 +104199,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *649 + - *650 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -104338,7 +104359,7 @@ paths: description: Response content: application/json: - schema: *650 + schema: *651 examples: default: value: @@ -104541,9 +104562,9 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '304': *35 '500': *53 '401': *23 @@ -104682,17 +104703,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -104736,7 +104757,7 @@ paths: type: integer secrets: type: array - items: &651 + items: &652 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -104778,7 +104799,7 @@ paths: - visibility - selected_repositories_url examples: - default: *446 + default: *447 headers: Link: *65 x-github: @@ -104856,7 +104877,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: default: value: @@ -105146,15 +105167,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '304': *35 '500': *53 '401': *23 @@ -105180,7 +105201,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 requestBody: required: false content: @@ -105210,9 +105231,9 @@ paths: description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -105234,7 +105255,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '202': *37 '304': *35 @@ -105263,13 +105284,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '202': description: Response content: application/json: - schema: &652 + schema: &653 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -105322,7 +105343,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &653 + default: &654 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -105354,7 +105375,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *236 + - *237 - name: export_id in: path required: true @@ -105367,9 +105388,9 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: - default: *653 + default: *654 '404': *6 x-github: githubCloudOnly: false @@ -105390,7 +105411,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *236 + - *237 responses: '200': description: Response @@ -105406,9 +105427,9 @@ paths: type: integer machines: type: array - items: *445 + items: *446 examples: - default: *654 + default: *655 '304': *35 '500': *53 '401': *23 @@ -105437,7 +105458,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *236 + - *237 requestBody: required: true content: @@ -105493,11 +105514,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *327 + repository: *328 machine: anyOf: - type: 'null' - - *445 + - *446 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -106294,15 +106315,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '304': *35 '500': *53 '400': *14 @@ -106334,15 +106355,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '500': *53 '401': *23 '403': *27 @@ -106372,9 +106393,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: &665 + default: &666 value: - id: 197 name: hello_docker @@ -106475,7 +106496,7 @@ paths: application/json: schema: type: array - items: &655 + items: &656 title: Email description: Email type: object @@ -106545,9 +106566,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: &667 + default: &668 value: - email: octocat@github.com verified: true @@ -106624,7 +106645,7 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: default: value: @@ -106882,7 +106903,7 @@ paths: application/json: schema: type: array - items: &656 + items: &657 title: GPG Key description: A unique encryption key type: object @@ -107027,7 +107048,7 @@ paths: - subkeys - revoked examples: - default: &683 + default: &684 value: - id: 3 name: Octocat's GPG Key @@ -107112,9 +107133,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: &657 + default: &658 value: id: 3 name: Octocat's GPG Key @@ -107171,7 +107192,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &658 + - &659 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -107183,9 +107204,9 @@ paths: description: Response content: application/json: - schema: *656 + schema: *657 examples: - default: *657 + default: *658 '404': *6 '304': *35 '403': *27 @@ -107208,7 +107229,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *658 + - *659 responses: '204': description: Response @@ -107487,12 +107508,12 @@ paths: application/json: schema: anyOf: - - *221 + - *222 - type: object properties: {} additionalProperties: false examples: - default: *222 + default: *223 '204': description: Response when there are no restrictions x-github: @@ -107516,7 +107537,7 @@ paths: required: true content: application/json: - schema: *516 + schema: *517 examples: default: value: @@ -107527,7 +107548,7 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: default: value: @@ -107608,7 +107629,7 @@ paths: - closed - all default: open - - *232 + - *233 - name: sort description: What to sort results by. in: query @@ -107633,7 +107654,7 @@ paths: type: array items: *81 examples: - default: *233 + default: *234 headers: Link: *65 '404': *6 @@ -107666,7 +107687,7 @@ paths: application/json: schema: type: array - items: &659 + items: &660 title: Key description: Key type: object @@ -107769,9 +107790,9 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: &660 + default: &661 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107804,15 +107825,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *546 + - *547 responses: '200': description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: *660 + default: *661 '404': *6 '304': *35 '403': *27 @@ -107835,7 +107856,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *546 + - *547 responses: '204': description: Response @@ -107868,7 +107889,7 @@ paths: application/json: schema: type: array - items: &661 + items: &662 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -107947,7 +107968,7 @@ paths: - account - plan examples: - default: &662 + default: &663 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -108009,9 +108030,9 @@ paths: application/json: schema: type: array - items: *661 + items: *662 examples: - default: *662 + default: *663 headers: Link: *65 '304': *35 @@ -108051,7 +108072,7 @@ paths: application/json: schema: type: array - items: *238 + items: *239 examples: default: value: @@ -108165,7 +108186,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -108252,7 +108273,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -108324,7 +108345,7 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: default: value: @@ -108586,7 +108607,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -108766,7 +108787,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *241 + - *242 - name: exclude in: query required: false @@ -108779,7 +108800,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -108973,7 +108994,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *241 + - *242 responses: '302': description: Response @@ -108999,7 +109020,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *241 + - *242 responses: '204': description: Response @@ -109028,8 +109049,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *241 - - *663 + - *242 + - *664 responses: '204': description: Response @@ -109053,7 +109074,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *241 + - *242 - *17 - *19 responses: @@ -109065,7 +109086,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 '404': *6 @@ -109144,7 +109165,7 @@ paths: - docker - nuget - container - - *664 + - *665 - *19 - *17 responses: @@ -109154,10 +109175,10 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *665 - '400': *666 + default: *666 + '400': *667 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -109177,16 +109198,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: &684 + default: &685 value: id: 40201 name: octo-name @@ -109299,8 +109320,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 responses: '204': description: Response @@ -109330,8 +109351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 - name: token description: package token schema: @@ -109363,8 +109384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *248 - *249 + - *250 - *19 - *17 - name: state @@ -109384,7 +109405,7 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: default: value: @@ -109433,15 +109454,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -109477,9 +109498,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '204': description: Response @@ -109509,9 +109530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '204': description: Response @@ -109548,9 +109569,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: *667 + default: *668 headers: Link: *65 '304': *35 @@ -109663,7 +109684,7 @@ paths: type: array items: *77 examples: - default: &674 + default: &675 summary: Default response value: - id: 1296269 @@ -109981,9 +110002,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -110021,9 +110042,9 @@ paths: application/json: schema: type: array - items: *518 + items: *519 examples: - default: *668 + default: *669 headers: Link: *65 '304': *35 @@ -110046,7 +110067,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *225 + - *226 responses: '204': description: Response @@ -110069,7 +110090,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *225 + - *226 responses: '204': description: Response @@ -110102,7 +110123,7 @@ paths: application/json: schema: type: array - items: &669 + items: &670 title: Social account description: Social media account type: object @@ -110119,7 +110140,7 @@ paths: - provider - url examples: - default: &670 + default: &671 value: - provider: twitter url: https://twitter.com/github @@ -110182,9 +110203,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: *670 + default: *671 '422': *15 '304': *35 '404': *6 @@ -110272,7 +110293,7 @@ paths: application/json: schema: type: array - items: &671 + items: &672 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -110292,7 +110313,7 @@ paths: - title - created_at examples: - default: &702 + default: &703 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -110357,9 +110378,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: &672 + default: &673 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -110389,7 +110410,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &673 + - &674 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -110401,9 +110422,9 @@ paths: description: Response content: application/json: - schema: *671 + schema: *672 examples: - default: *672 + default: *673 '404': *6 '304': *35 '403': *27 @@ -110426,7 +110447,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *673 + - *674 responses: '204': description: Response @@ -110455,7 +110476,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &703 + - &704 name: sort description: The property to sort the results by. `created` means when the repository was starred. `updated` means when the repository was last pushed @@ -110480,11 +110501,11 @@ paths: type: array items: *77 examples: - default-response: *674 + default-response: *675 application/vnd.github.v3.star+json: schema: type: array - items: &704 + items: &705 title: Starred Repository description: Starred Repository type: object @@ -110640,8 +110661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response if this repository is starred by you @@ -110669,8 +110690,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -110694,8 +110715,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -110730,7 +110751,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 '304': *35 @@ -110767,7 +110788,7 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: default: value: @@ -110853,10 +110874,10 @@ paths: application/json: schema: oneOf: + - *651 - *650 - - *649 examples: - default-response: &678 + default-response: &679 summary: Default response value: login: octocat @@ -110891,7 +110912,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &679 + response-with-git-hub-plan-information: &680 summary: Response with GitHub plan information value: login: octocat @@ -110948,14 +110969,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &676 + - &677 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *264 + - *265 requestBody: required: true description: Details of the draft item to create in the project. @@ -110989,9 +111010,9 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: - draft_issue: *270 + draft_issue: *271 '304': *35 '403': *27 '401': *23 @@ -111014,7 +111035,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *675 + - *676 - *17 responses: '200': @@ -111049,8 +111070,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *676 - - *264 + - *677 + - *265 requestBody: required: true content: @@ -111124,17 +111145,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *677 + schema: *678 examples: table_view: summary: Response for creating a table view - value: *274 + value: *275 board_view: summary: Response for creating a board view with filter - value: *274 + value: *275 roadmap_view: summary: Response for creating a roadmap view - value: *274 + value: *275 '304': *35 '403': *27 '401': *23 @@ -111176,11 +111197,11 @@ paths: application/json: schema: oneOf: + - *651 - *650 - - *649 examples: - default-response: *678 - response-with-git-hub-plan-information: *679 + default-response: *679 + response-with-git-hub-plan-information: *680 '404': *6 x-github: githubCloudOnly: false @@ -111230,8 +111251,8 @@ paths: required: - subject_digests examples: - default: *680 - withPredicateType: *681 + default: *681 + withPredicateType: *682 responses: '200': description: Response @@ -111285,7 +111306,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *682 + default: *683 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111490,7 +111511,7 @@ paths: initiator: type: string examples: - default: *385 + default: *386 '201': description: Response content: @@ -111529,9 +111550,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *665 + default: *666 '403': *27 '401': *23 x-github: @@ -111915,9 +111936,9 @@ paths: application/json: schema: type: array - items: *656 + items: *657 examples: - default: *683 + default: *684 headers: Link: *65 x-github: @@ -112021,7 +112042,7 @@ paths: application/json: schema: *20 examples: - default: *515 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112146,7 +112167,7 @@ paths: - docker - nuget - container - - *664 + - *665 - *69 - *19 - *17 @@ -112157,12 +112178,12 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *665 + default: *666 '403': *27 '401': *23 - '400': *666 + '400': *667 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112182,17 +112203,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *684 + default: *685 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112213,8 +112234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '204': @@ -112247,8 +112268,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 - name: token description: package token @@ -112281,8 +112302,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '200': @@ -112291,7 +112312,7 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: default: value: @@ -112349,16 +112370,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 - *69 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -112393,10 +112414,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *248 - *249 + - *250 - *69 - - *251 + - *252 responses: '204': description: Response @@ -112428,10 +112449,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *248 - *249 + - *250 - *69 - - *251 + - *252 responses: '204': description: Response @@ -112472,9 +112493,9 @@ paths: application/json: schema: type: array - items: *262 + items: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -112496,16 +112517,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *264 + - *265 - *69 responses: '200': description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -112527,7 +112548,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *264 + - *265 - *69 - *17 - *45 @@ -112539,9 +112560,9 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: - default: *685 + default: *686 headers: Link: *65 '304': *35 @@ -112563,7 +112584,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *69 - - *264 + - *265 requestBody: required: true content: @@ -112601,7 +112622,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *686 + items: *687 required: - name - data_type @@ -112617,7 +112638,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *687 + iteration_configuration: *688 required: - name - data_type @@ -112639,20 +112660,20 @@ paths: value: name: Due date data_type: date - single_select_field: *688 - iteration_field: *689 + single_select_field: *689 + iteration_field: *690 responses: '201': description: Response content: application/json: - schema: *267 + schema: *268 examples: - text_field: *690 - number_field: *691 - date_field: *692 - single_select_field: *693 - iteration_field: *694 + text_field: *691 + number_field: *692 + date_field: *693 + single_select_field: *694 + iteration_field: *695 '304': *35 '403': *27 '401': *23 @@ -112673,17 +112694,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *264 - - *695 + - *265 + - *696 - *69 responses: '200': description: Response content: application/json: - schema: *267 + schema: *268 examples: - default: *696 + default: *697 headers: Link: *65 '304': *35 @@ -112706,7 +112727,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *264 + - *265 - *69 - *45 - *46 @@ -112739,9 +112760,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -112763,7 +112784,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *69 - - *264 + - *265 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -112833,22 +112854,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *271 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *271 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *271 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *271 '304': *35 '403': *27 '401': *23 @@ -112868,9 +112889,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *264 + - *265 - *69 - - *273 + - *274 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -112890,9 +112911,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -112913,9 +112934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *264 + - *265 - *69 - - *273 + - *274 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -112988,13 +113009,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *273 + number_field: *273 + date_field: *273 + single_select_field: *273 + iteration_field: *273 '401': *23 '403': *27 '404': *6 @@ -113014,9 +113035,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *264 + - *265 - *69 - - *273 + - *274 responses: '204': description: Response @@ -113038,9 +113059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *264 + - *265 - *69 - - *697 + - *698 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -113066,9 +113087,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -113289,7 +113310,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -113315,7 +113336,7 @@ paths: - *115 - *117 - *116 - - *698 + - *699 - *118 responses: '200': @@ -113446,7 +113467,7 @@ paths: parameters: - *69 - *115 - - *699 + - *700 - *116 responses: '200': @@ -113545,9 +113566,9 @@ paths: - *115 - *117 - *116 - - *700 - - *118 - *701 + - *118 + - *702 responses: '200': description: Response when getting a billing usage summary @@ -113681,9 +113702,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: *670 + default: *671 headers: Link: *65 x-github: @@ -113713,9 +113734,9 @@ paths: application/json: schema: type: array - items: *671 + items: *672 examples: - default: *702 + default: *703 headers: Link: *65 x-github: @@ -113740,7 +113761,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *69 - - *703 + - *704 - *59 - *17 - *19 @@ -113752,11 +113773,11 @@ paths: schema: anyOf: - type: array - items: *704 + items: *705 - type: array items: *77 examples: - default-response: *674 + default-response: *675 headers: Link: *65 x-github: @@ -113787,7 +113808,7 @@ paths: type: array items: *152 examples: - default: *252 + default: *253 headers: Link: *65 x-github: @@ -113916,7 +113937,7 @@ webhooks: type: string enum: - disabled - enterprise: &705 + enterprise: &706 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -113985,7 +114006,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &706 + installation: &707 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -114006,7 +114027,7 @@ webhooks: required: - id - node_id - organization: &707 + organization: &708 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -114079,7 +114100,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &708 + repository: &709 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -115005,10 +115026,10 @@ webhooks: type: string enum: - enabled - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -115084,11 +115105,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: &709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: &710 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -115311,11 +115332,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: *709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: *710 sender: *4 required: - action @@ -115503,11 +115524,11 @@ webhooks: - everyone required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: *709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: *710 sender: *4 required: - action @@ -115591,7 +115612,7 @@ webhooks: type: string enum: - completed - check_run: &711 + check_run: &712 title: CheckRun description: A check performed on the code of a given code change type: object @@ -115701,7 +115722,7 @@ webhooks: - examples: - neutral - deployment: *710 + deployment: *711 details_url: type: string examples: @@ -115799,10 +115820,10 @@ webhooks: - output - app - pull_requests - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -116193,11 +116214,11 @@ webhooks: type: string enum: - created - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -116591,11 +116612,11 @@ webhooks: type: string enum: - requested_action - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 requested_action: description: The action requested by the user. type: object @@ -116998,11 +117019,11 @@ webhooks: type: string enum: - rerequested - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -117987,10 +118008,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -118694,10 +118715,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -119395,10 +119416,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -119567,7 +119588,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119719,20 +119740,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &712 + commit_oid: &713 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *705 - installation: *706 - organization: *707 - ref: &713 + enterprise: *706 + installation: *707 + organization: *708 + ref: &714 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -119899,7 +119920,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -120140,12 +120161,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -120243,7 +120264,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120428,12 +120449,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -120602,7 +120623,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -120779,12 +120800,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -120885,7 +120906,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -121074,9 +121095,9 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -121084,7 +121105,7 @@ webhooks: type: - string - 'null' - repository: *708 + repository: *709 sender: *4 required: - action @@ -121183,7 +121204,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -121330,12 +121351,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -121504,7 +121525,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -121656,10 +121677,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -121919,10 +121940,10 @@ webhooks: - updated_at - author_association - body - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -122003,18 +122024,18 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *707 - pusher_type: &714 + organization: *708 + pusher_type: &715 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &715 + ref: &716 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -122024,7 +122045,7 @@ webhooks: enum: - tag - branch - repository: *708 + repository: *709 sender: *4 required: - ref @@ -122106,10 +122127,10 @@ webhooks: type: string enum: - created - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -122194,9 +122215,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -122273,10 +122294,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -122353,10 +122374,10 @@ webhooks: type: string enum: - updated - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -122433,19 +122454,19 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - repository: *708 - organization: *707 + enterprise: *706 + installation: *707 + repository: *709 + organization: *708 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *279 + items: *280 old_property_values: type: array description: The old custom property values for the repository. - items: *279 + items: *280 required: - action - repository @@ -122521,18 +122542,18 @@ webhooks: title: delete event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - pusher_type: *714 - ref: *715 + enterprise: *706 + installation: *707 + organization: *708 + pusher_type: *715 + ref: *716 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *708 + repository: *709 sender: *4 required: - ref @@ -122612,11 +122633,11 @@ webhooks: type: string enum: - assignees_changed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122696,11 +122717,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122781,11 +122802,11 @@ webhooks: type: string enum: - auto_reopened - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122866,11 +122887,11 @@ webhooks: type: string enum: - created - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122949,11 +122970,11 @@ webhooks: type: string enum: - dismissed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123032,11 +123053,11 @@ webhooks: type: string enum: - fixed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123116,11 +123137,11 @@ webhooks: type: string enum: - reintroduced - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123199,11 +123220,11 @@ webhooks: type: string enum: - reopened - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -123280,9 +123301,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - key: &716 + enterprise: *706 + installation: *707 + key: &717 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -123320,8 +123341,8 @@ webhooks: - verified - created_at - read_only - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -123398,11 +123419,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - key: *716 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + key: *717 + organization: *708 + repository: *709 sender: *4 required: - action @@ -123969,12 +123990,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: &720 + workflow: &721 title: Workflow type: - object @@ -124725,13 +124746,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *480 + - *481 pull_requests: type: array - items: *564 - repository: *708 - organization: *707 - installation: *706 + items: *565 + repository: *709 + organization: *708 + installation: *707 sender: *4 responses: '200': @@ -124802,7 +124823,7 @@ webhooks: type: string enum: - approved - approver: &717 + approver: &718 type: object properties: avatar_url: @@ -124845,11 +124866,11 @@ webhooks: type: string comment: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - reviewers: &718 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + reviewers: &719 type: array items: type: object @@ -124930,7 +124951,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &719 + workflow_job_run: &720 type: object properties: conclusion: @@ -125676,18 +125697,18 @@ webhooks: type: string enum: - rejected - approver: *717 + approver: *718 comment: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - reviewers: *718 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + reviewers: *719 sender: *4 since: type: string - workflow_job_run: *719 + workflow_job_run: *720 workflow_job_runs: type: array items: @@ -126404,13 +126425,13 @@ webhooks: type: string enum: - requested - enterprise: *705 + enterprise: *706 environment: type: string - installation: *706 - organization: *707 - repository: *708 - requestor: &725 + installation: *707 + organization: *708 + repository: *709 + requestor: &726 title: User type: - object @@ -128343,12 +128364,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Deployment Workflow Run type: @@ -129039,7 +129060,7 @@ webhooks: type: string enum: - answered - answer: &723 + answer: &724 type: object properties: author_association: @@ -129199,11 +129220,11 @@ webhooks: - created_at - updated_at - body - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129330,11 +129351,11 @@ webhooks: - from required: - category - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129417,11 +129438,11 @@ webhooks: type: string enum: - closed - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129503,7 +129524,7 @@ webhooks: type: string enum: - created - comment: &722 + comment: &723 type: object properties: author_association: @@ -129663,11 +129684,11 @@ webhooks: - updated_at - body - reactions - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129750,12 +129771,12 @@ webhooks: type: string enum: - deleted - comment: *722 - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + comment: *723 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129850,12 +129871,12 @@ webhooks: - from required: - body - comment: *722 - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + comment: *723 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129939,11 +129960,11 @@ webhooks: type: string enum: - created - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130025,11 +130046,11 @@ webhooks: type: string enum: - deleted - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130129,11 +130150,11 @@ webhooks: type: string required: - from - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130215,10 +130236,10 @@ webhooks: type: string enum: - labeled - discussion: *721 - enterprise: *705 - installation: *706 - label: &724 + discussion: *722 + enterprise: *706 + installation: *707 + label: &725 title: Label type: object properties: @@ -130251,8 +130272,8 @@ webhooks: - color - default - description - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130335,11 +130356,11 @@ webhooks: type: string enum: - locked - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130421,11 +130442,11 @@ webhooks: type: string enum: - pinned - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130507,11 +130528,11 @@ webhooks: type: string enum: - reopened - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130596,16 +130617,16 @@ webhooks: changes: type: object properties: - new_discussion: *721 - new_repository: *708 + new_discussion: *722 + new_repository: *709 required: - new_discussion - new_repository - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130688,10 +130709,10 @@ webhooks: type: string enum: - unanswered - discussion: *721 - old_answer: *723 - organization: *707 - repository: *708 + discussion: *722 + old_answer: *724 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130773,12 +130794,12 @@ webhooks: type: string enum: - unlabeled - discussion: *721 - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130861,11 +130882,11 @@ webhooks: type: string enum: - unlocked - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130947,11 +130968,11 @@ webhooks: type: string enum: - unpinned - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -131024,7 +131045,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *705 + enterprise: *706 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -131702,9 +131723,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - forkee @@ -131850,9 +131871,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pages: description: The pages that were updated. type: array @@ -131890,7 +131911,7 @@ webhooks: - action - sha - html_url - repository: *708 + repository: *709 sender: *4 required: - pages @@ -131966,10 +131987,10 @@ webhooks: type: string enum: - created - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: &726 + organization: *708 + repositories: &727 description: An array of repository objects that the installation can access. type: array @@ -131995,8 +132016,8 @@ webhooks: - name - full_name - private - repository: *708 - requester: *725 + repository: *709 + requester: *726 sender: *4 required: - action @@ -132071,11 +132092,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -132152,11 +132173,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -132233,10 +132254,10 @@ webhooks: type: string enum: - added - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories_added: &727 + organization: *708 + repositories_added: &728 description: An array of repository objects, which were added to the installation. type: array @@ -132282,15 +132303,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *708 - repository_selection: &728 + repository: *709 + repository_selection: &729 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *725 + requester: *726 sender: *4 required: - action @@ -132369,10 +132390,10 @@ webhooks: type: string enum: - removed - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories_added: *727 + organization: *708 + repositories_added: *728 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -132399,9 +132420,9 @@ webhooks: - name - full_name - private - repository: *708 - repository_selection: *728 - requester: *725 + repository: *709 + repository_selection: *729 + requester: *726 sender: *4 required: - action @@ -132480,11 +132501,11 @@ webhooks: type: string enum: - suspend - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -132666,10 +132687,10 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 target_type: type: string @@ -132748,11 +132769,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -132918,7 +132939,7 @@ webhooks: pin: anyOf: - type: 'null' - - *543 + - *544 user: title: User type: @@ -133004,8 +133025,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133817,8 +133838,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133835,7 +133856,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -134179,8 +134200,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -134260,7 +134281,7 @@ webhooks: type: string enum: - deleted - comment: &729 + comment: &730 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -134417,7 +134438,7 @@ webhooks: pin: anyOf: - type: 'null' - - *543 + - *544 required: - url - html_url @@ -134431,8 +134452,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -135240,8 +135261,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -135258,7 +135279,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -135604,8 +135625,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -135685,7 +135706,7 @@ webhooks: type: string enum: - edited - changes: &753 + changes: &754 description: The changes to the comment. type: object properties: @@ -135697,9 +135718,9 @@ webhooks: type: string required: - from - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136510,8 +136531,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136528,7 +136549,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -136872,8 +136893,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -136954,9 +136975,9 @@ webhooks: type: string enum: - pinned - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -137769,8 +137790,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137787,7 +137808,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -138133,8 +138154,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -138214,9 +138235,9 @@ webhooks: type: string enum: - unpinned - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139029,8 +139050,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139047,7 +139068,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -139393,8 +139414,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139483,9 +139504,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139574,9 +139595,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139664,9 +139685,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139755,9 +139776,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139837,10 +139858,10 @@ webhooks: type: string enum: - assigned - assignee: *725 - enterprise: *705 - installation: *706 - issue: &732 + assignee: *726 + enterprise: *706 + installation: *707 + issue: &733 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -140651,11 +140672,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140672,7 +140693,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -140775,8 +140796,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -140856,8 +140877,8 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -141673,11 +141694,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141694,7 +141715,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -141940,8 +141961,8 @@ webhooks: required: - state - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -142020,8 +142041,8 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142828,11 +142849,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142849,7 +142870,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -142951,8 +142972,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -143031,8 +143052,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143862,11 +143883,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143883,7 +143904,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -143964,7 +143985,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &730 + milestone: &731 title: Milestone description: A collection of related issues and pull requests. type: object @@ -144107,8 +144128,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -144207,8 +144228,8 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145019,11 +145040,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145037,7 +145058,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -145143,9 +145164,9 @@ webhooks: - active_lock_reason - body - reactions - label: *724 - organization: *707 - repository: *708 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -145225,8 +145246,8 @@ webhooks: type: string enum: - labeled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146036,11 +146057,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146054,7 +146075,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -146160,9 +146181,9 @@ webhooks: - active_lock_reason - body - reactions - label: *724 - organization: *707 - repository: *708 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -146242,8 +146263,8 @@ webhooks: type: string enum: - locked - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147078,11 +147099,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147096,7 +147117,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -147179,8 +147200,8 @@ webhooks: format: uri user_view_type: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -147259,8 +147280,8 @@ webhooks: type: string enum: - milestoned - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148089,11 +148110,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148110,7 +148131,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -148190,9 +148211,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *730 - organization: *707 - repository: *708 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -149079,11 +149100,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149183,7 +149204,7 @@ webhooks: required: - login - id - type: *229 + type: *230 required: - id - number @@ -149675,8 +149696,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150483,11 +150504,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150504,7 +150525,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -150610,8 +150631,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -150691,9 +150712,9 @@ webhooks: type: string enum: - pinned - enterprise: *705 - installation: *706 - issue: &731 + enterprise: *706 + installation: *707 + issue: &732 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -151498,11 +151519,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151519,7 +151540,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -151621,8 +151642,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -151701,8 +151722,8 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152535,11 +152556,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152636,9 +152657,9 @@ webhooks: format: uri user_view_type: type: string - type: *229 - organization: *707 - repository: *708 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -153526,11 +153547,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153547,7 +153568,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -154140,11 +154161,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *705 - installation: *706 - issue: *731 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *732 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154224,12 +154245,12 @@ webhooks: type: string enum: - typed - enterprise: *705 - installation: *706 - issue: *732 - type: *229 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154310,7 +154331,7 @@ webhooks: type: string enum: - unassigned - assignee: &756 + assignee: &757 title: User type: - object @@ -154382,11 +154403,11 @@ webhooks: required: - login - id - enterprise: *705 - installation: *706 - issue: *732 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154465,12 +154486,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *705 - installation: *706 - issue: *732 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154550,8 +154571,8 @@ webhooks: type: string enum: - unlocked - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155384,11 +155405,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155405,7 +155426,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -155485,8 +155506,8 @@ webhooks: format: uri user_view_type: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155566,11 +155587,11 @@ webhooks: type: string enum: - unpinned - enterprise: *705 - installation: *706 - issue: *731 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *732 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155649,12 +155670,12 @@ webhooks: type: string enum: - untyped - enterprise: *705 - installation: *706 - issue: *732 - type: *229 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155734,11 +155755,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155816,11 +155837,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155930,11 +155951,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156016,9 +156037,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: &733 + enterprise: *706 + installation: *707 + marketplace_purchase: &734 title: Marketplace Purchase type: object required: @@ -156106,8 +156127,8 @@ webhooks: type: integer unit_count: type: integer - organization: *707 - previous_marketplace_purchase: &734 + organization: *708 + previous_marketplace_purchase: &735 title: Marketplace Purchase type: object properties: @@ -156191,7 +156212,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -156271,10 +156292,10 @@ webhooks: - changed effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -156362,7 +156383,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -156444,10 +156465,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -156533,7 +156554,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -156614,8 +156635,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 marketplace_purchase: title: Marketplace Purchase type: object @@ -156701,9 +156722,9 @@ webhooks: type: integer unit_count: type: integer - organization: *707 - previous_marketplace_purchase: *734 - repository: *708 + organization: *708 + previous_marketplace_purchase: *735 + repository: *709 sender: *4 required: - action @@ -156783,12 +156804,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 - previous_marketplace_purchase: *734 - repository: *708 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 + previous_marketplace_purchase: *735 + repository: *709 sender: *4 required: - action @@ -156890,11 +156911,11 @@ webhooks: type: string required: - to - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156996,11 +157017,11 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157079,11 +157100,11 @@ webhooks: type: string enum: - removed - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157161,11 +157182,11 @@ webhooks: type: string enum: - added - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 scope: description: The scope of the membership. Currently, can only be `team`. @@ -157243,7 +157264,7 @@ webhooks: required: - login - id - team: &735 + team: &736 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -157473,11 +157494,11 @@ webhooks: type: string enum: - removed - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 scope: description: The scope of the membership. Currently, can only be `team`. @@ -157556,7 +157577,7 @@ webhooks: required: - login - id - team: *735 + team: *736 required: - action - scope @@ -157638,8 +157659,8 @@ webhooks: type: string enum: - checks_requested - installation: *706 - merge_group: &736 + installation: *707 + merge_group: &737 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -157658,15 +157679,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *405 + head_commit: *406 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157752,10 +157773,10 @@ webhooks: - merged - invalidated - dequeued - installation: *706 - merge_group: *736 - organization: *707 - repository: *708 + installation: *707 + merge_group: *737 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157828,7 +157849,7 @@ webhooks: type: string enum: - deleted - enterprise: *705 + enterprise: *706 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -157937,12 +157958,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *706 - organization: *707 + installation: *707 + organization: *708 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -158022,11 +158043,11 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158105,9 +158126,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - milestone: &737 + enterprise: *706 + installation: *707 + milestone: &738 title: Milestone description: A collection of related issues and pull requests. type: object @@ -158249,8 +158270,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158329,11 +158350,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158443,11 +158464,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158527,11 +158548,11 @@ webhooks: type: string enum: - opened - enterprise: *705 - installation: *706 - milestone: *737 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *738 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158610,11 +158631,11 @@ webhooks: type: string enum: - blocked - blocked_user: *725 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + blocked_user: *726 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158693,11 +158714,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *725 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + blocked_user: *726 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158776,9 +158797,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - membership: &738 + enterprise: *706 + installation: *707 + membership: &739 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -158888,8 +158909,8 @@ webhooks: - role - organization_url - user - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158967,11 +158988,11 @@ webhooks: type: string enum: - member_added - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159050,8 +159071,8 @@ webhooks: type: string enum: - member_invited - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -159173,10 +159194,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 - user: *725 + user: *726 required: - action - invitation @@ -159254,11 +159275,11 @@ webhooks: type: string enum: - member_removed - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159345,11 +159366,11 @@ webhooks: properties: from: type: string - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159426,9 +159447,9 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 package: description: Information about the package. type: object @@ -159951,7 +159972,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &739 + items: &740 title: Ruby Gems metadata type: object properties: @@ -160048,7 +160069,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -160124,9 +160145,9 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 package: description: Information about the package. type: object @@ -160488,7 +160509,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *739 + items: *740 source_url: type: string format: uri @@ -160559,7 +160580,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -160739,12 +160760,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *705 + enterprise: *706 id: type: integer - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - id @@ -160821,7 +160842,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &740 + personal_access_token_request: &741 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -160971,10 +160992,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *705 - organization: *707 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -161051,11 +161072,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *740 - enterprise: *705 - organization: *707 + personal_access_token_request: *741 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -161131,11 +161152,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *740 - enterprise: *705 - organization: *707 + personal_access_token_request: *741 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -161210,11 +161231,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *740 - organization: *707 - enterprise: *705 + personal_access_token_request: *741 + organization: *708 + enterprise: *706 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -161319,7 +161340,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *741 + last_response: *742 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -161351,8 +161372,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 zen: description: Random string of GitHub zen. @@ -161597,10 +161618,10 @@ webhooks: - from required: - note - enterprise: *705 - installation: *706 - organization: *707 - project_card: &742 + enterprise: *706 + installation: *707 + organization: *708 + project_card: &743 title: Project Card type: object properties: @@ -161723,7 +161744,7 @@ webhooks: - creator - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -161804,11 +161825,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project_card: *742 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_card: *743 + repository: *709 sender: *4 required: - action @@ -161888,9 +161909,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 project_card: title: Project Card type: object @@ -162020,7 +162041,7 @@ webhooks: repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -162114,11 +162135,11 @@ webhooks: - from required: - note - enterprise: *705 - installation: *706 - organization: *707 - project_card: *742 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_card: *743 + repository: *709 sender: *4 required: - action @@ -162212,9 +162233,9 @@ webhooks: - from required: - column_id - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 project_card: allOf: - title: Project Card @@ -162411,7 +162432,7 @@ webhooks: type: string required: - after_id - repository: *708 + repository: *709 sender: *4 required: - action @@ -162491,10 +162512,10 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - organization: *707 - project: &744 + enterprise: *706 + installation: *707 + organization: *708 + project: &745 title: Project type: object properties: @@ -162621,7 +162642,7 @@ webhooks: - creator - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -162701,10 +162722,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project_column: &743 + enterprise: *706 + installation: *707 + organization: *708 + project_column: &744 title: Project Column type: object properties: @@ -162744,7 +162765,7 @@ webhooks: - name - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -162823,14 +162844,14 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -162919,11 +162940,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 + repository: *709 sender: *4 required: - action @@ -163003,11 +163024,11 @@ webhooks: type: string enum: - moved - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 + repository: *709 sender: *4 required: - action @@ -163087,11 +163108,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -163171,14 +163192,14 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - project: *744 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -163279,11 +163300,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -163362,11 +163383,11 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -163447,9 +163468,9 @@ webhooks: type: string enum: - closed - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163530,9 +163551,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163613,9 +163634,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163736,9 +163757,9 @@ webhooks: type: string to: type: string - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163821,7 +163842,7 @@ webhooks: type: string enum: - archived - changes: &748 + changes: &749 type: object properties: archived_at: @@ -163837,9 +163858,9 @@ webhooks: - string - 'null' format: date-time - installation: *706 - organization: *707 - projects_v2_item: &745 + installation: *707 + organization: *708 + projects_v2_item: &746 title: Projects v2 Item description: An item belonging to a project type: object @@ -163857,7 +163878,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *268 + content_type: *269 creator: *4 created_at: type: string @@ -163979,9 +164000,9 @@ webhooks: - 'null' to: type: string - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164063,9 +164084,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164146,9 +164167,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164253,7 +164274,7 @@ webhooks: oneOf: - type: string - type: integer - - &746 + - &747 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -164277,7 +164298,7 @@ webhooks: required: - id - name - - &747 + - &748 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -164317,8 +164338,8 @@ webhooks: oneOf: - type: string - type: integer - - *746 - *747 + - *748 type: - 'null' - string @@ -164341,9 +164362,9 @@ webhooks: - 'null' required: - body - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164440,9 +164461,9 @@ webhooks: type: - string - 'null' - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164525,10 +164546,10 @@ webhooks: type: string enum: - restored - changes: *748 - installation: *706 - organization: *707 - projects_v2_item: *745 + changes: *749 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164610,9 +164631,9 @@ webhooks: type: string enum: - reopened - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -164693,9 +164714,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -164776,9 +164797,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -164924,9 +164945,9 @@ webhooks: - string - 'null' format: date - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -164997,10 +165018,10 @@ webhooks: title: public event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - repository @@ -165077,13 +165098,13 @@ webhooks: type: string enum: - assigned - assignee: *725 - enterprise: *705 - installation: *706 - number: &750 + assignee: *726 + enterprise: *706 + installation: *707 + number: &751 description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -167454,7 +167475,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -167536,11 +167557,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -169904,7 +169925,7 @@ webhooks: - draft reason: type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -169986,11 +170007,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -172354,7 +172375,7 @@ webhooks: - draft reason: type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -172436,13 +172457,13 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: &751 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: &752 allOf: - - *564 + - *565 - type: object properties: allow_auto_merge: @@ -172504,7 +172525,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *708 + repository: *709 sender: *4 required: - action @@ -172585,12 +172606,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -172670,11 +172691,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *705 - milestone: *265 - number: *750 - organization: *707 - pull_request: &752 + enterprise: *706 + milestone: *266 + number: *751 + organization: *708 + pull_request: &753 title: Pull Request type: object properties: @@ -175023,7 +175044,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -175102,11 +175123,11 @@ webhooks: type: string enum: - dequeued - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -177474,7 +177495,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *708 + repository: *709 sender: *4 required: - action @@ -177598,12 +177619,12 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -177683,11 +177704,11 @@ webhooks: type: string enum: - enqueued - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -180040,7 +180061,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -180120,11 +180141,11 @@ webhooks: type: string enum: - labeled - enterprise: *705 - installation: *706 - label: *724 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + label: *725 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -182494,7 +182515,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -182575,10 +182596,10 @@ webhooks: type: string enum: - locked - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -184946,7 +184967,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -185026,12 +185047,12 @@ webhooks: type: string enum: - milestoned - enterprise: *705 - milestone: *265 - number: *750 - organization: *707 - pull_request: *752 - repository: *708 + enterprise: *706 + milestone: *266 + number: *751 + organization: *708 + pull_request: *753 + repository: *709 sender: *4 required: - action @@ -185110,12 +185131,12 @@ webhooks: type: string enum: - opened - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -185196,12 +185217,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -185281,12 +185302,12 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -185661,9 +185682,9 @@ webhooks: - start_side - side - reactions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -187915,7 +187936,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -187995,7 +188016,7 @@ webhooks: type: string enum: - deleted - comment: &754 + comment: &755 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -188288,9 +188309,9 @@ webhooks: - start_side - side - reactions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -190530,7 +190551,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -190610,11 +190631,11 @@ webhooks: type: string enum: - edited - changes: *753 - comment: *754 - enterprise: *705 - installation: *706 - organization: *707 + changes: *754 + comment: *755 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -192857,7 +192878,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -192938,9 +192959,9 @@ webhooks: type: string enum: - dismissed - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -195195,7 +195216,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 review: description: The review that was affected. type: object @@ -195446,9 +195467,9 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -197562,8 +197583,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 - review: &755 + repository: *709 + review: &756 description: The review that was affected. type: object properties: @@ -197801,12 +197822,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -200175,7 +200196,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_reviewer: title: User type: @@ -200261,12 +200282,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -202642,7 +202663,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_team: title: Team description: Groups of organization members that gives permissions @@ -202837,12 +202858,12 @@ webhooks: type: string enum: - review_requested - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -205213,7 +205234,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_reviewer: title: User type: @@ -205300,12 +205321,12 @@ webhooks: type: string enum: - review_requested - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -207667,7 +207688,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_team: title: Team description: Groups of organization members that gives permissions @@ -207851,9 +207872,9 @@ webhooks: type: string enum: - submitted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -210111,8 +210132,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 - review: *755 + repository: *709 + review: *756 sender: *4 required: - action @@ -210192,9 +210213,9 @@ webhooks: type: string enum: - resolved - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -212347,7 +212368,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 sender: *4 thread: type: object @@ -212744,9 +212765,9 @@ webhooks: type: string enum: - unresolved - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -214882,7 +214903,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 sender: *4 thread: type: object @@ -215281,10 +215302,10 @@ webhooks: type: string before: type: string - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -217641,7 +217662,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -217723,11 +217744,11 @@ webhooks: type: string enum: - unassigned - assignee: *756 - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + assignee: *757 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -220099,7 +220120,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -220178,11 +220199,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *705 - installation: *706 - label: *724 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + label: *725 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -222543,7 +222564,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -222624,10 +222645,10 @@ webhooks: type: string enum: - unlocked - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -224978,7 +224999,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -225181,7 +225202,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *705 + enterprise: *706 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -225276,8 +225297,8 @@ webhooks: - url - author - committer - installation: *706 - organization: *707 + installation: *707 + organization: *708 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -225876,9 +225897,9 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 registry_package: type: object properties: @@ -226355,7 +226376,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *739 + items: *740 summary: type: string tag_name: @@ -226411,7 +226432,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -226489,9 +226510,9 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 registry_package: type: object properties: @@ -226803,7 +226824,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *739 + items: *740 summary: type: string tag_name: @@ -226853,7 +226874,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -226930,10 +226951,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - release: &757 + enterprise: *706 + installation: *707 + organization: *708 + release: &758 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -227264,7 +227285,7 @@ webhooks: - updated_at - zipball_url - body - repository: *708 + repository: *709 sender: *4 required: - action @@ -227341,11 +227362,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -227462,11 +227483,11 @@ webhooks: type: boolean required: - to - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -227544,9 +227565,9 @@ webhooks: type: string enum: - prereleased - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -227882,7 +227903,7 @@ webhooks: - string - 'null' format: uri - repository: *708 + repository: *709 sender: *4 required: - action @@ -227958,10 +227979,10 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - release: &758 + enterprise: *706 + installation: *707 + organization: *708 + release: &759 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -228294,7 +228315,7 @@ webhooks: - string - 'null' format: uri - repository: *708 + repository: *709 sender: *4 required: - action @@ -228370,11 +228391,11 @@ webhooks: type: string enum: - released - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -228450,11 +228471,11 @@ webhooks: type: string enum: - unpublished - enterprise: *705 - installation: *706 - organization: *707 - release: *758 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *759 + repository: *709 sender: *4 required: - action @@ -228530,11 +228551,11 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_advisory: *628 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_advisory: *629 sender: *4 required: - action @@ -228610,11 +228631,11 @@ webhooks: type: string enum: - reported - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_advisory: *628 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_advisory: *629 sender: *4 required: - action @@ -228690,10 +228711,10 @@ webhooks: type: string enum: - archived - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228770,10 +228791,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228851,10 +228872,10 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228939,10 +228960,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229057,10 +229078,10 @@ webhooks: - 'null' items: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229132,10 +229153,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 status: type: string @@ -229216,10 +229237,10 @@ webhooks: type: string enum: - privatized - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229296,10 +229317,10 @@ webhooks: type: string enum: - publicized - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229393,10 +229414,10 @@ webhooks: - name required: - repository - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229476,11 +229497,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 sender: *4 required: - action @@ -229558,11 +229579,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 sender: *4 required: - action @@ -229640,11 +229661,11 @@ webhooks: type: string enum: - edited - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 changes: type: object properties: @@ -229663,16 +229684,16 @@ webhooks: properties: added: type: array - items: *281 + items: *282 deleted: type: array - items: *281 + items: *282 updated: type: array items: type: object properties: - condition: *281 + condition: *282 changes: type: object properties: @@ -229705,16 +229726,16 @@ webhooks: properties: added: type: array - items: *584 + items: *585 deleted: type: array - items: *584 + items: *585 updated: type: array items: type: object properties: - rule: *584 + rule: *585 changes: type: object properties: @@ -229951,10 +229972,10 @@ webhooks: - from required: - owner - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230032,10 +230053,10 @@ webhooks: type: string enum: - unarchived - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230113,7 +230134,7 @@ webhooks: type: string enum: - create - alert: &759 + alert: &760 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -230238,10 +230259,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230451,10 +230472,10 @@ webhooks: type: string enum: - dismissed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230532,11 +230553,11 @@ webhooks: type: string enum: - reopen - alert: *759 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *760 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230738,10 +230759,10 @@ webhooks: enum: - fixed - open - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230819,7 +230840,7 @@ webhooks: type: string enum: - assigned - alert: &760 + alert: &761 type: object properties: number: *170 @@ -230948,10 +230969,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231029,11 +231050,11 @@ webhooks: type: string enum: - created - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231114,11 +231135,11 @@ webhooks: type: string enum: - created - alert: *760 - installation: *706 - location: *761 - organization: *707 - repository: *708 + alert: *761 + installation: *707 + location: *762 + organization: *708 + repository: *709 sender: *4 required: - location @@ -231356,11 +231377,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231438,11 +231459,11 @@ webhooks: type: string enum: - reopened - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231520,11 +231541,11 @@ webhooks: type: string enum: - resolved - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231602,12 +231623,12 @@ webhooks: type: string enum: - unassigned - alert: *760 + alert: *761 assignee: *4 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231685,11 +231706,11 @@ webhooks: type: string enum: - validated - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231819,10 +231840,10 @@ webhooks: - organization - enterprise - - repository: *708 - enterprise: *705 - installation: *706 - organization: *707 + repository: *709 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -231900,11 +231921,11 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - security_advisory: &762 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + security_advisory: &763 description: The details of the security advisory, including summary, description, and severity. type: object @@ -232090,11 +232111,11 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - security_advisory: *762 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + security_advisory: *763 sender: *4 required: - action @@ -232167,10 +232188,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -232356,11 +232377,11 @@ webhooks: from: type: object properties: - security_and_analysis: *280 - enterprise: *705 - installation: *706 - organization: *707 - repository: *327 + security_and_analysis: *281 + enterprise: *706 + installation: *707 + organization: *708 + repository: *328 sender: *4 required: - changes @@ -232438,12 +232459,12 @@ webhooks: type: string enum: - cancelled - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: &763 + sponsorship: &764 type: object properties: created_at: @@ -232748,12 +232769,12 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - sponsorship @@ -232841,12 +232862,12 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -232923,17 +232944,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &764 + effective_date: &765 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - sponsorship @@ -233007,7 +233028,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &765 + changes: &766 type: object properties: tier: @@ -233051,13 +233072,13 @@ webhooks: - from required: - tier - effective_date: *764 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + effective_date: *765 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -233134,13 +233155,13 @@ webhooks: type: string enum: - tier_changed - changes: *765 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + changes: *766 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -233214,10 +233235,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -233301,10 +233322,10 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -233738,15 +233759,15 @@ webhooks: type: - string - 'null' - enterprise: *705 + enterprise: *706 id: description: The unique identifier of the status. type: integer - installation: *706 + installation: *707 name: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 sha: description: The Commit SHA. @@ -233862,9 +233883,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -233954,9 +233975,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -234046,9 +234067,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -234138,9 +234159,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -234217,12 +234238,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - team: &766 + team: &767 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -234452,9 +234473,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -234924,7 +234945,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -235000,9 +235021,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -235472,7 +235493,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -235549,9 +235570,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -236021,7 +236042,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -236165,9 +236186,9 @@ webhooks: - from required: - permissions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -236637,7 +236658,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - changes @@ -236715,9 +236736,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -237187,7 +237208,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -237263,10 +237284,10 @@ webhooks: type: string enum: - started - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -237339,17 +237360,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *705 + enterprise: *706 inputs: type: - object - 'null' additionalProperties: true - installation: *706 - organization: *707 + installation: *707 + organization: *708 ref: type: string - repository: *708 + repository: *709 sender: *4 workflow: type: string @@ -237431,10 +237452,10 @@ webhooks: type: string enum: - completed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: allOf: @@ -237690,7 +237711,7 @@ webhooks: type: string required: - conclusion - deployment: *480 + deployment: *481 required: - action - repository @@ -237769,10 +237790,10 @@ webhooks: type: string enum: - in_progress - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: allOf: @@ -238054,7 +238075,7 @@ webhooks: required: - status - steps - deployment: *480 + deployment: *481 required: - action - repository @@ -238133,10 +238154,10 @@ webhooks: type: string enum: - queued - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: type: object @@ -238282,7 +238303,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *480 + deployment: *481 required: - action - repository @@ -238361,10 +238382,10 @@ webhooks: type: string enum: - waiting - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: type: object @@ -238511,7 +238532,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *480 + deployment: *481 required: - action - repository @@ -238591,12 +238612,12 @@ webhooks: type: string enum: - completed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object @@ -239615,12 +239636,12 @@ webhooks: type: string enum: - in_progress - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object @@ -240624,12 +240645,12 @@ webhooks: type: string enum: - requested - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index ac4335174f..2f1e91ffbf 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -27904,6 +27904,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -28246,6 +28254,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -129138,6 +129155,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -129505,6 +129530,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -373875,6 +373909,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -374225,6 +374267,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -375685,6 +375736,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -376974,6 +377034,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -647511,7 +647580,7 @@ "/search/code": { "get": { "summary": "Search code", - "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", + "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\n> [!NOTE]\n> `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", "tags": [ "search" ], @@ -903259,6 +903328,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -906204,6 +906282,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -909149,6 +909236,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -912094,6 +912190,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -915039,6 +915144,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -917984,6 +918098,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -920929,6 +921052,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", @@ -923874,6 +924006,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss_severities": { "type": [ "object", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index a39d850bf1..4d93f2355e 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -876,7 +876,7 @@ paths: - subscriptions_url - type - url - type: &313 + type: &314 type: string description: The type of credit the user is receiving. enum: @@ -1041,7 +1041,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &630 + - &631 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4141,7 +4141,7 @@ paths: schema: type: integer default: 30 - - &203 + - &204 name: cursor description: 'Used for pagination: the starting delivery from which the page of deliveries is fetched. Refer to the `link` header for the next and previous @@ -4150,7 +4150,7 @@ paths: required: false schema: type: string - - &204 + - &205 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4170,7 +4170,7 @@ paths: application/json: schema: type: array - items: &205 + items: &206 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4266,7 +4266,7 @@ paths: - installation_id - repository_id examples: - default: &206 + default: &207 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4401,7 +4401,7 @@ paths: description: Response content: application/json: - schema: &207 + schema: &208 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4536,7 +4536,7 @@ paths: - request - response examples: - default: &208 + default: &209 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -12006,6 +12006,15 @@ paths: parameters: - *38 - &189 + name: classification + in: query + description: |- + A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned. + + Can be: `malware`, `general` + schema: + type: string + - &190 name: state in: query description: |- @@ -12014,7 +12023,7 @@ paths: Can be: `auto_dismissed`, `dismissed`, `fixed`, `open` schema: type: string - - &190 + - &191 name: severity in: query description: |- @@ -12023,7 +12032,7 @@ paths: Can be: `low`, `medium`, `high`, `critical` schema: type: string - - &191 + - &192 name: ecosystem in: query description: |- @@ -12032,14 +12041,14 @@ paths: Can be: `composer`, `go`, `maven`, `npm`, `nuget`, `pip`, `pub`, `rubygems`, `rust` schema: type: string - - &192 + - &193 name: package in: query description: A comma-separated list of package names. If specified, only alerts for these packages will be returned. schema: type: string - - &193 + - &194 name: epss_percentage in: query description: |- @@ -12051,7 +12060,7 @@ paths: Filters the list of alerts based on EPSS percentages. If specified, only alerts with the provided EPSS percentages will be returned. schema: type: string - - &470 + - &471 name: has in: query description: |- @@ -12065,7 +12074,7 @@ paths: type: string enum: - patch - - &194 + - &195 name: assignee in: query description: |- @@ -12074,7 +12083,7 @@ paths: Use `*` to list alerts with at least one assignee or `none` to list alerts with no assignees. schema: type: string - - &195 + - &196 name: scope in: query description: The scope of the vulnerable dependency. If specified, only alerts @@ -12084,7 +12093,7 @@ paths: enum: - development - runtime - - &196 + - &197 name: sort in: query description: |- @@ -12110,7 +12119,7 @@ paths: application/json: schema: type: array - items: &197 + items: &198 type: object description: A Dependabot alert. properties: @@ -12181,7 +12190,7 @@ paths: - transitive - inconclusive - - security_advisory: &471 + security_advisory: &472 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12264,6 +12273,13 @@ paths: - medium - high - critical + classification: + type: string + description: The classification of the advisory. + readOnly: true + enum: + - general + - malware cvss_severities: *61 epss: *62 cwes: @@ -12426,7 +12442,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &472 + auto_dismissed_at: &473 type: - string - 'null' @@ -12434,7 +12450,7 @@ paths: ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissal_request: &473 + dismissal_request: &474 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12497,7 +12513,7 @@ paths: - repository additionalProperties: false examples: - default: &198 + default: &199 value: - number: 2 state: dismissed @@ -13861,7 +13877,7 @@ paths: properties: action: type: string - discussion: &721 + discussion: &722 title: Discussion description: A Discussion in a repository. type: object @@ -14358,7 +14374,7 @@ paths: milestone: anyOf: - type: 'null' - - &265 + - &266 title: Milestone description: A collection of related issues and pull requests. @@ -14535,7 +14551,7 @@ paths: timeline_url: type: string format: uri - type: &229 + type: &230 title: Issue Type description: The type of issue. type: @@ -14646,7 +14662,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &642 + sub_issues_summary: &643 title: Sub-issues Summary type: object properties: @@ -14730,7 +14746,7 @@ paths: pin: anyOf: - type: 'null' - - &543 + - &544 title: Pinned Issue Comment description: Context around who pinned an issue comment and when it was pinned. @@ -14757,7 +14773,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &643 + issue_dependencies_summary: &644 title: Issue Dependencies Summary type: object properties: @@ -14776,7 +14792,7 @@ paths: - total_blocking issue_field_values: type: array - items: &528 + items: &529 title: Issue Field Value description: A value assigned to an issue field type: object @@ -15556,7 +15572,7 @@ paths: type: string release: allOf: - - &575 + - &576 title: Release description: A release. type: object @@ -15638,7 +15654,7 @@ paths: author: *4 assets: type: array - items: &576 + items: &577 title: Release Asset description: Data related to a release. type: object @@ -17902,7 +17918,7 @@ paths: - closed - all default: open - - &232 + - &233 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -17953,7 +17969,7 @@ paths: type: array items: *81 examples: - default: &233 + default: &234 value: - id: 1 node_id: MDU6SXNzdWUx @@ -19365,14 +19381,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &324 + - &325 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &325 + - &326 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -19434,7 +19450,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &328 + '301': &329 description: Moved permanently content: application/json: @@ -19456,7 +19472,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &551 + - &552 name: all description: If `true`, show notifications marked as read. in: query @@ -19464,7 +19480,7 @@ paths: schema: type: boolean default: false - - &552 + - &553 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -19474,7 +19490,7 @@ paths: type: boolean default: false - *86 - - &553 + - &554 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -19854,7 +19870,7 @@ paths: type: boolean examples: - false - security_and_analysis: &280 + security_and_analysis: &281 type: - object - 'null' @@ -20058,7 +20074,7 @@ paths: - url - subscription_url examples: - default: &554 + default: &555 value: - id: '1' repository: @@ -21628,7 +21644,7 @@ paths: required: false schema: type: string - - &698 + - &699 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -21774,7 +21790,7 @@ paths: parameters: - *73 - *115 - - &699 + - &700 name: month description: If specified, only return results for a single month. The value of `month` is an integer between `1` and `12`. If no year is specified the @@ -21886,7 +21902,7 @@ paths: - *115 - *117 - *116 - - &700 + - &701 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -21894,7 +21910,7 @@ paths: schema: type: string - *118 - - &701 + - &702 name: sku description: The SKU to query for usage. in: query @@ -22863,7 +22879,7 @@ paths: type: integer repository_cache_usages: type: array - items: &335 + items: &336 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -24225,7 +24241,7 @@ paths: - all - local_only - selected - selected_actions_url: &341 + selected_actions_url: &342 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -24308,7 +24324,7 @@ paths: description: Response content: application/json: - schema: &345 + schema: &346 type: object properties: days: @@ -24350,7 +24366,7 @@ paths: required: true content: application/json: - schema: &346 + schema: &347 type: object properties: days: @@ -24407,7 +24423,7 @@ paths: required: - approval_policy examples: - default: &347 + default: &348 value: approval_policy: first_time_contributors '404': *6 @@ -24466,7 +24482,7 @@ paths: description: Response content: application/json: - schema: &348 + schema: &349 type: object required: - run_workflows_from_fork_pull_requests @@ -24520,7 +24536,7 @@ paths: required: true content: application/json: - schema: &349 + schema: &350 type: object required: - run_workflows_from_fork_pull_requests @@ -25155,7 +25171,7 @@ paths: description: Response content: application/json: - schema: &350 + schema: &351 type: object properties: default_workflow_permissions: &145 @@ -25206,7 +25222,7 @@ paths: required: false content: application/json: - schema: &351 + schema: &352 type: object properties: default_workflow_permissions: *145 @@ -26346,7 +26362,7 @@ paths: application/json: schema: type: array - items: &352 + items: &353 title: Runner Application description: Runner Application type: object @@ -26371,7 +26387,7 @@ paths: - download_url - filename examples: - default: &353 + default: &354 value: - os: osx architecture: x64 @@ -26457,7 +26473,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &354 + '201': &355 description: Response content: application/json: @@ -26572,7 +26588,7 @@ paths: - token - expires_at examples: - default: &355 + default: &356 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -26611,7 +26627,7 @@ paths: application/json: schema: *156 examples: - default: &356 + default: &357 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -26645,7 +26661,7 @@ paths: application/json: schema: *154 examples: - default: &357 + default: &358 value: id: 23 name: MBP @@ -26871,7 +26887,7 @@ paths: - *73 - *153 responses: - '200': &358 + '200': &359 description: Response content: application/json: @@ -26928,7 +26944,7 @@ paths: parameters: - *73 - *153 - - &359 + - &360 name: name description: The name of a self-hosted runner's custom label. in: path @@ -27060,7 +27076,7 @@ paths: description: Response content: application/json: - schema: &371 + schema: &372 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -27095,7 +27111,7 @@ paths: - key_id - key examples: - default: &372 + default: &373 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27508,7 +27524,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *73 - - &340 + - &341 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -28729,12 +28745,12 @@ paths: required: - subject_digests examples: - default: &680 + default: &681 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &681 + withPredicateType: &682 value: subject_digests: - sha256:abc123 @@ -28779,7 +28795,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &682 + default: &683 value: attestations_subject_digests: - sha256:abc: @@ -29112,7 +29128,7 @@ paths: initiator: type: string examples: - default: &385 + default: &386 value: attestations: - bundle: @@ -29465,7 +29481,7 @@ paths: parent: anyOf: - type: 'null' - - &244 + - &245 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -30068,7 +30084,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *73 - - &409 + - &410 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -30078,7 +30094,7 @@ paths: schema: &177 type: string description: The name of the tool used to generate the code scanning analysis. - - &410 + - &411 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -30102,7 +30118,7 @@ paths: be returned. in: query required: false - schema: &412 + schema: &413 type: string description: State of a code scanning alert. enum: @@ -30125,7 +30141,7 @@ paths: be returned. in: query required: false - schema: &413 + schema: &414 type: string description: Severity of a code scanning alert. enum: @@ -30159,7 +30175,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: &414 + instances_url: &415 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -30181,7 +30197,7 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: &415 + dismissed_reason: &416 type: - string - 'null' @@ -30192,14 +30208,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &416 + dismissed_comment: &417 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &417 + rule: &418 type: object properties: id: @@ -30260,7 +30276,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &418 + tool: &419 type: object properties: name: *177 @@ -30271,26 +30287,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *178 - most_recent_instance: &419 + most_recent_instance: &420 type: object properties: - ref: &411 + ref: &412 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &429 + analysis_key: &430 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions this includes the workflow filename and job name. - environment: &430 + environment: &431 type: string description: Identifies the variable values associated with the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &431 + category: &432 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -30310,7 +30326,7 @@ paths: with placeholder links for related locations replaced by links to the relevant code. Only populated when related locations are available for the alert instance. - location: &432 + location: &433 type: object description: Describe a region within a file for the alert. properties: @@ -30331,7 +30347,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: &433 + items: &434 type: - string - 'null' @@ -31621,7 +31637,7 @@ paths: type: integer codespaces: type: array - items: &234 + items: &235 type: object title: Codespace description: A codespace. @@ -31656,7 +31672,7 @@ paths: machine: anyOf: - type: 'null' - - &445 + - &446 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -31943,7 +31959,7 @@ paths: - pulls_url - recent_folders examples: - default: &235 + default: &236 value: total_count: 3 codespaces: @@ -32608,7 +32624,7 @@ paths: - updated_at - visibility examples: - default: &446 + default: &447 value: total_count: 2 secrets: @@ -32646,7 +32662,7 @@ paths: description: Response content: application/json: - schema: &447 + schema: &448 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -32681,7 +32697,7 @@ paths: - key_id - key examples: - default: &448 + default: &449 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32713,7 +32729,7 @@ paths: application/json: schema: *186 examples: - default: &450 + default: &451 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -33180,7 +33196,7 @@ paths: currently being billed. seats: type: array - items: &237 + items: &238 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -34151,7 +34167,7 @@ paths: application/json: schema: type: array - items: &317 + items: &318 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -34466,7 +34482,7 @@ paths: - date additionalProperties: true examples: - default: &318 + default: &319 value: - date: '2024-06-24' total_active_users: 24 @@ -34568,7 +34584,7 @@ paths: '500': *53 '403': *27 '404': *6 - '422': &319 + '422': &320 description: Copilot Usage Metrics API setting is disabled at the organization or enterprise level. content: @@ -34753,6 +34769,7 @@ paths: - *191 - *192 - *193 + - *194 - name: artifact_registry_url in: query description: A comma-separated list of artifact registry URLs. If specified, @@ -34782,7 +34799,7 @@ paths: enum: - patch - deployment - - *194 + - *195 - name: runtime_risk in: query description: |- @@ -34791,8 +34808,8 @@ paths: Can be: `critical-resource`, `internet-exposed`, `sensitive-data`, `lateral-movement` schema: type: string - - *195 - *196 + - *197 - *59 - *45 - *46 @@ -34804,9 +34821,9 @@ paths: application/json: schema: type: array - items: *197 + items: *198 examples: - default: *198 + default: *199 '304': *35 '400': *14 '403': *27 @@ -34850,7 +34867,7 @@ paths: type: integer secrets: type: array - items: &199 + items: &200 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -34929,7 +34946,7 @@ paths: description: Response content: application/json: - schema: &476 + schema: &477 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -34948,7 +34965,7 @@ paths: - key_id - key examples: - default: &477 + default: &478 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34978,7 +34995,7 @@ paths: description: Response content: application/json: - schema: *199 + schema: *200 examples: default: value: @@ -35275,7 +35292,7 @@ paths: application/json: schema: type: array - items: &246 + items: &247 title: Package description: A software package type: object @@ -35346,7 +35363,7 @@ paths: - created_at - updated_at examples: - default: &247 + default: &248 value: - id: 197 name: hello_docker @@ -35516,7 +35533,7 @@ paths: application/json: schema: type: array - items: &223 + items: &224 title: Organization Invitation description: Organization Invitation type: object @@ -35570,7 +35587,7 @@ paths: - invitation_teams_url - node_id examples: - default: &224 + default: &225 value: - id: 1 login: monalisa @@ -35637,7 +35654,7 @@ paths: application/json: schema: type: array - items: &200 + items: &201 title: Org Hook description: Org Hook type: object @@ -35822,9 +35839,9 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: - default: &201 + default: &202 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -35872,7 +35889,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *73 - - &202 + - &203 name: hook_id description: The unique identifier of the hook. You can find this value in the `X-GitHub-Hook-ID` header of a webhook delivery. @@ -35885,9 +35902,9 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: - default: *201 + default: *202 '404': *6 x-github: githubCloudOnly: false @@ -35915,7 +35932,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *73 - - *202 + - *203 requestBody: required: false content: @@ -35961,7 +35978,7 @@ paths: description: Response content: application/json: - schema: *200 + schema: *201 examples: default: value: @@ -36003,7 +36020,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *73 - - *202 + - *203 responses: '204': description: Response @@ -36031,7 +36048,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *73 - - *202 + - *203 responses: '200': description: Response @@ -36062,7 +36079,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *73 - - *202 + - *203 requestBody: required: false content: @@ -36113,10 +36130,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *73 - - *202 - - *17 - *203 + - *17 - *204 + - *205 responses: '200': description: Response @@ -36124,9 +36141,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *206 + default: *207 '400': *14 '422': *15 x-github: @@ -36152,16 +36169,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *73 - - *202 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *207 + schema: *208 examples: - default: *208 + default: *209 '400': *14 '422': *15 x-github: @@ -36187,7 +36204,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *73 - - *202 + - *203 - *16 responses: '202': *37 @@ -36217,7 +36234,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *73 - - *202 + - *203 responses: '204': description: Response @@ -36240,7 +36257,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *73 - - &213 + - &214 name: actor_type in: path description: The type of the actor @@ -36253,14 +36270,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &214 + - &215 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &209 + - &210 name: min_timestamp description: 'The minimum timestamp to query for stats. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: `YYYY-MM-DDTHH:MM:SSZ`.' @@ -36268,7 +36285,7 @@ paths: required: true schema: type: string - - &210 + - &211 name: max_timestamp description: 'The maximum timestamp to query for stats. Defaults to the time 30 days ago. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -36363,12 +36380,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *73 - - *209 - *210 + - *211 - *19 - *17 - *59 - - &219 + - &220 name: sort description: The property to sort the results by. in: query @@ -36447,14 +36464,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *73 - - *209 - *210 + - *211 responses: '200': description: Response content: application/json: - schema: &211 + schema: &212 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -36470,7 +36487,7 @@ paths: type: integer format: int64 examples: - default: &212 + default: &213 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -36491,23 +36508,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *73 - - &215 + - &216 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *209 - *210 + - *211 responses: '200': description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: *212 + default: *213 x-github: enabledForGitHubApps: true category: orgs @@ -36526,18 +36543,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *73 - - *209 - *210 - - *213 + - *211 - *214 + - *215 responses: '200': description: Response content: application/json: - schema: *211 + schema: *212 examples: - default: *212 + default: *213 x-github: enabledForGitHubApps: true category: orgs @@ -36555,9 +36572,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *73 - - *209 - *210 - - &216 + - *211 + - &217 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -36570,7 +36587,7 @@ paths: description: Response content: application/json: - schema: &217 + schema: &218 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -36586,7 +36603,7 @@ paths: type: integer format: int64 examples: - default: &218 + default: &219 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -36623,18 +36640,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *73 - - *215 - - *209 - - *210 - *216 + - *210 + - *211 + - *217 responses: '200': description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 x-github: enabledForGitHubApps: true category: orgs @@ -36652,19 +36669,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *73 - - *213 - *214 - - *209 + - *215 - *210 - - *216 + - *211 + - *217 responses: '200': description: Response content: application/json: - schema: *217 + schema: *218 examples: - default: *218 + default: *219 x-github: enabledForGitHubApps: true category: orgs @@ -36682,13 +36699,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *73 - - *215 - - *209 + - *216 - *210 + - *211 - *19 - *17 - *59 - - *219 + - *220 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -36772,7 +36789,7 @@ paths: application/json: schema: *20 examples: - default: &515 + default: &516 value: id: 1 account: @@ -36938,12 +36955,12 @@ paths: application/json: schema: anyOf: - - &221 + - &222 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &220 + limit: &221 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -36971,7 +36988,7 @@ paths: properties: {} additionalProperties: false examples: - default: &222 + default: &223 value: limit: collaborators_only origin: organization @@ -37000,13 +37017,13 @@ paths: required: true content: application/json: - schema: &516 + schema: &517 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *220 + limit: *221 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -37031,9 +37048,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *222 + default: *223 '422': *15 x-github: githubCloudOnly: false @@ -37109,9 +37126,9 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 '404': *6 @@ -37188,7 +37205,7 @@ paths: description: Response content: application/json: - schema: *223 + schema: *224 examples: default: value: @@ -37243,7 +37260,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *73 - - &225 + - &226 name: invitation_id description: The unique identifier of the invitation. in: path @@ -37274,7 +37291,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *73 - - *225 + - *226 - *17 - *19 responses: @@ -37286,7 +37303,7 @@ paths: type: array items: *187 examples: - default: &245 + default: &246 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -37329,7 +37346,7 @@ paths: application/json: schema: type: array - items: &226 + items: &227 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -37572,9 +37589,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: - default: &227 + default: &228 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -37630,7 +37647,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *73 - - &228 + - &229 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -37731,9 +37748,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: - default: *227 + default: *228 '404': *6 '422': *7 x-github: @@ -37758,7 +37775,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *73 - - *228 + - *229 responses: '204': *183 '404': *6 @@ -37788,7 +37805,7 @@ paths: application/json: schema: type: array - items: *229 + items: *230 examples: default: value: @@ -37876,9 +37893,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: &230 + default: &231 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -37911,7 +37928,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *73 - - &231 + - &232 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -37967,9 +37984,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 '404': *6 '422': *7 x-github: @@ -37994,7 +38011,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *73 - - *231 + - *232 responses: '204': description: Response @@ -38057,7 +38074,7 @@ paths: - closed - all default: open - - *232 + - *233 - name: type description: Can be the name of an issue type. in: query @@ -38088,7 +38105,7 @@ paths: type: array items: *81 examples: - default: *233 + default: *234 headers: Link: *65 '404': *6 @@ -38248,9 +38265,9 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '304': *35 '500': *53 '401': *23 @@ -38277,7 +38294,7 @@ paths: parameters: - *73 - *69 - - &236 + - &237 name: codespace_name in: path required: true @@ -38312,15 +38329,15 @@ paths: parameters: - *73 - *69 - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: &444 + default: &445 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -38500,7 +38517,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *237 + schema: *238 examples: default: value: @@ -38576,7 +38593,7 @@ paths: description: Response content: application/json: - schema: &238 + schema: &239 title: Org Membership description: Org Membership type: object @@ -38645,7 +38662,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &239 + response-if-user-has-an-active-admin-membership-with-organization: &240 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -38746,9 +38763,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - response-if-user-already-had-membership-with-organization: *239 + response-if-user-already-had-membership-with-organization: *240 '422': *15 '403': *27 '451': *15 @@ -38821,7 +38838,7 @@ paths: application/json: schema: type: array - items: &240 + items: &241 title: Migration description: A migration. type: object @@ -39159,7 +39176,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -39338,7 +39355,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *73 - - &241 + - &242 name: migration_id description: The unique identifier of the migration. in: path @@ -39366,7 +39383,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -39536,7 +39553,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *73 - - *241 + - *242 responses: '302': description: Response @@ -39558,7 +39575,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *73 - - *241 + - *242 responses: '204': description: Response @@ -39582,8 +39599,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *73 - - *241 - - &662 + - *242 + - &663 name: repo_name description: repo_name parameter in: path @@ -39611,7 +39628,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *73 - - *241 + - *242 - *17 - *19 responses: @@ -39665,7 +39682,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &243 + items: &244 title: Organization Role description: Organization roles type: object @@ -39842,7 +39859,7 @@ paths: parameters: - *73 - *75 - - &242 + - &243 name: role_id description: The unique identifier of the role. in: path @@ -39879,7 +39896,7 @@ paths: parameters: - *73 - *75 - - *242 + - *243 responses: '204': description: Response @@ -39932,7 +39949,7 @@ paths: parameters: - *73 - *69 - - *242 + - *243 responses: '204': description: Response @@ -39964,7 +39981,7 @@ paths: parameters: - *73 - *69 - - *242 + - *243 responses: '204': description: Response @@ -39993,13 +40010,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *73 - - *242 + - *243 responses: '200': description: Response content: application/json: - schema: *243 + schema: *244 examples: default: value: @@ -40050,7 +40067,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *73 - - *242 + - *243 - *17 - *19 responses: @@ -40129,7 +40146,7 @@ paths: parent: anyOf: - type: 'null' - - *244 + - *245 type: description: The ownership type of the team type: string @@ -40162,7 +40179,7 @@ paths: - type - parent examples: - default: *245 + default: *246 headers: Link: *65 '404': @@ -40192,7 +40209,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *73 - - *242 + - *243 - *17 - *19 responses: @@ -40221,7 +40238,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *244 + items: *245 name: type: - string @@ -40531,7 +40548,7 @@ paths: - nuget - container - *73 - - &663 + - &664 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -40567,12 +40584,12 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *247 + default: *248 '403': *27 '401': *23 - '400': &665 + '400': &666 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -40594,7 +40611,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &248 + - &249 name: package_type description: The type of supported package. Packages in GitHub's Gradle registry have the type `maven`. Docker images pushed to GitHub's Container registry @@ -40612,7 +40629,7 @@ paths: - docker - nuget - container - - &249 + - &250 name: package_name description: The name of the package. in: path @@ -40625,7 +40642,7 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: default: value: @@ -40677,8 +40694,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *248 - *249 + - *250 - *73 responses: '204': @@ -40711,8 +40728,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - name: token description: package token @@ -40745,8 +40762,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *248 - *249 + - *250 - *73 - *19 - *17 @@ -40767,7 +40784,7 @@ paths: application/json: schema: type: array - items: &250 + items: &251 title: Package Version description: A version of a software package type: object @@ -40902,10 +40919,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - &251 + - &252 name: package_version_id description: Unique identifier of the package version. in: path @@ -40917,7 +40934,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -40953,10 +40970,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - *251 + - *252 responses: '204': description: Response @@ -40988,10 +41005,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *248 - *249 + - *250 - *73 - - *251 + - *252 responses: '204': description: Response @@ -41021,7 +41038,7 @@ paths: - *73 - *17 - *19 - - &252 + - &253 name: sort description: The property by which to sort the results. in: query @@ -41032,7 +41049,7 @@ paths: - created_at default: created_at - *59 - - &253 + - &254 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -41044,7 +41061,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &254 + - &255 name: repository description: The name of the repository to use to filter the results. in: query @@ -41053,7 +41070,7 @@ paths: type: string examples: - Hello-World - - &255 + - &256 name: permission description: The permission to use to filter the results. in: query @@ -41062,7 +41079,7 @@ paths: type: string examples: - issues_read - - &256 + - &257 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -41072,7 +41089,7 @@ paths: schema: type: string format: date-time - - &257 + - &258 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -41082,7 +41099,7 @@ paths: schema: type: string format: date-time - - &258 + - &259 name: token_id description: The ID of the token in: query @@ -41401,7 +41418,7 @@ paths: type: array items: *152 examples: - default: &259 + default: &260 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -41538,14 +41555,14 @@ paths: - *73 - *17 - *19 - - *252 - - *59 - *253 + - *59 - *254 - *255 - *256 - *257 - *258 + - *259 responses: '500': *53 '422': *15 @@ -41829,7 +41846,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 x-github: @@ -41871,7 +41888,7 @@ paths: type: integer configurations: type: array - items: &260 + items: &261 title: Organization private registry description: Private registry configuration for an organization type: object @@ -42305,7 +42322,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &261 + org-private-registry-with-selected-visibility: &262 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -42403,9 +42420,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *260 + schema: *261 examples: - default: *261 + default: *262 '404': *6 x-github: githubCloudOnly: false @@ -42633,7 +42650,7 @@ paths: application/json: schema: type: array - items: &262 + items: &263 title: Projects v2 Project description: A projects v2 project type: object @@ -42707,7 +42724,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &749 + - &750 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -42792,7 +42809,7 @@ paths: - deleted_at - deleted_by examples: - default: &263 + default: &264 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -42895,7 +42912,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &264 + - &265 name: project_number description: The project's number. in: path @@ -42908,9 +42925,9 @@ paths: description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -42933,7 +42950,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true description: Details of the draft item to create in the project. @@ -42967,7 +42984,7 @@ paths: description: Response content: application/json: - schema: &269 + schema: &270 title: Projects v2 Item description: An item belonging to a project type: object @@ -42981,7 +42998,7 @@ paths: content: oneOf: - *81 - - &459 + - &460 title: Pull Request Simple description: Pull Request Simple type: object @@ -43101,7 +43118,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 active_lock_reason: type: - string @@ -43184,7 +43201,7 @@ paths: _links: type: object properties: - comments: &266 + comments: &267 title: Link description: Hypermedia Link type: object @@ -43193,13 +43210,13 @@ paths: type: string required: - href - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + commits: *267 + statuses: *267 + html: *267 + issue: *267 + review_comments: *267 + review_comment: *267 + self: *267 required: - comments - commits @@ -43210,7 +43227,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: &561 + auto_merge: &562 title: Auto merge description: The status of auto merging a pull request. type: @@ -43310,7 +43327,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &268 + content_type: &269 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -43354,7 +43371,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &270 + draft_issue: &271 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -43428,7 +43445,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *264 + - *265 - *73 - *17 - *45 @@ -43440,7 +43457,7 @@ paths: application/json: schema: type: array - items: &267 + items: &268 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -43593,7 +43610,7 @@ paths: - updated_at - project_url examples: - default: &685 + default: &686 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43723,7 +43740,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *264 + - *265 - *73 requestBody: required: true @@ -43770,7 +43787,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &686 + items: &687 type: object properties: name: @@ -43807,7 +43824,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &687 + iteration_configuration: &688 type: object description: The configuration for iteration fields. properties: @@ -43857,7 +43874,7 @@ paths: value: name: Due date data_type: date - single_select_field: &688 + single_select_field: &689 summary: Create a single select field value: name: Priority @@ -43884,7 +43901,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &689 + iteration_field: &690 summary: Create an iteration field value: name: Sprint @@ -43908,9 +43925,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *267 + schema: *268 examples: - text_field: &690 + text_field: &691 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -43919,7 +43936,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-05-15T08:00:00Z' updated_at: '2022-05-15T08:00:00Z' - number_field: &691 + number_field: &692 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -43928,7 +43945,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-01T14:30:00Z' updated_at: '2022-06-01T14:30:00Z' - date_field: &692 + date_field: &693 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -43937,7 +43954,7 @@ paths: project_url: https://api.github.com/projects/67890 created_at: '2022-06-10T09:15:00Z' updated_at: '2022-06-10T09:15:00Z' - single_select_field: &693 + single_select_field: &694 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -43971,7 +43988,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &694 + iteration_field: &695 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -44016,8 +44033,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *264 - - &695 + - *265 + - &696 name: field_id description: The unique identifier of the field. in: path @@ -44030,9 +44047,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: - default: &696 + default: &697 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -44088,7 +44105,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *264 + - *265 - *73 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -44121,7 +44138,7 @@ paths: application/json: schema: type: array - items: &271 + items: &272 title: Projects v2 Item description: An item belonging to a project type: object @@ -44138,7 +44155,7 @@ paths: description: The API URL of the project that contains this item. examples: - https://api.github.com/users/monalisa/2/projectsV2/3 - content_type: *268 + content_type: *269 content: type: - object @@ -44188,7 +44205,7 @@ paths: - updated_at - archived_at examples: - default: &272 + default: &273 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -44886,7 +44903,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -44956,22 +44973,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *271 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *271 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *271 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *271 '304': *35 '403': *27 '401': *23 @@ -44991,9 +45008,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *264 + - *265 - *73 - - &273 + - &274 name: item_id description: The unique identifier of the project item. in: path @@ -45019,9 +45036,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -45042,9 +45059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *264 + - *265 - *73 - - *273 + - *274 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -45117,13 +45134,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *273 + number_field: *273 + date_field: *273 + single_select_field: *273 + iteration_field: *273 '401': *23 '403': *27 '404': *6 @@ -45143,9 +45160,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *264 + - *265 - *73 - - *273 + - *274 responses: '204': description: Response @@ -45169,7 +45186,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *73 - - *264 + - *265 requestBody: required: true content: @@ -45243,7 +45260,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &677 + schema: &678 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -45347,7 +45364,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &274 + value: &275 value: id: 1 number: 1 @@ -45393,10 +45410,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *274 + value: *275 roadmap_view: summary: Response for creating a roadmap view - value: *274 + value: *275 '304': *35 '403': *27 '401': *23 @@ -45424,9 +45441,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *264 + - *265 - *73 - - &697 + - &698 name: view_number description: The number that identifies the project view. in: path @@ -45458,9 +45475,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -45493,7 +45510,7 @@ paths: application/json: schema: type: array - items: &275 + items: &276 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -45571,7 +45588,7 @@ paths: - property_name - value_type examples: - default: &276 + default: &277 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -45631,7 +45648,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *275 + items: *276 minItems: 1 maxItems: 100 required: @@ -45661,9 +45678,9 @@ paths: application/json: schema: type: array - items: *275 + items: *276 examples: - default: *276 + default: *277 '403': *27 '404': *6 x-github: @@ -45685,7 +45702,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *73 - - &277 + - &278 name: custom_property_name description: The custom property name in: path @@ -45697,9 +45714,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: &278 + default: &279 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -45734,7 +45751,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *73 - - *277 + - *278 requestBody: required: true content: @@ -45814,9 +45831,9 @@ paths: description: Response content: application/json: - schema: *275 + schema: *276 examples: - default: *278 + default: *279 '403': *27 '404': *6 x-github: @@ -45840,7 +45857,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *73 - - *277 + - *278 responses: '204': *183 '403': *27 @@ -45904,7 +45921,7 @@ paths: - octocat/Hello-World properties: type: array - items: &279 + items: &280 title: Custom Property Value description: Custom property name and associated value type: object @@ -45994,7 +46011,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *279 + items: *280 required: - repository_names - properties @@ -46186,7 +46203,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 x-github: @@ -46389,7 +46406,7 @@ paths: description: Response content: application/json: - schema: &327 + schema: &328 title: Full Repository description: Full Repository type: object @@ -46859,7 +46876,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &464 + code_of_conduct: &465 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -46889,7 +46906,7 @@ paths: - key - name - html_url - security_and_analysis: *280 + security_and_analysis: *281 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -46973,7 +46990,7 @@ paths: - network_count - subscribers_count examples: - default: &329 + default: &330 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -47495,7 +47512,7 @@ paths: - *73 - *17 - *19 - - &583 + - &584 name: targets description: | A comma-separated list of rule targets to filter by. @@ -47514,7 +47531,7 @@ paths: application/json: schema: type: array - items: &307 + items: &308 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -47549,7 +47566,7 @@ paths: source: type: string description: The name of the source - enforcement: &283 + enforcement: &284 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -47562,7 +47579,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &284 + items: &285 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -47633,7 +47650,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &281 + - &282 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -47657,7 +47674,7 @@ paths: match. items: type: string - - &285 + - &286 title: Organization ruleset conditions type: object description: |- @@ -47671,7 +47688,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -47705,7 +47722,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -47727,7 +47744,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *281 + - *282 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -47740,7 +47757,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &282 + items: &283 title: Repository ruleset property targeting definition type: object @@ -47773,7 +47790,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *282 + items: *283 required: - repository_property type: @@ -47781,12 +47798,12 @@ paths: - object rules: type: array - items: &584 + items: &585 title: Repository Rule type: object description: A repository rule. oneOf: - - &286 + - &287 title: creation description: Only allow users with bypass permission to create matching refs. @@ -47798,7 +47815,7 @@ paths: type: string enum: - creation - - &287 + - &288 title: update description: Only allow users with bypass permission to update matching refs. @@ -47819,7 +47836,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &288 + - &289 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -47831,7 +47848,7 @@ paths: type: string enum: - deletion - - &289 + - &290 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -47843,7 +47860,7 @@ paths: type: string enum: - required_linear_history - - &582 + - &583 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -47921,7 +47938,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &290 + - &291 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -47945,7 +47962,7 @@ paths: type: string required: - required_deployment_environments - - &291 + - &292 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -47957,7 +47974,7 @@ paths: type: string enum: - required_signatures - - &292 + - &293 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -48063,7 +48080,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &293 + - &294 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -48111,7 +48128,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &294 + - &295 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -48123,7 +48140,7 @@ paths: type: string enum: - non_fast_forward - - &295 + - &296 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -48160,7 +48177,7 @@ paths: required: - operator - pattern - - &296 + - &297 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -48197,7 +48214,7 @@ paths: required: - operator - pattern - - &297 + - &298 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -48234,7 +48251,7 @@ paths: required: - operator - pattern - - &298 + - &299 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -48271,7 +48288,7 @@ paths: required: - operator - pattern - - &299 + - &300 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -48308,7 +48325,7 @@ paths: required: - operator - pattern - - &300 + - &301 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -48333,7 +48350,7 @@ paths: type: string required: - restricted_file_paths - - &301 + - &302 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -48357,7 +48374,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &302 + - &303 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -48380,7 +48397,7 @@ paths: type: string required: - restricted_file_extensions - - &303 + - &304 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -48405,7 +48422,7 @@ paths: maximum: 100 required: - max_file_size - - &304 + - &305 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -48455,7 +48472,7 @@ paths: - repository_id required: - workflows - - &305 + - &306 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -48516,7 +48533,7 @@ paths: - tool required: - code_scanning_tools - - &306 + - &307 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -48615,21 +48632,20 @@ paths: - push - repository default: branch - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *285 + items: *285 + conditions: *286 rules: type: array description: An array of rules within the ruleset. - items: &309 + items: &310 title: Repository Rule type: object description: A repository rule. oneOf: - - *286 - *287 - *288 - *289 @@ -48650,6 +48666,7 @@ paths: - *304 - *305 - *306 + - *307 required: - name - enforcement @@ -48687,9 +48704,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &308 + default: &309 value: id: 21 name: super cool ruleset @@ -48745,7 +48762,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *73 - - &585 + - &586 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -48760,7 +48777,7 @@ paths: in: query schema: type: string - - &586 + - &587 name: time_period description: |- The time period to filter by. @@ -48776,14 +48793,14 @@ paths: - week - month default: day - - &587 + - &588 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &588 + - &589 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -48803,7 +48820,7 @@ paths: description: Response content: application/json: - schema: &589 + schema: &590 title: Rule Suites description: Response type: array @@ -48859,7 +48876,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &590 + default: &591 value: - id: 21 actor_id: 12 @@ -48903,7 +48920,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *73 - - &591 + - &592 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -48919,7 +48936,7 @@ paths: description: Response content: application/json: - schema: &592 + schema: &593 title: Rule Suite description: Response type: object @@ -49026,7 +49043,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &593 + default: &594 value: id: 21 actor_id: 12 @@ -49099,9 +49116,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *308 + default: *309 '404': *6 '500': *53 put: @@ -49145,16 +49162,16 @@ paths: - tag - push - repository - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *285 + items: *285 + conditions: *286 rules: description: An array of rules within the ruleset. type: array - items: *309 + items: *310 examples: default: value: @@ -49189,9 +49206,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *308 + default: *309 '404': *6 '422': *15 '500': *53 @@ -49249,7 +49266,7 @@ paths: application/json: schema: type: array - items: &310 + items: &311 title: Ruleset version type: object description: The historical version of a ruleset @@ -49273,7 +49290,7 @@ paths: type: string format: date-time examples: - default: &595 + default: &596 value: - version_id: 3 actor: @@ -49326,9 +49343,9 @@ paths: description: Response content: application/json: - schema: &596 + schema: &597 allOf: - - *310 + - *311 - type: object required: - state @@ -49398,7 +49415,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *73 - - &597 + - &598 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -49409,7 +49426,7 @@ paths: enum: - open - resolved - - &598 + - &599 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -49419,7 +49436,7 @@ paths: required: false schema: type: string - - &599 + - &600 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -49428,7 +49445,7 @@ paths: required: false schema: type: string - - &600 + - &601 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -49447,7 +49464,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &601 + - &602 name: sort description: The property to sort the results by. `created` means when the alert was created. `updated` means when the alert was updated or resolved. @@ -49462,7 +49479,7 @@ paths: - *59 - *19 - *17 - - &602 + - &603 name: before description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -49472,7 +49489,7 @@ paths: required: false schema: type: string - - &603 + - &604 name: after description: A cursor, as given in the [Link header](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -49482,7 +49499,7 @@ paths: required: false schema: type: string - - &604 + - &605 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -49491,7 +49508,7 @@ paths: required: false schema: type: string - - &605 + - &606 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -49500,7 +49517,7 @@ paths: schema: type: boolean default: false - - &606 + - &607 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -49509,7 +49526,7 @@ paths: schema: type: boolean default: false - - &607 + - &608 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -49541,14 +49558,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &608 + state: &609 description: Sets the state of the secret scanning alert. You must provide `resolution` when you set the state to `resolved`. type: string enum: - open - resolved - resolution: &609 + resolution: &610 type: - string - 'null' @@ -49655,14 +49672,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &610 + - &611 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &612 + - &613 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -49726,7 +49743,7 @@ paths: - blob_url - commit_sha - commit_url - - &613 + - &614 description: Represents a 'wiki_commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository wiki. @@ -49787,7 +49804,7 @@ paths: - page_url - commit_sha - commit_url - - &614 + - &615 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -49809,7 +49826,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &615 + - &616 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -49831,7 +49848,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &616 + - &617 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -49853,7 +49870,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &617 + - &618 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -49868,7 +49885,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &618 + - &619 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -49883,7 +49900,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &619 + - &620 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -49898,7 +49915,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &620 + - &621 description: Represents a 'pull_request_title' secret scanning location type. This location type shows that a secret was detected in the title of a pull request. @@ -49920,7 +49937,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &621 + - &622 description: Represents a 'pull_request_body' secret scanning location type. This location type shows that a secret was detected in the body of a pull request. @@ -49942,7 +49959,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &622 + - &623 description: Represents a 'pull_request_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a pull request. @@ -49964,7 +49981,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &623 + - &624 description: Represents a 'pull_request_review' secret scanning location type. This location type shows that a secret was detected in a review on a pull request. @@ -49986,7 +50003,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &624 + - &625 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull @@ -50247,7 +50264,7 @@ paths: related to push protection. type: object properties: - pattern_config_version: &312 + pattern_config_version: &313 type: - string - 'null' @@ -50257,7 +50274,7 @@ paths: provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &311 + items: &312 type: object properties: token_type: @@ -50326,7 +50343,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *311 + items: *312 examples: default: value: @@ -50383,7 +50400,7 @@ paths: schema: type: object properties: - pattern_config_version: *312 + pattern_config_version: *313 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -50409,7 +50426,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *312 + custom_pattern_version: *313 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -50507,7 +50524,7 @@ paths: application/json: schema: type: array - items: &628 + items: &629 description: A repository security advisory. type: object properties: @@ -50730,7 +50747,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 credits_detailed: type: - array @@ -50741,7 +50758,7 @@ paths: type: object properties: user: *4 - type: *313 + type: *314 state: type: string description: The state of the user's acceptance of the @@ -50804,7 +50821,7 @@ paths: - private_fork additionalProperties: false examples: - default: &629 + default: &630 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -51191,7 +51208,7 @@ paths: application/json: schema: type: array - items: *244 + items: *245 examples: default: value: @@ -51546,7 +51563,7 @@ paths: type: integer network_configurations: type: array - items: &314 + items: &315 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -51699,9 +51716,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: &315 + default: &316 value: id: 123456789ABCDEF name: My network configuration @@ -51730,7 +51747,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *73 - - &316 + - &317 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -51742,9 +51759,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: *315 + default: *316 headers: Link: *65 x-github: @@ -51766,7 +51783,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *73 - - *316 + - *317 requestBody: required: true content: @@ -51819,9 +51836,9 @@ paths: description: Response content: application/json: - schema: *314 + schema: *315 examples: - default: *315 + default: *316 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51841,7 +51858,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *73 - - *316 + - *317 responses: '204': description: Response @@ -51986,13 +52003,13 @@ paths: application/json: schema: type: array - items: *317 + items: *318 examples: - default: *318 + default: *319 '500': *53 '403': *27 '404': *6 - '422': *319 + '422': *320 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52034,7 +52051,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 headers: Link: *65 '403': *27 @@ -52120,7 +52137,7 @@ paths: description: Response content: application/json: - schema: &320 + schema: &321 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -52194,7 +52211,7 @@ paths: parent: anyOf: - type: 'null' - - *244 + - *245 members_count: type: integer examples: @@ -52519,7 +52536,7 @@ paths: - repos_count - organization examples: - default: &321 + default: &322 value: id: 1 node_id: MDQ6VGVhbTE= @@ -52596,9 +52613,9 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 x-github: githubCloudOnly: false @@ -52683,16 +52700,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '201': description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 '422': *15 '403': *27 @@ -52722,7 +52739,7 @@ paths: responses: '204': description: Response - '422': &322 + '422': &323 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -52756,12 +52773,12 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 - '422': *322 + '422': *323 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52843,7 +52860,7 @@ paths: description: Response content: application/json: - schema: &323 + schema: &324 title: Team Membership description: Team Membership type: object @@ -52871,7 +52888,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &645 + response-if-user-is-a-team-maintainer: &646 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -52934,9 +52951,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: &646 + response-if-users-membership-with-team-is-now-pending: &647 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -53012,7 +53029,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 x-github: @@ -53043,14 +53060,14 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &647 + schema: &648 title: Team Repository description: A team's access to a repository. type: object @@ -53686,8 +53703,8 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 requestBody: required: false content: @@ -53734,8 +53751,8 @@ paths: parameters: - *73 - *75 - - *324 - *325 + - *326 responses: '204': description: Response @@ -53772,7 +53789,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: &648 + response-if-child-teams-exist: &649 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -53926,7 +53943,7 @@ paths: resources: type: object properties: - core: &326 + core: &327 title: Rate Limit type: object properties: @@ -53943,17 +53960,17 @@ paths: - remaining - reset - used - graphql: *326 - search: *326 - code_search: *326 - source_import: *326 - integration_manifest: *326 - code_scanning_upload: *326 - actions_runner_registration: *326 - scim: *326 - dependency_snapshots: *326 - dependency_sbom: *326 - code_scanning_autofix: *326 + graphql: *327 + search: *327 + code_search: *327 + source_import: *327 + integration_manifest: *327 + code_scanning_upload: *327 + actions_runner_registration: *327 + scim: *327 + dependency_snapshots: *327 + dependency_sbom: *327 + code_scanning_autofix: *327 required: - core - search @@ -54060,14 +54077,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *327 + schema: *328 examples: default-response: summary: Default response @@ -54572,7 +54589,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *328 + '301': *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54590,8 +54607,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -54883,10 +54900,10 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 - '307': &330 + default: *330 + '307': &331 description: Temporary Redirect content: application/json: @@ -54915,8 +54932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -54938,7 +54955,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *330 + '307': *331 '404': *6 '409': *52 x-github: @@ -54962,11 +54979,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 - - &363 + - &364 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -54989,7 +55006,7 @@ paths: type: integer artifacts: type: array - items: &331 + items: &332 title: Artifact description: An artifact type: object @@ -55084,7 +55101,7 @@ paths: - expires_at - updated_at examples: - default: &364 + default: &365 value: total_count: 2 artifacts: @@ -55145,9 +55162,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *324 - *325 - - &332 + - *326 + - &333 name: artifact_id description: The unique identifier of the artifact. in: path @@ -55159,7 +55176,7 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: default: value: @@ -55197,9 +55214,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *324 - *325 - - *332 + - *326 + - *333 responses: '204': description: Response @@ -55223,9 +55240,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *324 - *325 - - *332 + - *326 + - *333 - name: archive_format in: path required: true @@ -55239,7 +55256,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': &519 + '410': &520 description: Gone content: application/json: @@ -55264,14 +55281,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &333 + schema: &334 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -55305,13 +55322,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *333 + schema: *334 examples: selected_actions: *40 responses: @@ -55340,14 +55357,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &334 + schema: &335 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -55381,13 +55398,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *334 + schema: *335 examples: selected_actions: *42 responses: @@ -55418,14 +55435,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *335 + schema: *336 examples: default: value: @@ -55451,11 +55468,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 - - &336 + - &337 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -55489,7 +55506,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &338 title: Repository actions caches description: Repository actions caches type: object @@ -55539,7 +55556,7 @@ paths: - total_count - actions_caches examples: - default: &338 + default: &339 value: total_count: 1 actions_caches: @@ -55571,23 +55588,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *324 - *325 + - *326 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *336 + - *337 responses: '200': description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55607,8 +55624,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *324 - *325 + - *326 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -55639,9 +55656,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *324 - *325 - - &339 + - *326 + - &340 name: job_id description: The unique identifier of the job. in: path @@ -55653,7 +55670,7 @@ paths: description: Response content: application/json: - schema: &367 + schema: &368 title: Job description: Information of a job execution in a workflow run type: object @@ -56000,9 +56017,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *324 - *325 - - *339 + - *326 + - *340 responses: '302': description: Response @@ -56030,9 +56047,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *324 - *325 - - *339 + - *326 + - *340 requestBody: required: false content: @@ -56078,8 +56095,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Status response @@ -56129,8 +56146,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -56193,8 +56210,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -56212,7 +56229,7 @@ paths: type: integer secrets: type: array - items: &369 + items: &370 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -56233,7 +56250,7 @@ paths: - created_at - updated_at examples: - default: &370 + default: &371 value: total_count: 2 secrets: @@ -56266,9 +56283,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *324 - *325 - - *340 + - *326 + - *341 - *19 responses: '200': @@ -56285,7 +56302,7 @@ paths: type: integer variables: type: array - items: &373 + items: &374 title: Actions Variable type: object properties: @@ -56319,7 +56336,7 @@ paths: - created_at - updated_at examples: - default: &374 + default: &375 value: total_count: 2 variables: @@ -56352,8 +56369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -56362,11 +56379,11 @@ paths: schema: type: object properties: - enabled: &342 + enabled: &343 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *137 - selected_actions_url: *341 + selected_actions_url: *342 sha_pinning_required: *138 required: - enabled @@ -56395,8 +56412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -56407,7 +56424,7 @@ paths: schema: type: object properties: - enabled: *342 + enabled: *343 allowed_actions: *137 sha_pinning_required: *138 required: @@ -56439,14 +56456,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &343 + schema: &344 type: object properties: access_level: @@ -56463,7 +56480,7 @@ paths: required: - access_level examples: - default: &344 + default: &345 value: access_level: organization x-github: @@ -56487,15 +56504,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *343 + schema: *344 examples: - default: *344 + default: *345 responses: '204': description: Response @@ -56519,14 +56536,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *345 + schema: *346 examples: default: value: @@ -56550,8 +56567,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Empty response for successful settings update @@ -56561,7 +56578,7 @@ paths: required: true content: application/json: - schema: *346 + schema: *347 examples: default: summary: Set retention days @@ -56585,8 +56602,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -56594,7 +56611,7 @@ paths: application/json: schema: *139 examples: - default: *347 + default: *348 '404': *6 x-github: enabledForGitHubApps: true @@ -56613,8 +56630,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -56648,14 +56665,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *348 + schema: *349 examples: default: *140 '403': *27 @@ -56677,13 +56694,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *349 + schema: *350 examples: default: *140 responses: @@ -56709,8 +56726,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -56737,8 +56754,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -56770,14 +56787,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *350 + schema: *351 examples: default: *147 x-github: @@ -56800,8 +56817,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Success response @@ -56812,7 +56829,7 @@ paths: required: true content: application/json: - schema: *351 + schema: *352 examples: default: *147 x-github: @@ -56841,8 +56858,8 @@ paths: in: query schema: type: string - - *324 - *325 + - *326 - *17 - *19 responses: @@ -56886,8 +56903,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -56895,9 +56912,9 @@ paths: application/json: schema: type: array - items: *352 + items: *353 examples: - default: *353 + default: *354 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56919,8 +56936,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -56963,7 +56980,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *354 + '201': *355 '404': *6 '422': *7 '409': *52 @@ -56994,8 +57011,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -57003,7 +57020,7 @@ paths: application/json: schema: *156 examples: - default: *355 + default: *356 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57031,8 +57048,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -57040,7 +57057,7 @@ paths: application/json: schema: *156 examples: - default: *356 + default: *357 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57062,8 +57079,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '200': @@ -57072,7 +57089,7 @@ paths: application/json: schema: *154 examples: - default: *357 + default: *358 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57093,8 +57110,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '204': @@ -57121,8 +57138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: '200': *158 @@ -57147,8 +57164,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 requestBody: required: true @@ -57197,8 +57214,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 requestBody: required: true @@ -57248,11 +57265,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 responses: - '200': *358 + '200': *359 '404': *6 x-github: githubCloudOnly: false @@ -57279,10 +57296,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *324 - *325 + - *326 - *153 - - *359 + - *360 responses: '200': *158 '404': *6 @@ -57310,9 +57327,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *324 - *325 - - &377 + - *326 + - &378 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -57320,7 +57337,7 @@ paths: required: false schema: type: string - - &378 + - &379 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -57328,7 +57345,7 @@ paths: required: false schema: type: string - - &379 + - &380 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -57337,7 +57354,7 @@ paths: required: false schema: type: string - - &380 + - &381 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -57364,7 +57381,7 @@ paths: - pending - *17 - *19 - - &381 + - &382 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -57373,7 +57390,7 @@ paths: schema: type: string format: date-time - - &360 + - &361 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -57382,13 +57399,13 @@ paths: schema: type: boolean default: false - - &382 + - &383 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &383 + - &384 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -57411,7 +57428,7 @@ paths: type: integer workflow_runs: type: array - items: &361 + items: &362 title: Workflow Run description: An invocation of a workflow type: object @@ -57589,7 +57606,7 @@ paths: head_commit: anyOf: - type: 'null' - - &405 + - &406 title: Simple Commit description: A commit. type: object @@ -57704,7 +57721,7 @@ paths: - workflow_url - pull_requests examples: - default: &384 + default: &385 value: total_count: 1 workflow_runs: @@ -57940,24 +57957,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *324 - *325 - - &362 + - *326 + - &363 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: &365 + default: &366 value: id: 30433642 name: Build @@ -58198,9 +58215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '204': description: Response @@ -58223,9 +58240,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -58353,9 +58370,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '201': description: Response @@ -58388,12 +58405,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *324 - *325 - - *362 + - *326 + - *363 - *17 - *19 - - *363 + - *364 - *59 responses: '200': @@ -58410,9 +58427,9 @@ paths: type: integer artifacts: type: array - items: *331 + items: *332 examples: - default: *364 + default: *365 headers: Link: *65 x-github: @@ -58436,25 +58453,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *324 - *325 - - *362 - - &366 + - *326 + - *363 + - &367 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *361 + schema: *362 examples: - default: *365 + default: *366 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58477,10 +58494,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *324 - *325 - - *362 - - *366 + - *326 + - *363 + - *367 - *17 - *19 responses: @@ -58498,9 +58515,9 @@ paths: type: integer jobs: type: array - items: *367 + items: *368 examples: - default: &368 + default: &369 value: total_count: 1 jobs: @@ -58613,10 +58630,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *324 - *325 - - *362 - - *366 + - *326 + - *363 + - *367 responses: '302': description: Response @@ -58644,9 +58661,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '202': description: Response @@ -58679,9 +58696,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: true content: @@ -58748,9 +58765,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '202': description: Response @@ -58783,9 +58800,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -58815,9 +58832,9 @@ paths: type: integer jobs: type: array - items: *367 + items: *368 examples: - default: *368 + default: *369 headers: Link: *65 x-github: @@ -58842,9 +58859,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '302': description: Response @@ -58871,9 +58888,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '204': description: Response @@ -58900,9 +58917,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -58971,7 +58988,7 @@ paths: items: type: object properties: - type: &485 + type: &486 type: string description: The type of reviewer. enum: @@ -59057,9 +59074,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: true content: @@ -59109,7 +59126,7 @@ paths: application/json: schema: type: array - items: &480 + items: &481 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -59221,7 +59238,7 @@ paths: - created_at - updated_at examples: - default: &481 + default: &482 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -59277,9 +59294,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: false content: @@ -59324,9 +59341,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *324 - *325 - - *362 + - *326 + - *363 requestBody: required: false content: @@ -59380,9 +59397,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *324 - *325 - - *362 + - *326 + - *363 responses: '200': description: Response @@ -59519,8 +59536,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -59538,9 +59555,9 @@ paths: type: integer secrets: type: array - items: *369 + items: *370 examples: - default: *370 + default: *371 headers: Link: *65 x-github: @@ -59565,16 +59582,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59596,17 +59613,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *369 + schema: *370 examples: - default: &498 + default: &499 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -59632,8 +59649,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -59691,8 +59708,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -59718,9 +59735,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *324 - *325 - - *340 + - *326 + - *341 - *19 responses: '200': @@ -59737,9 +59754,9 @@ paths: type: integer variables: type: array - items: *373 + items: *374 examples: - default: *374 + default: *375 headers: Link: *65 x-github: @@ -59762,8 +59779,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -59815,17 +59832,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: &499 + default: &500 value: name: USERNAME value: octocat @@ -59851,8 +59868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 requestBody: required: true @@ -59895,8 +59912,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *324 - *325 + - *326 - *163 responses: '204': @@ -59922,8 +59939,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -59941,7 +59958,7 @@ paths: type: integer workflows: type: array - items: &375 + items: &376 title: Workflow description: A GitHub Actions workflow type: object @@ -60059,9 +60076,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *324 - *325 - - &376 + - *326 + - &377 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -60076,7 +60093,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *376 examples: default: value: @@ -60109,9 +60126,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Response @@ -60136,9 +60153,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '200': description: Response including the workflow run ID and URLs when `return_run_details` @@ -60219,9 +60236,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '204': description: Response @@ -60248,19 +60265,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *324 - *325 - - *376 + - *326 - *377 - *378 - *379 - *380 + - *381 - *17 - *19 - - *381 - - *360 - *382 + - *361 - *383 + - *384 responses: '200': description: Response @@ -60276,9 +60293,9 @@ paths: type: integer workflow_runs: type: array - items: *361 + items: *362 examples: - default: *384 + default: *385 headers: Link: *65 x-github: @@ -60310,9 +60327,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *324 - *325 - - *376 + - *326 + - *377 responses: '200': description: Response @@ -60373,8 +60390,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *324 - *325 + - *326 - *59 - *17 - *45 @@ -60542,8 +60559,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -60580,8 +60597,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *324 - *325 + - *326 - name: assignee in: path required: true @@ -60617,8 +60634,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -60728,8 +60745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *324 - *325 + - *326 - *17 - *45 - *46 @@ -60770,7 +60787,7 @@ paths: initiator: type: string examples: - default: *385 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60790,8 +60807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -60799,7 +60816,7 @@ paths: application/json: schema: type: array - items: &386 + items: &387 title: Autolink reference description: An autolink reference. type: object @@ -60858,8 +60875,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -60898,9 +60915,9 @@ paths: description: response content: application/json: - schema: *386 + schema: *387 examples: - default: &387 + default: &388 value: id: 1 key_prefix: TICKET- @@ -60931,9 +60948,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *324 - *325 - - &388 + - *326 + - &389 name: autolink_id description: The unique identifier of the autolink. in: path @@ -60945,9 +60962,9 @@ paths: description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *387 + default: *388 '404': *6 x-github: githubCloudOnly: false @@ -60967,9 +60984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *324 - *325 - - *388 + - *326 + - *389 responses: '204': description: Response @@ -60993,8 +61010,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response if Dependabot is enabled @@ -61044,8 +61061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -61066,8 +61083,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -61087,8 +61104,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *324 - *325 + - *326 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -61126,7 +61143,7 @@ paths: - url protected: type: boolean - protection: &390 + protection: &391 title: Branch Protection description: Branch Protection type: object @@ -61169,7 +61186,7 @@ paths: required: - contexts - checks - enforce_admins: &393 + enforce_admins: &394 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -61186,7 +61203,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &395 + required_pull_request_reviews: &396 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -61270,7 +61287,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &392 + restrictions: &393 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -61563,9 +61580,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *324 - *325 - - &391 + - *326 + - &392 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -61579,14 +61596,14 @@ paths: description: Response content: application/json: - schema: &401 + schema: &402 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &455 + commit: &456 title: Commit description: Commit type: object @@ -61625,7 +61642,7 @@ paths: author: anyOf: - type: 'null' - - &389 + - &390 title: Git User description: Metaproperties for Git author/committer information. @@ -61647,7 +61664,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 message: type: string examples: @@ -61671,7 +61688,7 @@ paths: required: - sha - url - verification: &505 + verification: &506 title: Verification type: object properties: @@ -61751,7 +61768,7 @@ paths: type: integer files: type: array - items: &466 + items: &467 title: Diff Entry description: Diff Entry type: object @@ -61847,7 +61864,7 @@ paths: - self protected: type: boolean - protection: *390 + protection: *391 protection_url: type: string format: uri @@ -61956,7 +61973,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *328 + '301': *329 '404': *6 x-github: githubCloudOnly: false @@ -61978,15 +61995,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *390 + schema: *391 examples: default: value: @@ -62180,9 +62197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -62442,7 +62459,7 @@ paths: url: type: string format: uri - required_status_checks: &398 + required_status_checks: &399 title: Status Check Policy description: Status Check Policy type: object @@ -62601,7 +62618,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *392 + restrictions: *393 required_conversation_resolution: type: object properties: @@ -62713,9 +62730,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -62740,17 +62757,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &394 + default: &395 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -62772,17 +62789,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *394 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62801,9 +62818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -62828,17 +62845,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: &396 + default: &397 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -62934,9 +62951,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63034,9 +63051,9 @@ paths: description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: *396 + default: *397 '422': *15 x-github: githubCloudOnly: false @@ -63057,9 +63074,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63086,17 +63103,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &397 + default: &398 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -63119,17 +63136,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *397 + default: *398 '404': *6 x-github: githubCloudOnly: false @@ -63149,9 +63166,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63176,17 +63193,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *398 + schema: *399 examples: - default: &399 + default: &400 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -63212,9 +63229,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63266,9 +63283,9 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: - default: *399 + default: *400 '404': *6 '422': *15 x-github: @@ -63290,9 +63307,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63316,9 +63333,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -63352,9 +63369,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63421,9 +63438,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63487,9 +63504,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: content: application/json: @@ -63555,15 +63572,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response content: application/json: - schema: *392 + schema: *393 examples: default: value: @@ -63654,9 +63671,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '204': description: Response @@ -63679,9 +63696,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -63691,7 +63708,7 @@ paths: type: array items: *5 examples: - default: &400 + default: &401 value: - id: 1 slug: octoapp @@ -63748,9 +63765,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -63784,7 +63801,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -63805,9 +63822,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -63841,7 +63858,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -63862,9 +63879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -63898,7 +63915,7 @@ paths: type: array items: *5 examples: - default: *400 + default: *401 '422': *15 x-github: githubCloudOnly: false @@ -63920,9 +63937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -63932,7 +63949,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '404': *6 x-github: githubCloudOnly: false @@ -63952,9 +63969,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -63992,7 +64009,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -64013,9 +64030,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: false content: @@ -64053,7 +64070,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -64074,9 +64091,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: content: application/json: @@ -64113,7 +64130,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 '422': *15 x-github: githubCloudOnly: false @@ -64135,9 +64152,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 responses: '200': description: Response @@ -64171,9 +64188,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64231,9 +64248,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64291,9 +64308,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64353,9 +64370,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 requestBody: required: true content: @@ -64377,7 +64394,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: default: value: @@ -64493,8 +64510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -64773,7 +64790,7 @@ paths: description: Response content: application/json: - schema: &402 + schema: &403 title: CheckRun description: A check performed on the code of a given code change type: object @@ -64909,7 +64926,7 @@ paths: check. type: array items: *84 - deployment: &710 + deployment: &711 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -65196,9 +65213,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *324 - *325 - - &403 + - *326 + - &404 name: check_run_id description: The unique identifier of the check run. in: path @@ -65210,9 +65227,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *403 examples: - default: &404 + default: &405 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -65312,9 +65329,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *324 - *325 - - *403 + - *326 + - *404 requestBody: required: true content: @@ -65554,9 +65571,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *403 examples: - default: *404 + default: *405 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65576,9 +65593,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *324 - *325 - - *403 + - *326 + - *404 - *17 - *19 responses: @@ -65688,9 +65705,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *324 - *325 - - *403 + - *326 + - *404 responses: '201': description: Response @@ -65734,8 +65751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -65757,7 +65774,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &406 + schema: &407 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -65855,7 +65872,7 @@ paths: - string - 'null' format: date-time - head_commit: *405 + head_commit: *406 latest_check_runs_count: type: integer check_runs_url: @@ -65883,7 +65900,7 @@ paths: - check_runs_url - pull_requests examples: - default: &407 + default: &408 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -66174,9 +66191,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *406 + schema: *407 examples: - default: *407 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66195,8 +66212,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -66505,9 +66522,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *324 - *325 - - &408 + - *326 + - &409 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -66519,9 +66536,9 @@ paths: description: Response content: application/json: - schema: *406 + schema: *407 examples: - default: *407 + default: *408 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66544,17 +66561,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *324 - *325 - - *408 - - &461 + - *326 + - *409 + - &462 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &462 + - &463 name: status description: Returns check runs with the specified `status`. in: query @@ -66593,9 +66610,9 @@ paths: type: integer check_runs: type: array - items: *402 + items: *403 examples: - default: &463 + default: &464 value: total_count: 1 check_runs: @@ -66697,9 +66714,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *324 - *325 - - *408 + - *326 + - *409 responses: '201': description: Response @@ -66732,21 +66749,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *324 - *325 - - *409 + - *326 - *410 + - *411 - *19 - *17 - - &427 + - &428 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *411 - - &428 + schema: *412 + - &429 name: pr description: The number of the pull request for the results you want to list. in: query @@ -66771,13 +66788,13 @@ paths: be returned. in: query required: false - schema: *412 + schema: *413 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *413 + schema: *414 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -66801,7 +66818,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: *414 + instances_url: *415 state: *179 fixed_at: *175 dismissed_by: @@ -66809,11 +66826,11 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: *415 - dismissed_comment: *416 - rule: *417 - tool: *418 - most_recent_instance: *419 + dismissed_reason: *416 + dismissed_comment: *417 + rule: *418 + tool: *419 + most_recent_instance: *420 dismissal_approved_by: anyOf: - type: 'null' @@ -66936,7 +66953,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &420 + '403': &421 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -66963,9 +66980,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *324 - *325 - - &421 + - *326 + - &422 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -66979,7 +66996,7 @@ paths: description: Response content: application/json: - schema: &422 + schema: &423 type: object properties: number: *170 @@ -66987,7 +67004,7 @@ paths: updated_at: *172 url: *173 html_url: *174 - instances_url: *414 + instances_url: *415 state: *179 fixed_at: *175 dismissed_by: @@ -66995,8 +67012,8 @@ paths: - type: 'null' - *4 dismissed_at: *176 - dismissed_reason: *415 - dismissed_comment: *416 + dismissed_reason: *416 + dismissed_comment: *417 rule: type: object properties: @@ -67058,8 +67075,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *418 - most_recent_instance: *419 + tool: *419 + most_recent_instance: *420 dismissal_approved_by: anyOf: - type: 'null' @@ -67155,7 +67172,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -67175,9 +67192,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: true content: @@ -67192,8 +67209,8 @@ paths: enum: - open - dismissed - dismissed_reason: *415 - dismissed_comment: *416 + dismissed_reason: *416 + dismissed_comment: *417 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -67221,7 +67238,7 @@ paths: description: Response content: application/json: - schema: *422 + schema: *423 examples: default: value: @@ -67297,7 +67314,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &426 + '403': &427 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -67324,15 +67341,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 responses: '200': description: Response content: application/json: - schema: &423 + schema: &424 type: object properties: status: @@ -67359,13 +67376,13 @@ paths: - description - started_at examples: - default: &424 + default: &425 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &425 + '400': &426 description: Bad Request content: application/json: @@ -67376,7 +67393,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -67401,29 +67418,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 responses: '200': description: OK content: application/json: - schema: *423 + schema: *424 examples: - default: *424 + default: *425 '202': description: Accepted content: application/json: - schema: *423 + schema: *424 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *425 + '400': *426 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -67455,9 +67472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: false content: @@ -67503,8 +67520,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *425 - '403': *426 + '400': *426 + '403': *427 '404': *6 '422': description: Unprocessable Entity @@ -67528,13 +67545,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 - *19 - *17 - - *427 - *428 + - *429 responses: '200': description: Response @@ -67545,10 +67562,10 @@ paths: items: type: object properties: - ref: *411 - analysis_key: *429 - environment: *430 - category: *431 + ref: *412 + analysis_key: *430 + environment: *431 + category: *432 state: type: - string @@ -67565,7 +67582,7 @@ paths: properties: text: type: string - location: *432 + location: *433 html_url: type: string classifications: @@ -67573,7 +67590,7 @@ paths: description: |- Classifications that have been applied to the file that triggered the alert. For example identifying it as documentation, or a generated file. - items: *433 + items: *434 examples: default: value: @@ -67610,7 +67627,7 @@ paths: end_column: 50 classifications: - source - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -67644,25 +67661,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *324 - *325 - - *409 + - *326 - *410 + - *411 - *19 - *17 - - *428 + - *429 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *411 + schema: *412 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &434 + schema: &435 type: string description: An identifier for the upload. examples: @@ -67684,23 +67701,23 @@ paths: application/json: schema: type: array - items: &435 + items: &436 type: object properties: - ref: *411 - commit_sha: &443 + ref: *412 + commit_sha: &444 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *429 + analysis_key: *430 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *431 + category: *432 error: type: string examples: @@ -67725,8 +67742,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *434 - tool: *418 + sarif_id: *435 + tool: *419 deletable: type: boolean warning: @@ -67788,7 +67805,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -67824,8 +67841,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *324 - *325 + - *326 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -67838,7 +67855,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *436 examples: response: summary: application/json response @@ -67892,7 +67909,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *420 + '403': *421 '404': *6 '422': description: Response if analysis could not be processed @@ -67979,8 +67996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *324 - *325 + - *326 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -68036,7 +68053,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *426 + '403': *427 '404': *6 '503': *113 x-github: @@ -68058,8 +68075,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -68067,7 +68084,7 @@ paths: application/json: schema: type: array - items: &436 + items: &437 title: CodeQL Database description: A CodeQL database. type: object @@ -68179,7 +68196,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68208,8 +68225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *324 - *325 + - *326 - name: language in: path description: The language of the CodeQL database. @@ -68221,7 +68238,7 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: default: value: @@ -68253,9 +68270,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &468 + '302': &469 description: Found - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -68277,8 +68294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *324 - *325 + - *326 - name: language in: path description: The language of the CodeQL database. @@ -68288,7 +68305,7 @@ paths: responses: '204': description: Response - '403': *426 + '403': *427 '404': *6 '503': *113 x-github: @@ -68316,8 +68333,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -68326,7 +68343,7 @@ paths: type: object additionalProperties: false properties: - language: &437 + language: &438 type: string description: The language targeted by the CodeQL query enum: @@ -68406,7 +68423,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &441 + schema: &442 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -68416,7 +68433,7 @@ paths: description: The ID of the variant analysis. controller_repo: *64 actor: *4 - query_language: *437 + query_language: *438 query_pack_url: type: string description: The download url for the query pack. @@ -68464,7 +68481,7 @@ paths: items: type: object properties: - repository: &438 + repository: &439 title: Repository Identifier description: Repository Identifier type: object @@ -68506,7 +68523,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &442 + analysis_status: &443 type: string description: The new status of the CodeQL variant analysis repository task. @@ -68538,7 +68555,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &439 + access_mismatch_repos: &440 type: object properties: repository_count: @@ -68553,7 +68570,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *438 + items: *439 required: - repository_count - repositories @@ -68576,8 +68593,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *439 - over_limit_repos: *439 + no_codeql_db_repos: *440 + over_limit_repos: *440 required: - access_mismatch_repos - not_found_repos @@ -68593,7 +68610,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &440 + value: &441 summary: Default response value: id: 1 @@ -68739,10 +68756,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *440 + value: *441 repository_lists: summary: Response for a successful variant analysis submission - value: *440 + value: *441 '404': *6 '422': description: Unable to process variant analysis submission @@ -68770,8 +68787,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *324 - *325 + - *326 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -68783,9 +68800,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *442 examples: - default: *440 + default: *441 '404': *6 '503': *113 x-github: @@ -68808,7 +68825,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *324 + - *325 - name: repo in: path description: The name of the controller repository. @@ -68843,7 +68860,7 @@ paths: type: object properties: repository: *64 - analysis_status: *442 + analysis_status: *443 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -68968,8 +68985,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -69060,7 +69077,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *420 + '403': *421 '404': *6 '503': *113 x-github: @@ -69081,8 +69098,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -69176,7 +69193,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *426 + '403': *427 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -69247,8 +69264,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -69256,7 +69273,7 @@ paths: schema: type: object properties: - commit_sha: *443 + commit_sha: *444 ref: type: string description: |- @@ -69316,7 +69333,7 @@ paths: schema: type: object properties: - id: *434 + id: *435 url: type: string description: The REST API URL for checking the status of the upload. @@ -69330,7 +69347,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *426 + '403': *427 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -69353,8 +69370,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *324 - *325 + - *326 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -69402,7 +69419,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *420 + '403': *421 '404': description: Not Found if the sarif id does not match any upload '503': *113 @@ -69427,8 +69444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -69509,8 +69526,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *324 - *325 + - *326 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -69638,8 +69655,8 @@ paths: parameters: - *17 - *19 - - *324 - *325 + - *326 responses: '200': description: Response @@ -69655,7 +69672,7 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: default: value: @@ -69953,8 +69970,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -70018,17 +70035,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '400': *14 '401': *23 '403': *27 @@ -70057,8 +70074,8 @@ paths: parameters: - *17 - *19 - - *324 - *325 + - *326 responses: '200': description: Response @@ -70122,8 +70139,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *324 - *325 + - *326 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -70160,9 +70177,9 @@ paths: type: integer machines: type: array - items: *445 + items: *446 examples: - default: &653 + default: &654 value: total_count: 2 machines: @@ -70202,8 +70219,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *324 - *325 + - *326 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -70290,8 +70307,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *324 - *325 + - *326 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -70360,8 +70377,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -70379,7 +70396,7 @@ paths: type: integer secrets: type: array - items: &449 + items: &450 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -70400,7 +70417,7 @@ paths: - created_at - updated_at examples: - default: *446 + default: *447 headers: Link: *65 x-github: @@ -70423,16 +70440,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *447 + schema: *448 examples: - default: *448 + default: *449 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -70452,17 +70469,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *449 + schema: *450 examples: - default: *450 + default: *451 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70482,8 +70499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -70536,8 +70553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -70566,8 +70583,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *324 - *325 + - *326 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -70605,7 +70622,7 @@ paths: application/json: schema: type: array - items: &451 + items: &452 title: Collaborator description: Collaborator type: object @@ -70798,8 +70815,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 responses: '204': @@ -70846,8 +70863,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 requestBody: required: false @@ -70874,7 +70891,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &518 + schema: &519 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -71102,8 +71119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *324 - *325 + - *326 - *69 responses: '204': @@ -71135,8 +71152,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *324 - *325 + - *326 - *69 responses: '200': @@ -71157,7 +71174,7 @@ paths: user: anyOf: - type: 'null' - - *451 + - *452 required: - permission - role_name @@ -71211,8 +71228,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -71222,7 +71239,7 @@ paths: application/json: schema: type: array - items: &452 + items: &453 title: Commit Comment description: Commit Comment type: object @@ -71280,7 +71297,7 @@ paths: - created_at - updated_at examples: - default: &457 + default: &458 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -71339,17 +71356,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: &458 + default: &459 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -71406,8 +71423,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -71430,7 +71447,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: default: value: @@ -71481,8 +71498,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -71504,8 +71521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -71532,7 +71549,7 @@ paths: application/json: schema: type: array - items: &453 + items: &454 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -71576,7 +71593,7 @@ paths: - content - created_at examples: - default: &521 + default: &522 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -71621,8 +71638,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -71655,9 +71672,9 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: &454 + default: &455 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -71686,9 +71703,9 @@ paths: description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -71710,10 +71727,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - &522 + - &523 name: reaction_id description: The unique identifier of the reaction. in: path @@ -71768,8 +71785,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *324 - *325 + - *326 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -71825,9 +71842,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: &568 + default: &569 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -71921,9 +71938,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *324 - *325 - - &456 + - *326 + - &457 name: commit_sha description: The SHA of the commit. in: path @@ -71995,9 +72012,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *324 - *325 - - *456 + - *326 + - *457 - *17 - *19 responses: @@ -72007,9 +72024,9 @@ paths: application/json: schema: type: array - items: *452 + items: *453 examples: - default: *457 + default: *458 headers: Link: *65 x-github: @@ -72037,9 +72054,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *324 - *325 - - *456 + - *326 + - *457 requestBody: required: true content: @@ -72074,9 +72091,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: *458 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -72104,9 +72121,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *324 - *325 - - *456 + - *326 + - *457 - *17 - *19 responses: @@ -72116,9 +72133,9 @@ paths: application/json: schema: type: array - items: *459 + items: *460 examples: - default: &560 + default: &561 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -72655,11 +72672,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *324 - *325 + - *326 - *19 - *17 - - &460 + - &461 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -72674,9 +72691,9 @@ paths: description: Response content: application/json: - schema: *455 + schema: *456 examples: - default: &548 + default: &549 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -72789,11 +72806,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *324 - *325 - - *460 + - *326 - *461 - *462 + - *463 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -72827,9 +72844,9 @@ paths: type: integer check_runs: type: array - items: *402 + items: *403 examples: - default: *463 + default: *464 headers: Link: *65 x-github: @@ -72854,9 +72871,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -72864,7 +72881,7 @@ paths: schema: type: integer example: 1 - - *461 + - *462 - *17 - *19 responses: @@ -72882,7 +72899,7 @@ paths: type: integer check_suites: type: array - items: *406 + items: *407 examples: default: value: @@ -73082,9 +73099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - *17 - *19 responses: @@ -73286,9 +73303,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *324 - *325 - - *460 + - *326 + - *461 - *17 - *19 responses: @@ -73298,7 +73315,7 @@ paths: application/json: schema: type: array - items: &633 + items: &634 title: Status description: The status of a commit. type: object @@ -73379,7 +73396,7 @@ paths: site_admin: false headers: Link: *65 - '301': *328 + '301': *329 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73407,8 +73424,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -73441,11 +73458,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *464 + - *465 code_of_conduct_file: anyOf: - type: 'null' - - &465 + - &466 title: Community Health File type: object properties: @@ -73465,19 +73482,19 @@ paths: contributing: anyOf: - type: 'null' - - *465 + - *466 readme: anyOf: - type: 'null' - - *465 + - *466 issue_template: anyOf: - type: 'null' - - *465 + - *466 pull_request_template: anyOf: - type: 'null' - - *465 + - *466 required: - code_of_conduct - code_of_conduct_file @@ -73606,8 +73623,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *324 - *325 + - *326 - *19 - *17 - name: basehead @@ -73655,8 +73672,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *455 - merge_base_commit: *455 + base_commit: *456 + merge_base_commit: *456 status: type: string enum: @@ -73680,10 +73697,10 @@ paths: - 6 commits: type: array - items: *455 + items: *456 files: type: array - items: *466 + items: *467 required: - url - html_url @@ -73969,8 +73986,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -74140,7 +74157,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &467 + response-if-content-is-a-file-github-object: &468 summary: Response if content is a file value: type: file @@ -74277,7 +74294,7 @@ paths: - size - type - url - - &573 + - &574 title: Content File description: Content File type: object @@ -74495,7 +74512,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *467 + response-if-content-is-a-file: *468 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -74564,7 +74581,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *468 + '302': *469 '304': *35 x-github: githubCloudOnly: false @@ -74587,8 +74604,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -74683,7 +74700,7 @@ paths: description: Response content: application/json: - schema: &469 + schema: &470 title: File Commit description: File Commit type: object @@ -74839,7 +74856,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *470 examples: example-for-creating-a-file: value: @@ -74893,7 +74910,7 @@ paths: schema: oneOf: - *3 - - &500 + - &501 description: Repository rule violation was detected type: object properties: @@ -74914,7 +74931,7 @@ paths: items: type: object properties: - placeholder_id: &625 + placeholder_id: &626 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -74946,8 +74963,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *324 - *325 + - *326 - name: path description: path parameter in: path @@ -75008,7 +75025,7 @@ paths: description: Response content: application/json: - schema: *469 + schema: *470 examples: default: value: @@ -75063,8 +75080,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *324 - *325 + - *326 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -75188,23 +75205,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *324 - *325 + - *326 - *189 - *190 - *191 - *192 + - *193 - name: manifest in: query description: A comma-separated list of full manifest paths. If specified, only alerts for these manifests will be returned. schema: type: string - - *193 - - *470 - *194 + - *471 - *195 - *196 + - *197 - *59 - *45 - *46 @@ -75216,7 +75234,7 @@ paths: application/json: schema: type: array - items: &474 + items: &475 type: object description: A Dependabot alert. properties: @@ -75267,7 +75285,7 @@ paths: - transitive - inconclusive - - security_advisory: *471 + security_advisory: *472 security_vulnerability: *63 url: *173 html_url: *174 @@ -75298,8 +75316,8 @@ paths: dismissal. maxLength: 280 fixed_at: *175 - auto_dismissed_at: *472 - dismissal_request: *473 + auto_dismissed_at: *473 + dismissal_request: *474 assignees: type: array description: The users assigned to this alert. @@ -75554,9 +75572,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *324 - *325 - - &475 + - *326 + - &476 name: alert_number in: path description: |- @@ -75571,7 +75589,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: default: value: @@ -75703,9 +75721,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *324 - *325 - - *475 + - *326 + - *476 requestBody: required: true content: @@ -75761,7 +75779,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: default: value: @@ -75891,8 +75909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -75910,7 +75928,7 @@ paths: type: integer secrets: type: array - items: &478 + items: &479 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -75964,16 +75982,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: *477 + default: *478 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75993,15 +76011,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '200': description: Response content: application/json: - schema: *478 + schema: *479 examples: default: value: @@ -76027,8 +76045,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 requestBody: required: true @@ -76081,8 +76099,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *324 - *325 + - *326 - *160 responses: '204': @@ -76105,8 +76123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *324 - *325 + - *326 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -76280,8 +76298,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -76541,8 +76559,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -76625,7 +76643,7 @@ paths: - version - url additionalProperties: false - metadata: &479 + metadata: &480 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -76664,7 +76682,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *479 + metadata: *480 resolved: type: object description: A collection of resolved package dependencies. @@ -76678,7 +76696,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *479 + metadata: *480 relationship: type: string description: A notation of whether a dependency is requested @@ -76811,8 +76829,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *324 - *325 + - *326 - name: sha description: The SHA recorded at creation time. in: query @@ -76853,9 +76871,9 @@ paths: application/json: schema: type: array - items: *480 + items: *481 examples: - default: *481 + default: *482 headers: Link: *65 x-github: @@ -76921,8 +76939,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -77004,7 +77022,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: simple-example: summary: Simple example @@ -77077,9 +77095,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *324 - *325 - - &482 + - *326 + - &483 name: deployment_id description: deployment_id parameter in: path @@ -77091,7 +77109,7 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: default: value: @@ -77156,9 +77174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *324 - *325 - - *482 + - *326 + - *483 responses: '204': description: Response @@ -77180,9 +77198,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *324 - *325 - - *482 + - *326 + - *483 - *17 - *19 responses: @@ -77192,7 +77210,7 @@ paths: application/json: schema: type: array - items: &483 + items: &484 title: Deployment Status description: The status of a deployment. type: object @@ -77356,9 +77374,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *324 - *325 - - *482 + - *326 + - *483 requestBody: required: true content: @@ -77433,9 +77451,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: - default: &484 + default: &485 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -77491,9 +77509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *324 - *325 - - *482 + - *326 + - *483 - name: status_id in: path required: true @@ -77504,9 +77522,9 @@ paths: description: Response content: application/json: - schema: *483 + schema: *484 examples: - default: *484 + default: *485 '404': *6 x-github: githubCloudOnly: false @@ -77531,8 +77549,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -77589,8 +77607,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -77608,7 +77626,7 @@ paths: - 5 environments: type: array - items: &486 + items: &487 title: Environment description: Details of a deployment environment type: object @@ -77670,7 +77688,7 @@ paths: type: string examples: - wait_timer - wait_timer: &488 + wait_timer: &489 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -77712,7 +77730,7 @@ paths: items: type: object properties: - type: *485 + type: *486 reviewer: anyOf: - *4 @@ -77739,7 +77757,7 @@ paths: - id - node_id - type - deployment_branch_policy: &489 + deployment_branch_policy: &490 type: - object - 'null' @@ -77856,9 +77874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *324 - *325 - - &487 + - *326 + - &488 name: environment_name in: path required: true @@ -77871,9 +77889,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: &490 + default: &491 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -77957,9 +77975,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: false content: @@ -77969,7 +77987,7 @@ paths: - object - 'null' properties: - wait_timer: *488 + wait_timer: *489 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -77988,14 +78006,14 @@ paths: items: type: object properties: - type: *485 + type: *486 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *489 + deployment_branch_policy: *490 additionalProperties: false examples: default: @@ -78015,9 +78033,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: *490 + default: *491 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -78041,9 +78059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *324 - *325 - - *487 + - *326 + - *488 responses: '204': description: Default response @@ -78068,9 +78086,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *17 - *19 responses: @@ -78089,7 +78107,7 @@ paths: - 2 branch_policies: type: array - items: &491 + items: &492 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -78150,9 +78168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: true content: @@ -78200,9 +78218,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - example-wildcard: &492 + example-wildcard: &493 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -78244,10 +78262,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - &493 + - *326 + - *488 + - &494 name: branch_policy_id in: path required: true @@ -78259,9 +78277,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78280,10 +78298,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - *493 + - *326 + - *488 + - *494 requestBody: required: true content: @@ -78312,9 +78330,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78333,10 +78351,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *324 - *325 - - *487 - - *493 + - *326 + - *488 + - *494 responses: '204': description: Response @@ -78361,9 +78379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 responses: '200': description: List of deployment protection rules @@ -78380,7 +78398,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &494 + items: &495 title: Deployment protection rule description: Deployment protection rule type: object @@ -78402,7 +78420,7 @@ paths: for the environment. examples: - true - app: &495 + app: &496 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -78505,9 +78523,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 requestBody: content: application/json: @@ -78528,9 +78546,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *494 + schema: *495 examples: - default: &496 + default: &497 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -78565,9 +78583,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 - *19 - *17 responses: @@ -78587,7 +78605,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *495 + items: *496 examples: default: value: @@ -78622,10 +78640,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *324 - *325 - - *487 - - &497 + - *326 + - *488 + - &498 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -78637,9 +78655,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: - default: *496 + default: *497 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78660,10 +78678,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *487 + - *488 + - *326 - *325 - - *324 - - *497 + - *498 responses: '204': description: Response @@ -78689,9 +78707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *17 - *19 responses: @@ -78709,9 +78727,9 @@ paths: type: integer secrets: type: array - items: *369 + items: *370 examples: - default: *370 + default: *371 headers: Link: *65 x-github: @@ -78736,17 +78754,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *324 - *325 - - *487 + - *326 + - *488 responses: '200': description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *372 + default: *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78768,18 +78786,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 responses: '200': description: Response content: application/json: - schema: *369 + schema: *370 examples: - default: *498 + default: *499 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78801,9 +78819,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 requestBody: required: true @@ -78861,9 +78879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *160 responses: '204': @@ -78889,10 +78907,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *324 - *325 - - *487 - - *340 + - *326 + - *488 + - *341 - *19 responses: '200': @@ -78909,9 +78927,9 @@ paths: type: integer variables: type: array - items: *373 + items: *374 examples: - default: *374 + default: *375 headers: Link: *65 x-github: @@ -78934,9 +78952,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *324 - *325 - - *487 + - *326 + - *488 requestBody: required: true content: @@ -78988,18 +79006,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *324 - *325 - - *487 + - *326 + - *488 - *163 responses: '200': description: Response content: application/json: - schema: *373 + schema: *374 examples: - default: *499 + default: *500 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79020,10 +79038,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *324 - *325 + - *326 - *163 - - *487 + - *488 requestBody: required: true content: @@ -79065,10 +79083,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *324 - *325 + - *326 - *163 - - *487 + - *488 responses: '204': description: Response @@ -79090,8 +79108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -79159,8 +79177,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *324 - *325 + - *326 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -79319,8 +79337,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -79353,9 +79371,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 '400': *14 '422': *15 '403': *27 @@ -79376,8 +79394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -79437,7 +79455,7 @@ paths: schema: oneOf: - *121 - - *500 + - *501 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79462,8 +79480,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *324 - *325 + - *326 - name: file_sha in: path required: true @@ -79563,8 +79581,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -79673,7 +79691,7 @@ paths: description: Response content: application/json: - schema: &501 + schema: &502 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -79900,15 +79918,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *324 - *325 - - *456 + - *326 + - *457 responses: '200': description: Response content: application/json: - schema: *501 + schema: *502 examples: default: value: @@ -79964,9 +79982,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *324 - *325 - - &502 + - *326 + - &503 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -79983,7 +80001,7 @@ paths: application/json: schema: type: array - items: &503 + items: &504 title: Git Reference description: Git references within a repository type: object @@ -80059,17 +80077,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 responses: '200': description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: &504 + default: &505 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -80098,8 +80116,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80128,9 +80146,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -80156,9 +80174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 requestBody: required: true content: @@ -80187,9 +80205,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 '422': *15 '409': *52 x-github: @@ -80207,9 +80225,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *324 - *325 - - *502 + - *326 + - *503 responses: '204': description: Response @@ -80264,8 +80282,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80332,7 +80350,7 @@ paths: description: Response content: application/json: - schema: &506 + schema: &507 title: Git Tag description: Metadata for a Git tag type: object @@ -80388,7 +80406,7 @@ paths: - sha - type - url - verification: *505 + verification: *506 required: - sha - url @@ -80398,7 +80416,7 @@ paths: - tag - message examples: - default: &507 + default: &508 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -80471,8 +80489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *324 - *325 + - *326 - name: tag_sha in: path required: true @@ -80483,9 +80501,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *507 + default: *508 '404': *6 '409': *52 x-github: @@ -80509,8 +80527,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -80584,7 +80602,7 @@ paths: description: Response content: application/json: - schema: &508 + schema: &509 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -80686,8 +80704,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *324 - *325 + - *326 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -80710,7 +80728,7 @@ paths: description: Response content: application/json: - schema: *508 + schema: *509 examples: default-response: summary: Default response @@ -80769,8 +80787,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -80780,7 +80798,7 @@ paths: application/json: schema: type: array - items: &509 + items: &510 title: Webhook description: Webhooks for repositories. type: object @@ -80843,7 +80861,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &741 + last_response: &742 title: Hook Response type: object properties: @@ -80920,8 +80938,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -80974,9 +80992,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: &510 + default: &511 value: type: Repository id: 12345678 @@ -81024,17 +81042,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '200': description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '404': *6 x-github: githubCloudOnly: false @@ -81054,9 +81072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 requestBody: required: true content: @@ -81101,9 +81119,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 + default: *511 '422': *15 '404': *6 x-github: @@ -81124,9 +81142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -81150,9 +81168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '200': description: Response @@ -81179,9 +81197,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *324 - *325 - - *202 + - *326 + - *203 requestBody: required: false content: @@ -81225,12 +81243,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *324 - *325 - - *202 - - *17 + - *326 - *203 + - *17 - *204 + - *205 responses: '200': description: Response @@ -81238,9 +81256,9 @@ paths: application/json: schema: type: array - items: *205 + items: *206 examples: - default: *206 + default: *207 '400': *14 '422': *15 x-github: @@ -81259,18 +81277,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 - *16 responses: '200': description: Response content: application/json: - schema: *207 + schema: *208 examples: - default: *208 + default: *209 '400': *14 '422': *15 x-github: @@ -81289,9 +81307,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 - *16 responses: '202': *37 @@ -81314,9 +81332,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -81341,9 +81359,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *324 - *325 - - *202 + - *326 + - *203 responses: '204': description: Response @@ -81366,8 +81384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response if immutable releases are enabled @@ -81415,8 +81433,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *324 - *325 + - *326 responses: '204': *183 '409': *52 @@ -81436,8 +81454,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *324 - *325 + - *326 responses: '204': *183 '409': *52 @@ -81494,14 +81512,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &511 + schema: &512 title: Import description: A repository import from an external source. type: object @@ -81608,7 +81626,7 @@ paths: - html_url - authors_url examples: - default: &514 + default: &515 value: vcs: subversion use_lfs: true @@ -81624,7 +81642,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &512 + '503': &513 description: Unavailable due to service under maintenance. content: application/json: @@ -81653,8 +81671,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -81702,7 +81720,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: default: value: @@ -81727,7 +81745,7 @@ paths: type: string '422': *15 '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81755,8 +81773,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -81808,7 +81826,7 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: example-1: summary: Example 1 @@ -81856,7 +81874,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81879,12 +81897,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *324 - *325 + - *326 responses: '204': description: Response - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81910,9 +81928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *324 - *325 - - &675 + - *326 + - &676 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -81926,7 +81944,7 @@ paths: application/json: schema: type: array - items: &513 + items: &514 title: Porter Author description: Porter Author type: object @@ -81980,7 +81998,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82005,8 +82023,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *324 - *325 + - *326 - name: author_id in: path required: true @@ -82036,7 +82054,7 @@ paths: description: Response content: application/json: - schema: *513 + schema: *514 examples: default: value: @@ -82049,7 +82067,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82073,8 +82091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -82115,7 +82133,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82143,8 +82161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -82171,11 +82189,11 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *514 + default: *515 '422': *15 - '503': *512 + '503': *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82198,8 +82216,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -82207,8 +82225,8 @@ paths: application/json: schema: *20 examples: - default: *515 - '301': *328 + default: *516 + '301': *329 '404': *6 x-github: githubCloudOnly: false @@ -82228,8 +82246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -82237,12 +82255,12 @@ paths: application/json: schema: anyOf: - - *221 + - *222 - type: object properties: {} additionalProperties: false examples: - default: &517 + default: &518 value: limit: collaborators_only origin: repository @@ -82267,13 +82285,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: application/json: - schema: *516 + schema: *517 examples: default: summary: Example request body @@ -82285,9 +82303,9 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: - default: *517 + default: *518 '409': description: Response x-github: @@ -82309,8 +82327,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -82333,8 +82351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -82344,9 +82362,9 @@ paths: application/json: schema: type: array - items: *518 + items: *519 examples: - default: &667 + default: &668 value: - id: 1 repository: @@ -82477,9 +82495,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *324 - *325 - - *225 + - *326 + - *226 requestBody: required: false content: @@ -82508,7 +82526,7 @@ paths: description: Response content: application/json: - schema: *518 + schema: *519 examples: default: value: @@ -82639,9 +82657,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *324 - *325 - - *225 + - *326 + - *226 responses: '204': description: Response @@ -82672,8 +82690,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *324 - *325 + - *326 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -82721,7 +82739,7 @@ paths: required: false schema: type: string - - *232 + - *233 - name: sort description: What to sort results by. in: query @@ -82746,7 +82764,7 @@ paths: type: array items: *81 examples: - default: &527 + default: &528 value: - id: 1 node_id: MDU6SXNzdWUx @@ -82895,7 +82913,7 @@ paths: state_reason: completed headers: Link: *65 - '301': *328 + '301': *329 '422': *15 '404': *6 x-github: @@ -82924,8 +82942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -83009,7 +83027,7 @@ paths: application/json: schema: *81 examples: - default: &524 + default: &525 value: id: 1 node_id: MDU6SXNzdWUx @@ -83166,7 +83184,7 @@ paths: '422': *15 '503': *113 '404': *6 - '410': *519 + '410': *520 x-github: triggersNotification: true githubCloudOnly: false @@ -83194,8 +83212,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *324 - *325 + - *326 - *103 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -83218,7 +83236,7 @@ paths: type: array items: *82 examples: - default: &526 + default: &527 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -83276,8 +83294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': @@ -83286,7 +83304,7 @@ paths: application/json: schema: *82 examples: - default: &520 + default: &521 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -83341,8 +83359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -83367,7 +83385,7 @@ paths: application/json: schema: *82 examples: - default: *520 + default: *521 '422': *15 x-github: githubCloudOnly: false @@ -83385,8 +83403,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -83415,8 +83433,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '200': @@ -83479,7 +83497,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -83496,8 +83514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -83505,7 +83523,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 '503': *113 x-github: githubCloudOnly: false @@ -83523,8 +83541,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -83551,9 +83569,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -83574,8 +83592,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -83608,16 +83626,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -83639,10 +83657,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - *522 + - *523 responses: '204': description: Response @@ -83662,8 +83680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -83673,7 +83691,7 @@ paths: application/json: schema: type: array - items: &523 + items: &524 title: Issue Event description: Issue Event type: object @@ -84013,8 +84031,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *324 - *325 + - *326 - name: event_id in: path required: true @@ -84025,7 +84043,7 @@ paths: description: Response content: application/json: - schema: *523 + schema: *524 examples: default: value: @@ -84218,7 +84236,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *519 + '410': *520 '403': *27 x-github: githubCloudOnly: false @@ -84252,9 +84270,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *324 - *325 - - &525 + - *326 + - &526 name: issue_number description: The number that identifies the issue. in: path @@ -84270,7 +84288,7 @@ paths: examples: default: summary: Issue - value: *524 + value: *525 pinned_comment: summary: Issue with pinned comment value: @@ -84469,9 +84487,9 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 '304': *35 x-github: githubCloudOnly: false @@ -84496,9 +84514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -84633,13 +84651,13 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 '422': *15 '503': *113 '403': *27 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84657,9 +84675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -84687,7 +84705,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84703,9 +84721,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: content: application/json: @@ -84732,7 +84750,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84754,9 +84772,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: assignee in: path required: true @@ -84796,9 +84814,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *86 - *17 - *19 @@ -84811,11 +84829,11 @@ paths: type: array items: *82 examples: - default: *526 + default: *527 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84844,9 +84862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -84870,14 +84888,14 @@ paths: application/json: schema: *82 examples: - default: *520 + default: *521 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -84905,9 +84923,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -84919,12 +84937,12 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84952,9 +84970,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -84978,15 +84996,15 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *328 + '301': *329 '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -85017,9 +85035,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -85033,13 +85051,13 @@ paths: application/json: schema: *81 examples: - default: *524 - '301': *328 + default: *525 + '301': *329 '400': *14 '401': *23 '403': *27 '404': *6 - '410': *519 + '410': *520 x-github: triggersNotification: true githubCloudOnly: false @@ -85065,9 +85083,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85079,12 +85097,12 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85101,9 +85119,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85117,7 +85135,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &530 + - &531 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -85166,7 +85184,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &531 + - &532 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -85294,7 +85312,7 @@ paths: - performed_via_github_app - assignee - assigner - - &532 + - &533 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -85340,7 +85358,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &533 + - &534 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -85386,7 +85404,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &534 + - &535 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -85435,7 +85453,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &535 + - &536 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -85477,7 +85495,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &536 + - &537 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -85519,7 +85537,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &537 + - &538 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -85575,7 +85593,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &538 + - &539 title: Locked Issue Event description: Locked Issue Event type: object @@ -85620,7 +85638,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &539 + - &540 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -85681,7 +85699,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &540 + - &541 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -85742,7 +85760,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &541 + - &542 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -85803,7 +85821,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &542 + - &543 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -85896,7 +85914,7 @@ paths: color: red headers: Link: *65 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85913,9 +85931,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85925,9 +85943,9 @@ paths: application/json: schema: type: array - items: *528 + items: *529 examples: - default: &639 + default: &640 value: - issue_field_id: 1 node_id: IFT_GDKND @@ -85951,9 +85969,9 @@ paths: value: '2025-12-25' headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85970,9 +85988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -85984,7 +86002,7 @@ paths: type: array items: *80 examples: - default: &529 + default: &530 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -86002,9 +86020,9 @@ paths: default: false headers: Link: *65 - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86020,9 +86038,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -86067,10 +86085,10 @@ paths: type: array items: *80 examples: - default: *529 - '301': *328 + default: *530 + '301': *329 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -86087,9 +86105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -86151,10 +86169,10 @@ paths: type: array items: *80 examples: - default: *529 - '301': *328 + default: *530 + '301': *329 '404': *6 - '410': *519 + '410': *520 '422': *15 x-github: githubCloudOnly: false @@ -86171,15 +86189,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '204': description: Response - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86198,9 +86216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: name in: path required: true @@ -86224,9 +86242,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *328 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86246,9 +86264,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: false content: @@ -86277,7 +86295,7 @@ paths: '204': description: Response '403': *27 - '410': *519 + '410': *520 '404': *6 '422': *15 x-github: @@ -86295,9 +86313,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '204': description: Response @@ -86327,9 +86345,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 responses: '200': description: Response @@ -86337,10 +86355,10 @@ paths: application/json: schema: *81 examples: - default: *524 - '301': *328 + default: *525 + '301': *329 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86357,9 +86375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -86385,13 +86403,13 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86409,9 +86427,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86443,16 +86461,16 @@ paths: description: Response content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Response content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -86474,10 +86492,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *324 - *325 - - *525 - - *522 + - *326 + - *526 + - *523 responses: '204': description: Response @@ -86506,9 +86524,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86532,7 +86550,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -86565,9 +86583,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -86579,11 +86597,11 @@ paths: type: array items: *81 examples: - default: *527 + default: *528 headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86611,9 +86629,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86642,14 +86660,14 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *519 + '410': *520 '422': *15 '404': *6 x-github: @@ -86669,9 +86687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 requestBody: required: true content: @@ -86704,7 +86722,7 @@ paths: application/json: schema: *81 examples: - default: *524 + default: *525 '403': *27 '404': *6 '422': *7 @@ -86726,9 +86744,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *324 - *325 - - *525 + - *326 + - *526 - *17 - *19 responses: @@ -86743,7 +86761,6 @@ paths: description: Timeline Event type: object anyOf: - - *530 - *531 - *532 - *533 @@ -86756,6 +86773,7 @@ paths: - *540 - *541 - *542 + - *543 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -86812,7 +86830,7 @@ paths: pin: anyOf: - type: 'null' - - *543 + - *544 required: - event - actor @@ -87088,7 +87106,7 @@ paths: type: string comments: type: array - items: &562 + items: &563 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -87329,7 +87347,7 @@ paths: type: string comments: type: array - items: *452 + items: *453 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -87604,7 +87622,7 @@ paths: headers: Link: *65 '404': *6 - '410': *519 + '410': *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87621,8 +87639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -87632,7 +87650,7 @@ paths: application/json: schema: type: array - items: &544 + items: &545 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -87700,8 +87718,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -87737,9 +87755,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: &545 + default: &546 value: id: 1 key: ssh-rsa AAA... @@ -87773,9 +87791,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *324 - *325 - - &546 + - *326 + - &547 name: key_id description: The unique identifier of the key. in: path @@ -87787,9 +87805,9 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: *545 + default: *546 '404': *6 x-github: githubCloudOnly: false @@ -87807,9 +87825,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *324 - *325 - - *546 + - *326 + - *547 responses: '204': description: Response @@ -87829,8 +87847,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -87842,7 +87860,7 @@ paths: type: array items: *80 examples: - default: *529 + default: *530 headers: Link: *65 '404': *6 @@ -87863,8 +87881,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -87902,7 +87920,7 @@ paths: application/json: schema: *80 examples: - default: &547 + default: &548 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -87934,8 +87952,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -87948,7 +87966,7 @@ paths: application/json: schema: *80 examples: - default: *547 + default: *548 '404': *6 x-github: githubCloudOnly: false @@ -87965,8 +87983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -88031,8 +88049,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *324 - *325 + - *326 - name: name in: path required: true @@ -88058,8 +88076,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -88098,9 +88116,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *324 - *325 - - *427 + - *326 + - *428 responses: '200': description: Response @@ -88247,8 +88265,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88313,8 +88331,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88348,9 +88366,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *455 + schema: *456 examples: - default: *548 + default: *549 '204': description: Response when already merged '404': @@ -88375,8 +88393,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *324 - *325 + - *326 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -88417,7 +88435,7 @@ paths: application/json: schema: type: array - items: *265 + items: *266 examples: default: value: @@ -88473,8 +88491,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -88514,9 +88532,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: &549 + default: &550 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -88575,9 +88593,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *324 - *325 - - &550 + - *326 + - &551 name: milestone_number description: The number that identifies the milestone. in: path @@ -88589,9 +88607,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *549 + default: *550 '404': *6 x-github: githubCloudOnly: false @@ -88608,9 +88626,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 requestBody: required: false content: @@ -88648,9 +88666,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *266 examples: - default: *549 + default: *550 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -88666,9 +88684,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 responses: '204': description: Response @@ -88689,9 +88707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *324 - *325 - - *550 + - *326 + - *551 - *17 - *19 responses: @@ -88703,7 +88721,7 @@ paths: type: array items: *80 examples: - default: *529 + default: *530 headers: Link: *65 x-github: @@ -88722,12 +88740,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *324 - *325 - - *551 + - *326 - *552 - - *86 - *553 + - *86 + - *554 - *17 - *19 responses: @@ -88739,7 +88757,7 @@ paths: type: array items: *106 examples: - default: *554 + default: *555 headers: Link: *65 x-github: @@ -88763,8 +88781,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -88822,14 +88840,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: &555 + schema: &556 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -88973,7 +88991,7 @@ paths: - custom_404 - public examples: - default: &556 + default: &557 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -89014,8 +89032,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89070,9 +89088,9 @@ paths: description: Response content: application/json: - schema: *555 + schema: *556 examples: - default: *556 + default: *557 '422': *15 '409': *52 x-github: @@ -89095,8 +89113,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89196,8 +89214,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -89223,8 +89241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -89234,7 +89252,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: Page Build description: Page Build type: object @@ -89326,8 +89344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *324 - *325 + - *326 responses: '201': description: Response @@ -89374,16 +89392,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: &558 + default: &559 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -89431,8 +89449,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *324 - *325 + - *326 - name: build_id in: path required: true @@ -89443,9 +89461,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89465,8 +89483,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -89574,9 +89592,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *324 - *325 - - &559 + - *326 + - &560 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -89634,9 +89652,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *324 - *325 - - *559 + - *326 + - *560 responses: '204': *183 '404': *6 @@ -89663,8 +89681,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -89959,8 +89977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Private vulnerability reporting status @@ -89997,8 +90015,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': *183 '422': *14 @@ -90019,8 +90037,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': *183 '422': *14 @@ -90042,8 +90060,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -90051,7 +90069,7 @@ paths: application/json: schema: type: array - items: *279 + items: *280 examples: default: value: @@ -90082,8 +90100,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90095,7 +90113,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *279 + items: *280 required: - properties examples: @@ -90145,8 +90163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *324 - *325 + - *326 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -90206,9 +90224,9 @@ paths: application/json: schema: type: array - items: *459 + items: *460 examples: - default: *560 + default: *561 headers: Link: *65 '304': *35 @@ -90240,8 +90258,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -90308,7 +90326,7 @@ paths: description: Response content: application/json: - schema: &564 + schema: &565 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -90437,7 +90455,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 active_lock_reason: type: - string @@ -90476,7 +90494,7 @@ paths: items: *4 requested_teams: type: array - items: *244 + items: *245 head: type: object properties: @@ -90514,14 +90532,14 @@ paths: _links: type: object properties: - comments: *266 - commits: *266 - statuses: *266 - html: *266 - issue: *266 - review_comments: *266 - review_comment: *266 - self: *266 + comments: *267 + commits: *267 + statuses: *267 + html: *267 + issue: *267 + review_comments: *267 + review_comment: *267 + self: *267 required: - comments - commits @@ -90532,7 +90550,7 @@ paths: - review_comment - self author_association: *78 - auto_merge: *561 + auto_merge: *562 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -90632,7 +90650,7 @@ paths: - merged_by - review_comments examples: - default: &565 + default: &566 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -91159,8 +91177,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *324 - *325 + - *326 - name: sort in: query required: false @@ -91189,9 +91207,9 @@ paths: application/json: schema: type: array - items: *562 + items: *563 examples: - default: &567 + default: &568 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -91268,17 +91286,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 responses: '200': description: Response content: application/json: - schema: *562 + schema: *563 examples: - default: &563 + default: &564 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -91353,8 +91371,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -91377,9 +91395,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: - default: *563 + default: *564 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91395,8 +91413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *324 - *325 + - *326 - *95 responses: '204': @@ -91418,8 +91436,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *324 - *325 + - *326 - *95 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -91446,9 +91464,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -91469,8 +91487,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *324 - *325 + - *326 - *95 requestBody: required: true @@ -91503,16 +91521,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -91534,10 +91552,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *324 - *325 + - *326 - *95 - - *522 + - *523 responses: '204': description: Response @@ -91580,9 +91598,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *324 - *325 - - &566 + - *326 + - &567 name: pull_number description: The number that identifies the pull request. in: path @@ -91595,9 +91613,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *564 + schema: *565 examples: - default: *565 + default: *566 '304': *35 '404': *6 '406': @@ -91632,9 +91650,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -91676,9 +91694,9 @@ paths: description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: *565 + default: *566 '422': *15 '403': *27 x-github: @@ -91700,9 +91718,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -91763,17 +91781,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -91803,9 +91821,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *103 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -91826,9 +91844,9 @@ paths: application/json: schema: type: array - items: *562 + items: *563 examples: - default: *567 + default: *568 headers: Link: *65 x-github: @@ -91861,9 +91879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -91969,7 +91987,7 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: example-for-a-multi-line-comment: value: @@ -92057,9 +92075,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *95 requestBody: required: true @@ -92082,7 +92100,7 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: default: value: @@ -92168,9 +92186,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -92180,9 +92198,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: *568 + default: *569 headers: Link: *65 x-github: @@ -92212,9 +92230,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -92224,7 +92242,7 @@ paths: application/json: schema: type: array - items: *466 + items: *467 examples: default: value: @@ -92262,9 +92280,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *324 - *325 - - *566 + - *326 + - *567 responses: '204': description: Response if pull request has been merged @@ -92287,9 +92305,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -92401,9 +92419,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 responses: '200': description: Response @@ -92478,9 +92496,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -92517,7 +92535,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: default: value: @@ -93053,9 +93071,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: true content: @@ -93089,7 +93107,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: default: value: @@ -93594,9 +93612,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 - *17 - *19 responses: @@ -93606,7 +93624,7 @@ paths: application/json: schema: type: array - items: &569 + items: &570 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -93762,9 +93780,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -93854,9 +93872,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: &571 + default: &572 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -93919,10 +93937,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - &570 + - *326 + - *567 + - &571 name: review_id description: The unique identifier of the review. in: path @@ -93934,9 +93952,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: &572 + default: &573 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -93995,10 +94013,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -94021,7 +94039,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: default: value: @@ -94083,18 +94101,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 responses: '200': description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *571 + default: *572 '422': *7 '404': *6 x-github: @@ -94121,10 +94139,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 - *17 - *19 responses: @@ -94222,9 +94240,9 @@ paths: _links: type: object properties: - self: *266 - html: *266 - pull_request: *266 + self: *267 + html: *267 + pull_request: *267 required: - self - html @@ -94382,10 +94400,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -94414,7 +94432,7 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: default: value: @@ -94477,10 +94495,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *324 - *325 - - *566 - - *570 + - *326 + - *567 + - *571 requestBody: required: true content: @@ -94515,9 +94533,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *572 + default: *573 '404': *6 '422': *7 '403': *27 @@ -94539,9 +94557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *324 - *325 - - *566 + - *326 + - *567 requestBody: required: false content: @@ -94605,8 +94623,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *324 - *325 + - *326 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -94619,9 +94637,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: &574 + default: &575 value: type: file encoding: base64 @@ -94663,8 +94681,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *324 - *325 + - *326 - name: dir description: The alternate path to look for a README file in: path @@ -94684,9 +94702,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *574 + default: *575 '404': *6 '422': *15 x-github: @@ -94708,8 +94726,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -94719,7 +94737,7 @@ paths: application/json: schema: type: array - items: *575 + items: *576 examples: default: value: @@ -94813,8 +94831,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -94890,9 +94908,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: &579 + default: &580 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -94997,9 +95015,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *324 - *325 - - &577 + - *326 + - &578 name: asset_id description: The unique identifier of the asset. in: path @@ -95011,9 +95029,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: &578 + default: &579 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -95048,7 +95066,7 @@ paths: type: User site_admin: false '404': *6 - '302': *468 + '302': *469 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95064,9 +95082,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *324 - *325 - - *577 + - *326 + - *578 requestBody: required: false content: @@ -95095,9 +95113,9 @@ paths: description: Response content: application/json: - schema: *576 + schema: *577 examples: - default: *578 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95113,9 +95131,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *324 - *325 - - *577 + - *326 + - *578 responses: '204': description: Response @@ -95140,8 +95158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -95227,16 +95245,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *324 - *325 + - *326 responses: '200': description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -95254,8 +95272,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *324 - *325 + - *326 - name: tag description: tag parameter in: path @@ -95268,9 +95286,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': *6 x-github: githubCloudOnly: false @@ -95292,9 +95310,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *324 - *325 - - &580 + - *326 + - &581 name: release_id description: The unique identifier of the release. in: path @@ -95308,9 +95326,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '401': description: Unauthorized x-github: @@ -95328,9 +95346,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 requestBody: required: false content: @@ -95394,9 +95412,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *579 + default: *580 '404': description: Not Found if the discussion category name is invalid content: @@ -95417,9 +95435,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 responses: '204': description: Response @@ -95440,9 +95458,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *324 - *325 - - *580 + - *326 + - *581 - *17 - *19 responses: @@ -95452,7 +95470,7 @@ paths: application/json: schema: type: array - items: *576 + items: *577 examples: default: value: @@ -95533,9 +95551,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *324 - *325 - - *580 + - *326 + - *581 - name: name in: query required: true @@ -95561,7 +95579,7 @@ paths: description: Response for successful upload content: application/json: - schema: *576 + schema: *577 examples: response-for-successful-upload: value: @@ -95616,9 +95634,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -95642,9 +95660,9 @@ paths: application/json: schema: type: array - items: *453 + items: *454 examples: - default: *521 + default: *522 headers: Link: *65 '404': *6 @@ -95665,9 +95683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *324 - *325 - - *580 + - *326 + - *581 requestBody: required: true content: @@ -95697,16 +95715,16 @@ paths: description: Reaction exists content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '201': description: Reaction created content: application/json: - schema: *453 + schema: *454 examples: - default: *454 + default: *455 '422': *15 x-github: githubCloudOnly: false @@ -95728,10 +95746,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *324 - *325 - - *580 - - *522 + - *326 + - *581 + - *523 responses: '204': description: Response @@ -95755,9 +95773,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *324 - *325 - - *391 + - *326 + - *392 - *17 - *19 responses: @@ -95773,8 +95791,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *286 - - &581 + - *287 + - &582 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -95793,69 +95811,69 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *287 - - *581 - allOf: - *288 - - *581 + - *582 - allOf: - *289 - - *581 - - allOf: - *582 - - *581 - allOf: - *290 - - *581 + - *582 + - allOf: + - *583 + - *582 - allOf: - *291 - - *581 + - *582 - allOf: - *292 - - *581 + - *582 - allOf: - *293 - - *581 + - *582 - allOf: - *294 - - *581 + - *582 - allOf: - *295 - - *581 + - *582 - allOf: - *296 - - *581 + - *582 - allOf: - *297 - - *581 + - *582 - allOf: - *298 - - *581 + - *582 - allOf: - *299 - - *581 + - *582 - allOf: - *300 - - *581 + - *582 - allOf: - *301 - - *581 + - *582 - allOf: - *302 - - *581 + - *582 - allOf: - *303 - - *581 + - *582 - allOf: - *304 - - *581 + - *582 - allOf: - *305 - - *581 + - *582 - allOf: - *306 - - *581 + - *582 + - allOf: + - *307 + - *582 examples: default: value: @@ -95894,8 +95912,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - *17 - *19 - name: includes_parents @@ -95906,7 +95924,7 @@ paths: schema: type: boolean default: true - - *583 + - *584 responses: '200': description: Response @@ -95914,7 +95932,7 @@ paths: application/json: schema: type: array - items: *307 + items: *308 examples: default: value: @@ -95961,8 +95979,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 requestBody: description: Request body required: true @@ -95982,16 +96000,16 @@ paths: - tag - push default: branch - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *281 + items: *285 + conditions: *282 rules: type: array description: An array of rules within the ruleset. - items: *584 + items: *585 required: - name - enforcement @@ -96022,9 +96040,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &594 + default: &595 value: id: 42 name: super cool ruleset @@ -96072,12 +96090,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *324 - *325 - - *585 + - *326 - *586 - *587 - *588 + - *589 - *17 - *19 responses: @@ -96085,9 +96103,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *590 examples: - default: *590 + default: *591 '404': *6 '500': *53 x-github: @@ -96108,17 +96126,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *324 - *325 - - *591 + - *326 + - *592 responses: '200': description: Response content: application/json: - schema: *592 + schema: *593 examples: - default: *593 + default: *594 '404': *6 '500': *53 x-github: @@ -96146,8 +96164,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96167,9 +96185,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *594 + default: *595 '404': *6 '500': *53 put: @@ -96187,8 +96205,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96213,16 +96231,16 @@ paths: - branch - tag - push - enforcement: *283 + enforcement: *284 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *284 - conditions: *281 + items: *285 + conditions: *282 rules: description: An array of rules within the ruleset. type: array - items: *584 + items: *585 examples: default: value: @@ -96250,9 +96268,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *594 + default: *595 '404': *6 '422': *15 '500': *53 @@ -96271,8 +96289,8 @@ paths: category: repos subcategory: rules parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96295,8 +96313,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *324 - *325 + - *326 - *17 - *19 - name: ruleset_id @@ -96312,9 +96330,9 @@ paths: application/json: schema: type: array - items: *310 + items: *311 examples: - default: *595 + default: *596 '404': *6 '500': *53 x-github: @@ -96333,8 +96351,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *324 - *325 + - *326 - name: ruleset_id description: The ID of the ruleset. in: path @@ -96352,7 +96370,7 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: default: value: @@ -96407,22 +96425,22 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *324 - *325 - - *597 + - *326 - *598 - *599 - *600 - *601 + - *602 - *59 - *19 - *17 - - *602 - *603 - *604 - *605 - *606 - *607 + - *608 responses: '200': description: Response @@ -96430,7 +96448,7 @@ paths: application/json: schema: type: array - items: &611 + items: &612 type: object properties: number: *170 @@ -96446,8 +96464,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *608 - resolution: *609 + state: *609 + resolution: *610 resolved_at: type: - string @@ -96541,7 +96559,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *610 + - *611 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -96700,16 +96718,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 - - *607 + - *326 + - *422 + - *608 responses: '200': description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -96763,9 +96781,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 requestBody: required: true content: @@ -96773,8 +96791,8 @@ paths: schema: type: object properties: - state: *608 - resolution: *609 + state: *609 + resolution: *610 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -96812,7 +96830,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -96907,9 +96925,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *324 - *325 - - *421 + - *326 + - *422 - *19 - *17 responses: @@ -96920,7 +96938,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &761 + items: &762 type: object properties: type: @@ -96947,7 +96965,6 @@ paths: - commit details: oneOf: - - *612 - *613 - *614 - *615 @@ -96960,6 +96977,7 @@ paths: - *622 - *623 - *624 + - *625 examples: default: value: @@ -97045,8 +97063,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -97054,14 +97072,14 @@ paths: schema: type: object properties: - reason: &626 + reason: &627 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *625 + placeholder_id: *626 required: - reason - placeholder_id @@ -97078,7 +97096,7 @@ paths: schema: type: object properties: - reason: *626 + reason: *627 expire_at: type: - string @@ -97125,8 +97143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *324 - *325 + - *326 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -97141,7 +97159,7 @@ paths: properties: incremental_scans: type: array - items: &627 + items: &628 description: Information on a single scan performed by secret scanning on the repository type: object @@ -97169,15 +97187,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *627 + items: *628 backfill_scans: type: array - items: *627 + items: *628 custom_pattern_backfill_scans: type: array items: allOf: - - *627 + - *628 - type: object properties: pattern_name: @@ -97247,8 +97265,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *324 - *325 + - *326 - *59 - name: sort description: The property to sort the results by. @@ -97292,9 +97310,9 @@ paths: application/json: schema: type: array - items: *628 + items: *629 examples: - default: *629 + default: *630 '400': *14 '404': *6 x-github: @@ -97317,8 +97335,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -97398,7 +97416,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 required: - login - type @@ -97488,9 +97506,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: &631 + default: &632 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -97723,8 +97741,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -97837,7 +97855,7 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: default: value: @@ -97984,17 +98002,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '200': description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: *631 + default: *632 '403': *27 '404': *6 x-github: @@ -98018,9 +98036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 requestBody: required: true content: @@ -98100,7 +98118,7 @@ paths: login: type: string description: The username of the user credited. - type: *313 + type: *314 required: - login - type @@ -98191,10 +98209,10 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: *631 - add_credit: *631 + default: *632 + add_credit: *632 '403': *27 '404': *6 '422': @@ -98232,9 +98250,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '202': *37 '400': *14 @@ -98261,17 +98279,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *324 - *325 - - *630 + - *326 + - *631 responses: '202': description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 '400': *14 '422': *15 '403': *27 @@ -98297,8 +98315,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -98394,8 +98412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -98404,7 +98422,7 @@ paths: application/json: schema: type: array - items: &632 + items: &633 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -98437,8 +98455,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -98516,8 +98534,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -98611,8 +98629,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *324 - *325 + - *326 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -98766,8 +98784,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *324 - *325 + - *326 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -98777,7 +98795,7 @@ paths: application/json: schema: type: array - items: *632 + items: *633 examples: default: value: @@ -98810,8 +98828,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *324 - *325 + - *326 - name: sha in: path required: true @@ -98867,7 +98885,7 @@ paths: description: Response content: application/json: - schema: *633 + schema: *634 examples: default: value: @@ -98921,8 +98939,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -98954,14 +98972,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *324 - *325 + - *326 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &634 + schema: &635 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -99034,8 +99052,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *324 - *325 + - *326 requestBody: required: false content: @@ -99061,7 +99079,7 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: default: value: @@ -99088,8 +99106,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -99109,8 +99127,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -99192,8 +99210,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *324 - *325 + - *326 - name: ref in: path required: true @@ -99229,8 +99247,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *324 - *325 + - *326 - *17 - *19 responses: @@ -99242,7 +99260,7 @@ paths: type: array items: *187 examples: - default: *245 + default: *246 headers: Link: *65 '404': *6 @@ -99262,8 +99280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *324 - *325 + - *326 - *19 - *17 responses: @@ -99271,7 +99289,7 @@ paths: description: Response content: application/json: - schema: &635 + schema: &636 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -99283,7 +99301,7 @@ paths: required: - names examples: - default: &636 + default: &637 value: names: - octocat @@ -99306,8 +99324,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -99338,9 +99356,9 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: - default: *636 + default: *637 '404': *6 '422': *7 x-github: @@ -99361,9 +99379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *324 - *325 - - &637 + - *326 + - &638 name: per description: The time frame to display results for. in: query @@ -99394,7 +99412,7 @@ paths: - 128 clones: type: array - items: &638 + items: &639 title: Traffic type: object properties: @@ -99481,8 +99499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -99576,8 +99594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *324 - *325 + - *326 responses: '200': description: Response @@ -99640,9 +99658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *324 - *325 - - *637 + - *326 + - *638 responses: '200': description: Response @@ -99663,7 +99681,7 @@ paths: - 3782 views: type: array - items: *638 + items: *639 required: - uniques - count @@ -99740,8 +99758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *324 - *325 + - *326 requestBody: required: true content: @@ -100015,8 +100033,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *324 - *325 + - *326 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -100039,8 +100057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -100062,8 +100080,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -100089,8 +100107,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *324 - *325 + - *326 - name: ref in: path required: true @@ -100182,9 +100200,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -100332,7 +100350,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - *141 - - *525 + - *526 requestBody: required: true content: @@ -100398,9 +100416,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *528 + items: *529 examples: - default: *639 + default: *640 '400': *14 '403': *27 '404': *6 @@ -100437,7 +100455,7 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - *141 - - *525 + - *526 requestBody: required: true content: @@ -100504,9 +100522,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *528 + items: *529 examples: - default: *639 + default: *640 '400': *14 '403': *27 '404': *6 @@ -100538,8 +100556,8 @@ paths: url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - *141 - - *525 - - *228 + - *526 + - *229 responses: '204': description: Issue field value deleted successfully @@ -100576,6 +100594,9 @@ paths: * You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing language:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is. + > [!NOTE] + > `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata. + This endpoint requires you to authenticate and limits you to 10 requests per minute. tags: - search @@ -100679,7 +100700,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &640 + text_matches: &641 title: Search Result Text Matches type: array items: @@ -100842,7 +100863,7 @@ paths: enum: - author-date - committer-date - - &641 + - &642 name: order description: Determines whether the first search result returned is the highest number of matches (`desc`) or lowest number of matches (`asc`). This parameter @@ -100911,7 +100932,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 comment_count: type: integer message: @@ -100930,7 +100951,7 @@ paths: url: type: string format: uri - verification: *505 + verification: *506 required: - author - committer @@ -100945,7 +100966,7 @@ paths: committer: anyOf: - type: 'null' - - *389 + - *390 parents: type: array items: @@ -100962,7 +100983,7 @@ paths: type: number node_id: type: string - text_matches: *640 + text_matches: *641 required: - sha - node_id @@ -101154,7 +101175,7 @@ paths: - interactions - created - updated - - *641 + - *642 - *17 - *19 - name: advanced_search @@ -101268,11 +101289,11 @@ paths: type: - string - 'null' - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: type: string state_reason: @@ -101282,7 +101303,7 @@ paths: milestone: anyOf: - type: 'null' - - *265 + - *266 comments: type: integer created_at: @@ -101296,7 +101317,7 @@ paths: - string - 'null' format: date-time - text_matches: *640 + text_matches: *641 pull_request: type: object properties: @@ -101345,7 +101366,7 @@ paths: timeline_url: type: string format: uri - type: *229 + type: *230 performed_via_github_app: anyOf: - type: 'null' @@ -101561,7 +101582,7 @@ paths: enum: - created - updated - - *641 + - *642 - *17 - *19 responses: @@ -101606,7 +101627,7 @@ paths: - 'null' score: type: number - text_matches: *640 + text_matches: *641 required: - id - node_id @@ -101691,7 +101712,7 @@ paths: - forks - help-wanted-issues - updated - - *641 + - *642 - *17 - *19 responses: @@ -101937,7 +101958,7 @@ paths: - admin - pull - push - text_matches: *640 + text_matches: *641 temp_clone_token: type: string allow_merge_commit: @@ -102245,7 +102266,7 @@ paths: - string - 'null' format: uri - text_matches: *640 + text_matches: *641 related: type: - array @@ -102438,7 +102459,7 @@ paths: - followers - repositories - joined - - *641 + - *642 - *17 - *19 responses: @@ -102548,7 +102569,7 @@ paths: type: - boolean - 'null' - text_matches: *640 + text_matches: *641 blog: type: - string @@ -102630,7 +102651,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &644 + - &645 name: team_id description: The unique identifier of the team. in: path @@ -102642,9 +102663,9 @@ paths: description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 x-github: githubCloudOnly: false @@ -102671,7 +102692,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *644 + - *645 requestBody: required: true content: @@ -102735,16 +102756,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '201': description: Response content: application/json: - schema: *320 + schema: *321 examples: - default: *321 + default: *322 '404': *6 '422': *15 '403': *27 @@ -102772,7 +102793,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *644 + - *645 responses: '204': description: Response @@ -102801,7 +102822,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -102811,9 +102832,9 @@ paths: application/json: schema: type: array - items: *223 + items: *224 examples: - default: *224 + default: *225 headers: Link: *65 x-github: @@ -102839,7 +102860,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *644 + - *645 - name: role description: Filters members returned by their role in the team. in: query @@ -102890,7 +102911,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -102927,7 +102948,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -102967,7 +102988,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -103004,16 +103025,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 responses: '200': description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-user-is-a-team-maintainer: *645 + response-if-user-is-a-team-maintainer: *646 '404': *6 x-github: githubCloudOnly: false @@ -103046,7 +103067,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 requestBody: required: false @@ -103072,9 +103093,9 @@ paths: description: Response content: application/json: - schema: *323 + schema: *324 examples: - response-if-users-membership-with-team-is-now-pending: *646 + response-if-users-membership-with-team-is-now-pending: *647 '403': description: Forbidden if team synchronization is set up '422': @@ -103108,7 +103129,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *644 + - *645 - *69 responses: '204': @@ -103136,7 +103157,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -103148,7 +103169,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 '404': *6 @@ -103178,15 +103199,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *647 + schema: *648 examples: alternative-response-with-extra-repository-information: value: @@ -103337,9 +103358,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 requestBody: required: false content: @@ -103389,9 +103410,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *644 - - *324 + - *645 - *325 + - *326 responses: '204': description: Response @@ -103416,7 +103437,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *644 + - *645 - *17 - *19 responses: @@ -103428,7 +103449,7 @@ paths: type: array items: *187 examples: - response-if-child-teams-exist: *648 + response-if-child-teams-exist: *649 headers: Link: *65 '404': *6 @@ -103461,7 +103482,7 @@ paths: application/json: schema: oneOf: - - &649 + - &650 title: Private User description: Private User type: object @@ -103711,7 +103732,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &674 + - &675 title: Public User description: Public User type: object @@ -104045,7 +104066,7 @@ paths: description: Response content: application/json: - schema: *649 + schema: *650 examples: default: value: @@ -104248,9 +104269,9 @@ paths: type: integer codespaces: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '304': *35 '500': *53 '401': *23 @@ -104389,17 +104410,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -104443,7 +104464,7 @@ paths: type: integer secrets: type: array - items: &650 + items: &651 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -104485,7 +104506,7 @@ paths: - visibility - selected_repositories_url examples: - default: *446 + default: *447 headers: Link: *65 x-github: @@ -104563,7 +104584,7 @@ paths: description: Response content: application/json: - schema: *650 + schema: *651 examples: default: value: @@ -104853,15 +104874,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '304': *35 '500': *53 '401': *23 @@ -104887,7 +104908,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 requestBody: required: false content: @@ -104917,9 +104938,9 @@ paths: description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '401': *23 '403': *27 '404': *6 @@ -104941,7 +104962,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '202': *37 '304': *35 @@ -104970,13 +104991,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '202': description: Response content: application/json: - schema: &651 + schema: &652 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -105029,7 +105050,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &652 + default: &653 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -105061,7 +105082,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *236 + - *237 - name: export_id in: path required: true @@ -105074,9 +105095,9 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: - default: *652 + default: *653 '404': *6 x-github: githubCloudOnly: false @@ -105097,7 +105118,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *236 + - *237 responses: '200': description: Response @@ -105113,9 +105134,9 @@ paths: type: integer machines: type: array - items: *445 + items: *446 examples: - default: *653 + default: *654 '304': *35 '500': *53 '401': *23 @@ -105144,7 +105165,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *236 + - *237 requestBody: required: true content: @@ -105200,11 +105221,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *327 + repository: *328 machine: anyOf: - type: 'null' - - *445 + - *446 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -106001,15 +106022,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '304': *35 '500': *53 '400': *14 @@ -106041,15 +106062,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *236 + - *237 responses: '200': description: Response content: application/json: - schema: *234 + schema: *235 examples: - default: *444 + default: *445 '500': *53 '401': *23 '403': *27 @@ -106079,9 +106100,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: &664 + default: &665 value: - id: 197 name: hello_docker @@ -106182,7 +106203,7 @@ paths: application/json: schema: type: array - items: &654 + items: &655 title: Email description: Email type: object @@ -106252,9 +106273,9 @@ paths: application/json: schema: type: array - items: *654 + items: *655 examples: - default: &666 + default: &667 value: - email: octocat@github.com verified: true @@ -106331,7 +106352,7 @@ paths: application/json: schema: type: array - items: *654 + items: *655 examples: default: value: @@ -106589,7 +106610,7 @@ paths: application/json: schema: type: array - items: &655 + items: &656 title: GPG Key description: A unique encryption key type: object @@ -106734,7 +106755,7 @@ paths: - subkeys - revoked examples: - default: &683 + default: &684 value: - id: 3 name: Octocat's GPG Key @@ -106819,9 +106840,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: &656 + default: &657 value: id: 3 name: Octocat's GPG Key @@ -106878,7 +106899,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &657 + - &658 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -106890,9 +106911,9 @@ paths: description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: *656 + default: *657 '404': *6 '304': *35 '403': *27 @@ -106915,7 +106936,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *657 + - *658 responses: '204': description: Response @@ -107194,12 +107215,12 @@ paths: application/json: schema: anyOf: - - *221 + - *222 - type: object properties: {} additionalProperties: false examples: - default: *222 + default: *223 '204': description: Response when there are no restrictions x-github: @@ -107223,7 +107244,7 @@ paths: required: true content: application/json: - schema: *516 + schema: *517 examples: default: value: @@ -107234,7 +107255,7 @@ paths: description: Response content: application/json: - schema: *221 + schema: *222 examples: default: value: @@ -107315,7 +107336,7 @@ paths: - closed - all default: open - - *232 + - *233 - name: sort description: What to sort results by. in: query @@ -107340,7 +107361,7 @@ paths: type: array items: *81 examples: - default: *233 + default: *234 headers: Link: *65 '404': *6 @@ -107373,7 +107394,7 @@ paths: application/json: schema: type: array - items: &658 + items: &659 title: Key description: Key type: object @@ -107476,9 +107497,9 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: &659 + default: &660 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -107511,15 +107532,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *546 + - *547 responses: '200': description: Response content: application/json: - schema: *658 + schema: *659 examples: - default: *659 + default: *660 '404': *6 '304': *35 '403': *27 @@ -107542,7 +107563,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *546 + - *547 responses: '204': description: Response @@ -107575,7 +107596,7 @@ paths: application/json: schema: type: array - items: &660 + items: &661 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -107654,7 +107675,7 @@ paths: - account - plan examples: - default: &661 + default: &662 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -107716,9 +107737,9 @@ paths: application/json: schema: type: array - items: *660 + items: *661 examples: - default: *661 + default: *662 headers: Link: *65 '304': *35 @@ -107758,7 +107779,7 @@ paths: application/json: schema: type: array - items: *238 + items: *239 examples: default: value: @@ -107872,7 +107893,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -107959,7 +107980,7 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: default: value: @@ -108031,7 +108052,7 @@ paths: application/json: schema: type: array - items: *240 + items: *241 examples: default: value: @@ -108293,7 +108314,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -108473,7 +108494,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *241 + - *242 - name: exclude in: query required: false @@ -108486,7 +108507,7 @@ paths: description: Response content: application/json: - schema: *240 + schema: *241 examples: default: value: @@ -108680,7 +108701,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *241 + - *242 responses: '302': description: Response @@ -108706,7 +108727,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *241 + - *242 responses: '204': description: Response @@ -108735,8 +108756,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *241 - - *662 + - *242 + - *663 responses: '204': description: Response @@ -108760,7 +108781,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *241 + - *242 - *17 - *19 responses: @@ -108849,7 +108870,7 @@ paths: - docker - nuget - container - - *663 + - *664 - *19 - *17 responses: @@ -108859,10 +108880,10 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *664 - '400': *665 + default: *665 + '400': *666 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108882,16 +108903,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: &684 + default: &685 value: id: 40201 name: octo-name @@ -109004,8 +109025,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 responses: '204': description: Response @@ -109035,8 +109056,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *248 - *249 + - *250 - name: token description: package token schema: @@ -109068,8 +109089,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *248 - *249 + - *250 - *19 - *17 - name: state @@ -109089,7 +109110,7 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: default: value: @@ -109138,15 +109159,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -109182,9 +109203,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '204': description: Response @@ -109214,9 +109235,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 responses: '204': description: Response @@ -109253,9 +109274,9 @@ paths: application/json: schema: type: array - items: *654 + items: *655 examples: - default: *666 + default: *667 headers: Link: *65 '304': *35 @@ -109368,7 +109389,7 @@ paths: type: array items: *77 examples: - default: &673 + default: &674 summary: Default response value: - id: 1296269 @@ -109686,9 +109707,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *329 + default: *330 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -109727,9 +109748,9 @@ paths: application/json: schema: type: array - items: *518 + items: *519 examples: - default: *667 + default: *668 headers: Link: *65 '304': *35 @@ -109752,7 +109773,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *225 + - *226 responses: '204': description: Response @@ -109776,7 +109797,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *225 + - *226 responses: '204': description: Response @@ -109809,7 +109830,7 @@ paths: application/json: schema: type: array - items: &668 + items: &669 title: Social account description: Social media account type: object @@ -109826,7 +109847,7 @@ paths: - provider - url examples: - default: &669 + default: &670 value: - provider: twitter url: https://twitter.com/github @@ -109889,9 +109910,9 @@ paths: application/json: schema: type: array - items: *668 + items: *669 examples: - default: *669 + default: *670 '422': *15 '304': *35 '404': *6 @@ -109979,7 +110000,7 @@ paths: application/json: schema: type: array - items: &670 + items: &671 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -109999,7 +110020,7 @@ paths: - title - created_at examples: - default: &702 + default: &703 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -110064,9 +110085,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: &671 + default: &672 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -110096,7 +110117,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &672 + - &673 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -110108,9 +110129,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: *671 + default: *672 '404': *6 '304': *35 '403': *27 @@ -110133,7 +110154,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *672 + - *673 responses: '204': description: Response @@ -110162,7 +110183,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &703 + - &704 name: sort description: The property to sort the results by. `created` means when the repository was starred. `updated` means when the repository was last pushed @@ -110187,11 +110208,11 @@ paths: type: array items: *77 examples: - default-response: *673 + default-response: *674 application/vnd.github.v3.star+json: schema: type: array - items: &704 + items: &705 title: Starred Repository description: Starred Repository type: object @@ -110347,8 +110368,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response if this repository is starred by you @@ -110376,8 +110397,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -110401,8 +110422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *324 - *325 + - *326 responses: '204': description: Response @@ -110437,7 +110458,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 '304': *35 @@ -110474,7 +110495,7 @@ paths: application/json: schema: type: array - items: *320 + items: *321 examples: default: value: @@ -110560,10 +110581,10 @@ paths: application/json: schema: oneOf: - - *649 - - *674 + - *650 + - *675 examples: - default-response: &678 + default-response: &679 summary: Default response value: login: octocat @@ -110598,7 +110619,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &679 + response-with-git-hub-plan-information: &680 summary: Response with GitHub plan information value: login: octocat @@ -110655,14 +110676,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &676 + - &677 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *264 + - *265 requestBody: required: true description: Details of the draft item to create in the project. @@ -110696,9 +110717,9 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: - draft_issue: *270 + draft_issue: *271 '304': *35 '403': *27 '401': *23 @@ -110721,7 +110742,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *675 + - *676 - *17 responses: '200': @@ -110756,8 +110777,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *676 - - *264 + - *677 + - *265 requestBody: required: true content: @@ -110831,17 +110852,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *677 + schema: *678 examples: table_view: summary: Response for creating a table view - value: *274 + value: *275 board_view: summary: Response for creating a board view with filter - value: *274 + value: *275 roadmap_view: summary: Response for creating a roadmap view - value: *274 + value: *275 '304': *35 '403': *27 '401': *23 @@ -110883,11 +110904,11 @@ paths: application/json: schema: oneOf: - - *649 - - *674 + - *650 + - *675 examples: - default-response: *678 - response-with-git-hub-plan-information: *679 + default-response: *679 + response-with-git-hub-plan-information: *680 '404': *6 x-github: githubCloudOnly: false @@ -110937,8 +110958,8 @@ paths: required: - subject_digests examples: - default: *680 - withPredicateType: *681 + default: *681 + withPredicateType: *682 responses: '200': description: Response @@ -110978,7 +110999,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *682 + default: *683 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111167,7 +111188,7 @@ paths: initiator: type: string examples: - default: *385 + default: *386 '201': description: Response content: @@ -111206,9 +111227,9 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *664 + default: *665 '403': *27 '401': *23 x-github: @@ -111592,9 +111613,9 @@ paths: application/json: schema: type: array - items: *655 + items: *656 examples: - default: *683 + default: *684 headers: Link: *65 x-github: @@ -111698,7 +111719,7 @@ paths: application/json: schema: *20 examples: - default: *515 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111823,7 +111844,7 @@ paths: - docker - nuget - container - - *663 + - *664 - *69 - *19 - *17 @@ -111834,12 +111855,12 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: - default: *664 + default: *665 '403': *27 '401': *23 - '400': *665 + '400': *666 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111859,17 +111880,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *684 + default: *685 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111890,8 +111911,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '204': @@ -111924,8 +111945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *248 - *249 + - *250 - *69 - name: token description: package token @@ -111958,8 +111979,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *248 - *249 + - *250 - *69 responses: '200': @@ -111968,7 +111989,7 @@ paths: application/json: schema: type: array - items: *250 + items: *251 examples: default: value: @@ -112026,16 +112047,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *248 - *249 - - *251 + - *250 + - *252 - *69 responses: '200': description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -112070,10 +112091,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *248 - *249 + - *250 - *69 - - *251 + - *252 responses: '204': description: Response @@ -112105,10 +112126,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *248 - *249 + - *250 - *69 - - *251 + - *252 responses: '204': description: Response @@ -112149,9 +112170,9 @@ paths: application/json: schema: type: array - items: *262 + items: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -112173,16 +112194,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *264 + - *265 - *69 responses: '200': description: Response content: application/json: - schema: *262 + schema: *263 examples: - default: *263 + default: *264 headers: Link: *65 '304': *35 @@ -112204,7 +112225,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *264 + - *265 - *69 - *17 - *45 @@ -112216,9 +112237,9 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: - default: *685 + default: *686 headers: Link: *65 '304': *35 @@ -112240,7 +112261,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *69 - - *264 + - *265 requestBody: required: true content: @@ -112278,7 +112299,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *686 + items: *687 required: - name - data_type @@ -112294,7 +112315,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *687 + iteration_configuration: *688 required: - name - data_type @@ -112316,20 +112337,20 @@ paths: value: name: Due date data_type: date - single_select_field: *688 - iteration_field: *689 + single_select_field: *689 + iteration_field: *690 responses: '201': description: Response content: application/json: - schema: *267 + schema: *268 examples: - text_field: *690 - number_field: *691 - date_field: *692 - single_select_field: *693 - iteration_field: *694 + text_field: *691 + number_field: *692 + date_field: *693 + single_select_field: *694 + iteration_field: *695 '304': *35 '403': *27 '401': *23 @@ -112350,17 +112371,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *264 - - *695 + - *265 + - *696 - *69 responses: '200': description: Response content: application/json: - schema: *267 + schema: *268 examples: - default: *696 + default: *697 headers: Link: *65 '304': *35 @@ -112383,7 +112404,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *264 + - *265 - *69 - *45 - *46 @@ -112416,9 +112437,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -112440,7 +112461,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *69 - - *264 + - *265 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -112510,22 +112531,22 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *270 + value: *271 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *270 + value: *271 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *270 + value: *271 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *270 + value: *271 '304': *35 '403': *27 '401': *23 @@ -112545,9 +112566,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *264 + - *265 - *69 - - *273 + - *274 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -112567,9 +112588,9 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -112590,9 +112611,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *264 + - *265 - *69 - - *273 + - *274 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -112665,13 +112686,13 @@ paths: description: Response content: application/json: - schema: *271 + schema: *272 examples: - text_field: *272 - number_field: *272 - date_field: *272 - single_select_field: *272 - iteration_field: *272 + text_field: *273 + number_field: *273 + date_field: *273 + single_select_field: *273 + iteration_field: *273 '401': *23 '403': *27 '404': *6 @@ -112691,9 +112712,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *264 + - *265 - *69 - - *273 + - *274 responses: '204': description: Response @@ -112715,9 +112736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *264 + - *265 - *69 - - *697 + - *698 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -112743,9 +112764,9 @@ paths: application/json: schema: type: array - items: *271 + items: *272 examples: - default: *272 + default: *273 headers: Link: *65 '304': *35 @@ -112966,7 +112987,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 x-github: @@ -112992,7 +113013,7 @@ paths: - *115 - *117 - *116 - - *698 + - *699 - *118 responses: '200': @@ -113123,7 +113144,7 @@ paths: parameters: - *69 - *115 - - *699 + - *700 - *116 responses: '200': @@ -113222,9 +113243,9 @@ paths: - *115 - *117 - *116 - - *700 - - *118 - *701 + - *118 + - *702 responses: '200': description: Response when getting a billing usage summary @@ -113358,9 +113379,9 @@ paths: application/json: schema: type: array - items: *668 + items: *669 examples: - default: *669 + default: *670 headers: Link: *65 x-github: @@ -113390,9 +113411,9 @@ paths: application/json: schema: type: array - items: *670 + items: *671 examples: - default: *702 + default: *703 headers: Link: *65 x-github: @@ -113417,7 +113438,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *69 - - *703 + - *704 - *59 - *17 - *19 @@ -113429,11 +113450,11 @@ paths: schema: anyOf: - type: array - items: *704 + items: *705 - type: array items: *77 examples: - default-response: *673 + default-response: *674 headers: Link: *65 x-github: @@ -113464,7 +113485,7 @@ paths: type: array items: *152 examples: - default: *259 + default: *260 headers: Link: *65 x-github: @@ -113593,7 +113614,7 @@ webhooks: type: string enum: - disabled - enterprise: &705 + enterprise: &706 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -113662,7 +113683,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &706 + installation: &707 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -113683,7 +113704,7 @@ webhooks: required: - id - node_id - organization: &707 + organization: &708 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -113756,7 +113777,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &708 + repository: &709 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -114671,10 +114692,10 @@ webhooks: type: string enum: - enabled - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -114750,11 +114771,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: &709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: &710 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -114977,11 +114998,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: *709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: *710 sender: *4 required: - action @@ -115169,11 +115190,11 @@ webhooks: - everyone required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - rule: *709 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + rule: *710 sender: *4 required: - action @@ -115257,7 +115278,7 @@ webhooks: type: string enum: - completed - check_run: &711 + check_run: &712 title: CheckRun description: A check performed on the code of a given code change type: object @@ -115367,7 +115388,7 @@ webhooks: - examples: - neutral - deployment: *710 + deployment: *711 details_url: type: string examples: @@ -115465,10 +115486,10 @@ webhooks: - output - app - pull_requests - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -115859,11 +115880,11 @@ webhooks: type: string enum: - created - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -116257,11 +116278,11 @@ webhooks: type: string enum: - requested_action - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 requested_action: description: The action requested by the user. type: object @@ -116664,11 +116685,11 @@ webhooks: type: string enum: - rerequested - check_run: *711 - installation: *706 - enterprise: *705 - organization: *707 - repository: *708 + check_run: *712 + installation: *707 + enterprise: *706 + organization: *708 + repository: *709 sender: *4 required: - check_run @@ -117653,10 +117674,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -118360,10 +118381,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -119061,10 +119082,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -119233,7 +119254,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119385,20 +119406,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &712 + commit_oid: &713 description: The commit SHA of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - enterprise: *705 - installation: *706 - organization: *707 - ref: &713 + enterprise: *706 + installation: *707 + organization: *708 + ref: &714 description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -119565,7 +119586,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119806,12 +119827,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -119909,7 +119930,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120094,12 +120115,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -120268,7 +120289,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -120445,12 +120466,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -120551,7 +120572,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120740,9 +120761,9 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -120750,7 +120771,7 @@ webhooks: type: - string - 'null' - repository: *708 + repository: *709 sender: *4 required: - action @@ -120849,7 +120870,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120996,12 +121017,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *712 - enterprise: *705 - installation: *706 - organization: *707 - ref: *713 - repository: *708 + commit_oid: *713 + enterprise: *706 + installation: *707 + organization: *708 + ref: *714 + repository: *709 sender: *4 required: - action @@ -121170,7 +121191,7 @@ webhooks: required: - login - id - dismissed_comment: *416 + dismissed_comment: *417 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -121322,10 +121343,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -121585,10 +121606,10 @@ webhooks: - updated_at - author_association - body - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -121669,18 +121690,18 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *707 - pusher_type: &714 + organization: *708 + pusher_type: &715 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &715 + ref: &716 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -121690,7 +121711,7 @@ webhooks: enum: - tag - branch - repository: *708 + repository: *709 sender: *4 required: - ref @@ -121772,10 +121793,10 @@ webhooks: type: string enum: - created - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -121860,9 +121881,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -121939,10 +121960,10 @@ webhooks: type: string enum: - promote_to_enterprise - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -122019,10 +122040,10 @@ webhooks: type: string enum: - updated - definition: *275 - enterprise: *705 - installation: *706 - organization: *707 + definition: *276 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -122099,19 +122120,19 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - repository: *708 - organization: *707 + enterprise: *706 + installation: *707 + repository: *709 + organization: *708 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *279 + items: *280 old_property_values: type: array description: The old custom property values for the repository. - items: *279 + items: *280 required: - action - repository @@ -122187,18 +122208,18 @@ webhooks: title: delete event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - pusher_type: *714 - ref: *715 + enterprise: *706 + installation: *707 + organization: *708 + pusher_type: *715 + ref: *716 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *708 + repository: *709 sender: *4 required: - ref @@ -122278,11 +122299,11 @@ webhooks: type: string enum: - assignees_changed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122362,11 +122383,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122447,11 +122468,11 @@ webhooks: type: string enum: - auto_reopened - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122532,11 +122553,11 @@ webhooks: type: string enum: - created - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122615,11 +122636,11 @@ webhooks: type: string enum: - dismissed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122698,11 +122719,11 @@ webhooks: type: string enum: - fixed - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122782,11 +122803,11 @@ webhooks: type: string enum: - reintroduced - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122865,11 +122886,11 @@ webhooks: type: string enum: - reopened - alert: *474 - installation: *706 - organization: *707 - enterprise: *705 - repository: *708 + alert: *475 + installation: *707 + organization: *708 + enterprise: *706 + repository: *709 sender: *4 required: - action @@ -122946,9 +122967,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - key: &716 + enterprise: *706 + installation: *707 + key: &717 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -122986,8 +123007,8 @@ webhooks: - verified - created_at - read_only - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -123064,11 +123085,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - key: *716 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + key: *717 + organization: *708 + repository: *709 sender: *4 required: - action @@ -123635,12 +123656,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: &720 + workflow: &721 title: Workflow type: - object @@ -124391,13 +124412,13 @@ webhooks: deployment: anyOf: - type: 'null' - - *480 + - *481 pull_requests: type: array - items: *564 - repository: *708 - organization: *707 - installation: *706 + items: *565 + repository: *709 + organization: *708 + installation: *707 sender: *4 responses: '200': @@ -124468,7 +124489,7 @@ webhooks: type: string enum: - approved - approver: &717 + approver: &718 type: object properties: avatar_url: @@ -124511,11 +124532,11 @@ webhooks: type: string comment: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - reviewers: &718 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + reviewers: &719 type: array items: type: object @@ -124596,7 +124617,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &719 + workflow_job_run: &720 type: object properties: conclusion: @@ -125342,18 +125363,18 @@ webhooks: type: string enum: - rejected - approver: *717 + approver: *718 comment: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - reviewers: *718 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + reviewers: *719 sender: *4 since: type: string - workflow_job_run: *719 + workflow_job_run: *720 workflow_job_runs: type: array items: @@ -126070,13 +126091,13 @@ webhooks: type: string enum: - requested - enterprise: *705 + enterprise: *706 environment: type: string - installation: *706 - organization: *707 - repository: *708 - requestor: &725 + installation: *707 + organization: *708 + repository: *709 + requestor: &726 title: User type: - object @@ -128009,12 +128030,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Deployment Workflow Run type: @@ -128705,7 +128726,7 @@ webhooks: type: string enum: - answered - answer: &723 + answer: &724 type: object properties: author_association: @@ -128865,11 +128886,11 @@ webhooks: - created_at - updated_at - body - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -128996,11 +129017,11 @@ webhooks: - from required: - category - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129083,11 +129104,11 @@ webhooks: type: string enum: - closed - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129169,7 +129190,7 @@ webhooks: type: string enum: - created - comment: &722 + comment: &723 type: object properties: author_association: @@ -129329,11 +129350,11 @@ webhooks: - updated_at - body - reactions - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129416,12 +129437,12 @@ webhooks: type: string enum: - deleted - comment: *722 - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + comment: *723 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129516,12 +129537,12 @@ webhooks: - from required: - body - comment: *722 - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + comment: *723 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129605,11 +129626,11 @@ webhooks: type: string enum: - created - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129691,11 +129712,11 @@ webhooks: type: string enum: - deleted - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129795,11 +129816,11 @@ webhooks: type: string required: - from - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -129881,10 +129902,10 @@ webhooks: type: string enum: - labeled - discussion: *721 - enterprise: *705 - installation: *706 - label: &724 + discussion: *722 + enterprise: *706 + installation: *707 + label: &725 title: Label type: object properties: @@ -129917,8 +129938,8 @@ webhooks: - color - default - description - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130001,11 +130022,11 @@ webhooks: type: string enum: - locked - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130087,11 +130108,11 @@ webhooks: type: string enum: - pinned - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130173,11 +130194,11 @@ webhooks: type: string enum: - reopened - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130262,16 +130283,16 @@ webhooks: changes: type: object properties: - new_discussion: *721 - new_repository: *708 + new_discussion: *722 + new_repository: *709 required: - new_discussion - new_repository - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130354,10 +130375,10 @@ webhooks: type: string enum: - unanswered - discussion: *721 - old_answer: *723 - organization: *707 - repository: *708 + discussion: *722 + old_answer: *724 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130439,12 +130460,12 @@ webhooks: type: string enum: - unlabeled - discussion: *721 - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130527,11 +130548,11 @@ webhooks: type: string enum: - unlocked - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130613,11 +130634,11 @@ webhooks: type: string enum: - unpinned - discussion: *721 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + discussion: *722 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -130690,7 +130711,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *705 + enterprise: *706 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -131368,9 +131389,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - forkee @@ -131516,9 +131537,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pages: description: The pages that were updated. type: array @@ -131556,7 +131577,7 @@ webhooks: - action - sha - html_url - repository: *708 + repository: *709 sender: *4 required: - pages @@ -131632,10 +131653,10 @@ webhooks: type: string enum: - created - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: &726 + organization: *708 + repositories: &727 description: An array of repository objects that the installation can access. type: array @@ -131661,8 +131682,8 @@ webhooks: - name - full_name - private - repository: *708 - requester: *725 + repository: *709 + requester: *726 sender: *4 required: - action @@ -131737,11 +131758,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -131818,11 +131839,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -131899,10 +131920,10 @@ webhooks: type: string enum: - added - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories_added: &727 + organization: *708 + repositories_added: &728 description: An array of repository objects, which were added to the installation. type: array @@ -131948,15 +131969,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *708 - repository_selection: &728 + repository: *709 + repository_selection: &729 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *725 + requester: *726 sender: *4 required: - action @@ -132035,10 +132056,10 @@ webhooks: type: string enum: - removed - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories_added: *727 + organization: *708 + repositories_added: *728 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -132065,9 +132086,9 @@ webhooks: - name - full_name - private - repository: *708 - repository_selection: *728 - requester: *725 + repository: *709 + repository_selection: *729 + requester: *726 sender: *4 required: - action @@ -132146,11 +132167,11 @@ webhooks: type: string enum: - suspend - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -132332,10 +132353,10 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 target_type: type: string @@ -132414,11 +132435,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *705 + enterprise: *706 installation: *20 - organization: *707 - repositories: *726 - repository: *708 + organization: *708 + repositories: *727 + repository: *709 requester: type: - 'null' @@ -132584,7 +132605,7 @@ webhooks: pin: anyOf: - type: 'null' - - *543 + - *544 user: title: User type: @@ -132670,8 +132691,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -133483,8 +133504,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -133501,7 +133522,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -133845,8 +133866,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -133926,7 +133947,7 @@ webhooks: type: string enum: - deleted - comment: &729 + comment: &730 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -134083,7 +134104,7 @@ webhooks: pin: anyOf: - type: 'null' - - *543 + - *544 required: - url - html_url @@ -134097,8 +134118,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -134906,8 +134927,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -134924,7 +134945,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -135270,8 +135291,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -135351,7 +135372,7 @@ webhooks: type: string enum: - edited - changes: &753 + changes: &754 description: The changes to the comment. type: object properties: @@ -135363,9 +135384,9 @@ webhooks: type: string required: - from - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136176,8 +136197,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136194,7 +136215,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -136538,8 +136559,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -136620,9 +136641,9 @@ webhooks: type: string enum: - pinned - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -137435,8 +137456,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137453,7 +137474,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -137799,8 +137820,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -137880,9 +137901,9 @@ webhooks: type: string enum: - unpinned - comment: *729 - enterprise: *705 - installation: *706 + comment: *730 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -138695,8 +138716,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138713,7 +138734,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -139059,8 +139080,8 @@ webhooks: - state - locked - assignee - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139149,9 +139170,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139240,9 +139261,9 @@ webhooks: type: number blocking_issue: *81 blocking_issue_repo: *77 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139330,9 +139351,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139421,9 +139442,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -139503,10 +139524,10 @@ webhooks: type: string enum: - assigned - assignee: *725 - enterprise: *705 - installation: *706 - issue: &732 + assignee: *726 + enterprise: *706 + installation: *707 + issue: &733 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -140317,11 +140338,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140338,7 +140359,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -140441,8 +140462,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -140522,8 +140543,8 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -141339,11 +141360,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141360,7 +141381,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -141606,8 +141627,8 @@ webhooks: required: - state - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -141686,8 +141707,8 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -142494,11 +142515,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142515,7 +142536,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -142617,8 +142638,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -142697,8 +142718,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -143528,11 +143549,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143549,7 +143570,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -143630,7 +143651,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &730 + milestone: &731 title: Milestone description: A collection of related issues and pull requests. type: object @@ -143773,8 +143794,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -143873,8 +143894,8 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -144685,11 +144706,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144703,7 +144724,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -144809,9 +144830,9 @@ webhooks: - active_lock_reason - body - reactions - label: *724 - organization: *707 - repository: *708 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -144891,8 +144912,8 @@ webhooks: type: string enum: - labeled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145702,11 +145723,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145720,7 +145741,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -145826,9 +145847,9 @@ webhooks: - active_lock_reason - body - reactions - label: *724 - organization: *707 - repository: *708 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -145908,8 +145929,8 @@ webhooks: type: string enum: - locked - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146744,11 +146765,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146762,7 +146783,7 @@ webhooks: timeline_url: type: string format: uri - type: *229 + type: *230 title: description: Title of the issue type: string @@ -146845,8 +146866,8 @@ webhooks: format: uri user_view_type: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -146925,8 +146946,8 @@ webhooks: type: string enum: - milestoned - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147755,11 +147776,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147776,7 +147797,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -147856,9 +147877,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *730 - organization: *707 - repository: *708 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -148745,11 +148766,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148849,7 +148870,7 @@ webhooks: required: - login - id - type: *229 + type: *230 required: - id - number @@ -149341,8 +149362,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150149,11 +150170,11 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150170,7 +150191,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -150276,8 +150297,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -150357,9 +150378,9 @@ webhooks: type: string enum: - pinned - enterprise: *705 - installation: *706 - issue: &731 + enterprise: *706 + installation: *707 + issue: &732 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -151164,11 +151185,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151185,7 +151206,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -151287,8 +151308,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -151367,8 +151388,8 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152201,11 +152222,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152302,9 +152323,9 @@ webhooks: format: uri user_view_type: type: string - type: *229 - organization: *707 - repository: *708 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -153192,11 +153213,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153213,7 +153234,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -153806,11 +153827,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *705 - installation: *706 - issue: *731 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *732 + organization: *708 + repository: *709 sender: *4 required: - action @@ -153890,12 +153911,12 @@ webhooks: type: string enum: - typed - enterprise: *705 - installation: *706 - issue: *732 - type: *229 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -153976,7 +153997,7 @@ webhooks: type: string enum: - unassigned - assignee: &756 + assignee: &757 title: User type: - object @@ -154048,11 +154069,11 @@ webhooks: required: - login - id - enterprise: *705 - installation: *706 - issue: *732 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154131,12 +154152,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *705 - installation: *706 - issue: *732 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -154216,8 +154237,8 @@ webhooks: type: string enum: - unlocked - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155050,11 +155071,11 @@ webhooks: anyOf: - type: 'null' - *82 - sub_issues_summary: *642 - issue_dependencies_summary: *643 + sub_issues_summary: *643 + issue_dependencies_summary: *644 issue_field_values: type: array - items: *528 + items: *529 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155071,7 +155092,7 @@ webhooks: title: description: Title of the issue type: string - type: *229 + type: *230 updated_at: type: string format: date-time @@ -155151,8 +155172,8 @@ webhooks: format: uri user_view_type: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155232,11 +155253,11 @@ webhooks: type: string enum: - unpinned - enterprise: *705 - installation: *706 - issue: *731 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *732 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155315,12 +155336,12 @@ webhooks: type: string enum: - untyped - enterprise: *705 - installation: *706 - issue: *732 - type: *229 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + issue: *733 + type: *230 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155400,11 +155421,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155482,11 +155503,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155596,11 +155617,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - label: *724 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + label: *725 + organization: *708 + repository: *709 sender: *4 required: - action @@ -155682,9 +155703,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: &733 + enterprise: *706 + installation: *707 + marketplace_purchase: &734 title: Marketplace Purchase type: object required: @@ -155772,8 +155793,8 @@ webhooks: type: integer unit_count: type: integer - organization: *707 - previous_marketplace_purchase: &734 + organization: *708 + previous_marketplace_purchase: &735 title: Marketplace Purchase type: object properties: @@ -155857,7 +155878,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -155937,10 +155958,10 @@ webhooks: - changed effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -156028,7 +156049,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -156110,10 +156131,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -156199,7 +156220,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *708 + repository: *709 sender: *4 required: - action @@ -156280,8 +156301,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 marketplace_purchase: title: Marketplace Purchase type: object @@ -156367,9 +156388,9 @@ webhooks: type: integer unit_count: type: integer - organization: *707 - previous_marketplace_purchase: *734 - repository: *708 + organization: *708 + previous_marketplace_purchase: *735 + repository: *709 sender: *4 required: - action @@ -156449,12 +156470,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *705 - installation: *706 - marketplace_purchase: *733 - organization: *707 - previous_marketplace_purchase: *734 - repository: *708 + enterprise: *706 + installation: *707 + marketplace_purchase: *734 + organization: *708 + previous_marketplace_purchase: *735 + repository: *709 sender: *4 required: - action @@ -156556,11 +156577,11 @@ webhooks: type: string required: - to - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156662,11 +156683,11 @@ webhooks: type: - string - 'null' - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156745,11 +156766,11 @@ webhooks: type: string enum: - removed - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 sender: *4 required: - action @@ -156827,11 +156848,11 @@ webhooks: type: string enum: - added - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 scope: description: The scope of the membership. Currently, can only be `team`. @@ -156909,7 +156930,7 @@ webhooks: required: - login - id - team: &735 + team: &736 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -157139,11 +157160,11 @@ webhooks: type: string enum: - removed - enterprise: *705 - installation: *706 - member: *725 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + member: *726 + organization: *708 + repository: *709 scope: description: The scope of the membership. Currently, can only be `team`. @@ -157222,7 +157243,7 @@ webhooks: required: - login - id - team: *735 + team: *736 required: - action - scope @@ -157304,8 +157325,8 @@ webhooks: type: string enum: - checks_requested - installation: *706 - merge_group: &736 + installation: *707 + merge_group: &737 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -157324,15 +157345,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *405 + head_commit: *406 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157418,10 +157439,10 @@ webhooks: - merged - invalidated - dequeued - installation: *706 - merge_group: *736 - organization: *707 - repository: *708 + installation: *707 + merge_group: *737 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157494,7 +157515,7 @@ webhooks: type: string enum: - deleted - enterprise: *705 + enterprise: *706 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -157603,12 +157624,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *706 - organization: *707 + installation: *707 + organization: *708 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -157688,11 +157709,11 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157771,9 +157792,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - milestone: &737 + enterprise: *706 + installation: *707 + milestone: &738 title: Milestone description: A collection of related issues and pull requests. type: object @@ -157915,8 +157936,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -157995,11 +158016,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158109,11 +158130,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - milestone: *730 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *731 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158193,11 +158214,11 @@ webhooks: type: string enum: - opened - enterprise: *705 - installation: *706 - milestone: *737 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + milestone: *738 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158276,11 +158297,11 @@ webhooks: type: string enum: - blocked - blocked_user: *725 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + blocked_user: *726 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158359,11 +158380,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *725 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + blocked_user: *726 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158442,9 +158463,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - membership: &738 + enterprise: *706 + installation: *707 + membership: &739 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -158554,8 +158575,8 @@ webhooks: - role - organization_url - user - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158633,11 +158654,11 @@ webhooks: type: string enum: - member_added - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -158716,8 +158737,8 @@ webhooks: type: string enum: - member_invited - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -158839,10 +158860,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 - user: *725 + user: *726 required: - action - invitation @@ -158920,11 +158941,11 @@ webhooks: type: string enum: - member_removed - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159011,11 +159032,11 @@ webhooks: properties: from: type: string - enterprise: *705 - installation: *706 - membership: *738 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + membership: *739 + organization: *708 + repository: *709 sender: *4 required: - action @@ -159092,9 +159113,9 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 package: description: Information about the package. type: object @@ -159617,7 +159638,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &739 + items: &740 title: Ruby Gems metadata type: object properties: @@ -159714,7 +159735,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -159790,9 +159811,9 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 package: description: Information about the package. type: object @@ -160154,7 +160175,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *739 + items: *740 source_url: type: string format: uri @@ -160225,7 +160246,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -160405,12 +160426,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *705 + enterprise: *706 id: type: integer - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - id @@ -160487,7 +160508,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &740 + personal_access_token_request: &741 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -160637,10 +160658,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *705 - organization: *707 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -160717,11 +160738,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *740 - enterprise: *705 - organization: *707 + personal_access_token_request: *741 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -160797,11 +160818,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *740 - enterprise: *705 - organization: *707 + personal_access_token_request: *741 + enterprise: *706 + organization: *708 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -160876,11 +160897,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *740 - organization: *707 - enterprise: *705 + personal_access_token_request: *741 + organization: *708 + enterprise: *706 sender: *4 - installation: *706 + installation: *707 required: - action - personal_access_token_request @@ -160985,7 +161006,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *741 + last_response: *742 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -161017,8 +161038,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 zen: description: Random string of GitHub zen. @@ -161263,10 +161284,10 @@ webhooks: - from required: - note - enterprise: *705 - installation: *706 - organization: *707 - project_card: &742 + enterprise: *706 + installation: *707 + organization: *708 + project_card: &743 title: Project Card type: object properties: @@ -161389,7 +161410,7 @@ webhooks: - creator - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -161470,11 +161491,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project_card: *742 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_card: *743 + repository: *709 sender: *4 required: - action @@ -161554,9 +161575,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 project_card: title: Project Card type: object @@ -161686,7 +161707,7 @@ webhooks: repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -161780,11 +161801,11 @@ webhooks: - from required: - note - enterprise: *705 - installation: *706 - organization: *707 - project_card: *742 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_card: *743 + repository: *709 sender: *4 required: - action @@ -161878,9 +161899,9 @@ webhooks: - from required: - column_id - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 project_card: allOf: - title: Project Card @@ -162077,7 +162098,7 @@ webhooks: type: string required: - after_id - repository: *708 + repository: *709 sender: *4 required: - action @@ -162157,10 +162178,10 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - organization: *707 - project: &744 + enterprise: *706 + installation: *707 + organization: *708 + project: &745 title: Project type: object properties: @@ -162287,7 +162308,7 @@ webhooks: - creator - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -162367,10 +162388,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project_column: &743 + enterprise: *706 + installation: *707 + organization: *708 + project_column: &744 title: Project Column type: object properties: @@ -162410,7 +162431,7 @@ webhooks: - name - created_at - updated_at - repository: *708 + repository: *709 sender: *4 required: - action @@ -162489,14 +162510,14 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -162585,11 +162606,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 + repository: *709 sender: *4 required: - action @@ -162669,11 +162690,11 @@ webhooks: type: string enum: - moved - enterprise: *705 - installation: *706 - organization: *707 - project_column: *743 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project_column: *744 + repository: *709 sender: *4 required: - action @@ -162753,11 +162774,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -162837,14 +162858,14 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - project: *744 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 repository: anyOf: - type: 'null' - - *708 + - *709 sender: *4 required: - action @@ -162945,11 +162966,11 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -163028,11 +163049,11 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 - organization: *707 - project: *744 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + project: *745 + repository: *709 sender: *4 required: - action @@ -163113,9 +163134,9 @@ webhooks: type: string enum: - closed - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163196,9 +163217,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163279,9 +163300,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163402,9 +163423,9 @@ webhooks: type: string to: type: string - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -163487,7 +163508,7 @@ webhooks: type: string enum: - archived - changes: &748 + changes: &749 type: object properties: archived_at: @@ -163503,9 +163524,9 @@ webhooks: - string - 'null' format: date-time - installation: *706 - organization: *707 - projects_v2_item: &745 + installation: *707 + organization: *708 + projects_v2_item: &746 title: Projects v2 Item description: An item belonging to a project type: object @@ -163523,7 +163544,7 @@ webhooks: type: string description: The node ID of the content represented by this item. - content_type: *268 + content_type: *269 creator: *4 created_at: type: string @@ -163645,9 +163666,9 @@ webhooks: - 'null' to: type: string - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -163729,9 +163750,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -163812,9 +163833,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -163919,7 +163940,7 @@ webhooks: oneOf: - type: string - type: integer - - &746 + - &747 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -163943,7 +163964,7 @@ webhooks: required: - id - name - - &747 + - &748 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -163983,8 +164004,8 @@ webhooks: oneOf: - type: string - type: integer - - *746 - *747 + - *748 type: - 'null' - string @@ -164007,9 +164028,9 @@ webhooks: - 'null' required: - body - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164106,9 +164127,9 @@ webhooks: type: - string - 'null' - installation: *706 - organization: *707 - projects_v2_item: *745 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164191,10 +164212,10 @@ webhooks: type: string enum: - restored - changes: *748 - installation: *706 - organization: *707 - projects_v2_item: *745 + changes: *749 + installation: *707 + organization: *708 + projects_v2_item: *746 sender: *4 required: - action @@ -164276,9 +164297,9 @@ webhooks: type: string enum: - reopened - installation: *706 - organization: *707 - projects_v2: *262 + installation: *707 + organization: *708 + projects_v2: *263 sender: *4 required: - action @@ -164359,9 +164380,9 @@ webhooks: type: string enum: - created - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -164442,9 +164463,9 @@ webhooks: type: string enum: - deleted - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -164590,9 +164611,9 @@ webhooks: - string - 'null' format: date - installation: *706 - organization: *707 - projects_v2_status_update: *749 + installation: *707 + organization: *708 + projects_v2_status_update: *750 sender: *4 required: - action @@ -164663,10 +164684,10 @@ webhooks: title: public event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - repository @@ -164743,13 +164764,13 @@ webhooks: type: string enum: - assigned - assignee: *725 - enterprise: *705 - installation: *706 - number: &750 + assignee: *726 + enterprise: *706 + installation: *707 + number: &751 description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -167101,7 +167122,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -167183,11 +167204,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -169532,7 +169553,7 @@ webhooks: - draft reason: type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -169614,11 +169635,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -171963,7 +171984,7 @@ webhooks: - draft reason: type: string - repository: *708 + repository: *709 sender: *4 required: - action @@ -172045,13 +172066,13 @@ webhooks: type: string enum: - closed - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: &751 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: &752 allOf: - - *564 + - *565 - type: object properties: allow_auto_merge: @@ -172113,7 +172134,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *708 + repository: *709 sender: *4 required: - action @@ -172194,12 +172215,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -172279,11 +172300,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *705 - milestone: *265 - number: *750 - organization: *707 - pull_request: &752 + enterprise: *706 + milestone: *266 + number: *751 + organization: *708 + pull_request: &753 title: Pull Request type: object properties: @@ -174627,7 +174648,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -174706,11 +174727,11 @@ webhooks: type: string enum: - dequeued - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -177073,7 +177094,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *708 + repository: *709 sender: *4 required: - action @@ -177197,12 +177218,12 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -177282,11 +177303,11 @@ webhooks: type: string enum: - enqueued - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -179634,7 +179655,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -179714,11 +179735,11 @@ webhooks: type: string enum: - labeled - enterprise: *705 - installation: *706 - label: *724 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + label: *725 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -182069,7 +182090,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -182150,10 +182171,10 @@ webhooks: type: string enum: - locked - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -184502,7 +184523,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -184582,12 +184603,12 @@ webhooks: type: string enum: - milestoned - enterprise: *705 - milestone: *265 - number: *750 - organization: *707 - pull_request: *752 - repository: *708 + enterprise: *706 + milestone: *266 + number: *751 + organization: *708 + pull_request: *753 + repository: *709 sender: *4 required: - action @@ -184666,12 +184687,12 @@ webhooks: type: string enum: - opened - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -184752,12 +184773,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -184837,12 +184858,12 @@ webhooks: type: string enum: - reopened - enterprise: *705 - installation: *706 - number: *750 - organization: *707 - pull_request: *751 - repository: *708 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 + pull_request: *752 + repository: *709 sender: *4 required: - action @@ -185217,9 +185238,9 @@ webhooks: - start_side - side - reactions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -187452,7 +187473,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -187532,7 +187553,7 @@ webhooks: type: string enum: - deleted - comment: &754 + comment: &755 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -187825,9 +187846,9 @@ webhooks: - start_side - side - reactions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -190048,7 +190069,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -190128,11 +190149,11 @@ webhooks: type: string enum: - edited - changes: *753 - comment: *754 - enterprise: *705 - installation: *706 - organization: *707 + changes: *754 + comment: *755 + enterprise: *706 + installation: *707 + organization: *708 pull_request: type: object properties: @@ -192356,7 +192377,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *708 + repository: *709 sender: *4 required: - action @@ -192437,9 +192458,9 @@ webhooks: type: string enum: - dismissed - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -194675,7 +194696,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 review: description: The review that was affected. type: object @@ -194926,9 +194947,9 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -197037,8 +197058,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 - review: &755 + repository: *709 + review: &756 description: The review that was affected. type: object properties: @@ -197276,12 +197297,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -199631,7 +199652,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_reviewer: title: User type: @@ -199717,12 +199738,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -202079,7 +202100,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_team: title: Team description: Groups of organization members that gives permissions @@ -202274,12 +202295,12 @@ webhooks: type: string enum: - review_requested - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -204631,7 +204652,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_reviewer: title: User type: @@ -204718,12 +204739,12 @@ webhooks: type: string enum: - review_requested - enterprise: *705 - installation: *706 + enterprise: *706 + installation: *707 number: description: The pull request number. type: integer - organization: *707 + organization: *708 pull_request: title: Pull Request type: object @@ -207066,7 +207087,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 requested_team: title: Team description: Groups of organization members that gives permissions @@ -207250,9 +207271,9 @@ webhooks: type: string enum: - submitted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -209491,8 +209512,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 - review: *755 + repository: *709 + review: *756 sender: *4 required: - action @@ -209572,9 +209593,9 @@ webhooks: type: string enum: - resolved - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -211722,7 +211743,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 sender: *4 thread: type: object @@ -212119,9 +212140,9 @@ webhooks: type: string enum: - unresolved - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 pull_request: title: Simple Pull Request type: object @@ -214252,7 +214273,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *708 + repository: *709 sender: *4 thread: type: object @@ -214651,10 +214672,10 @@ webhooks: type: string before: type: string - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -216992,7 +217013,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -217074,11 +217095,11 @@ webhooks: type: string enum: - unassigned - assignee: *756 - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + assignee: *757 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -219431,7 +219452,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -219510,11 +219531,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *705 - installation: *706 - label: *724 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + label: *725 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -221856,7 +221877,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -221937,10 +221958,10 @@ webhooks: type: string enum: - unlocked - enterprise: *705 - installation: *706 - number: *750 - organization: *707 + enterprise: *706 + installation: *707 + number: *751 + organization: *708 pull_request: title: Pull Request type: object @@ -224272,7 +224293,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *708 + repository: *709 sender: *4 required: - action @@ -224475,7 +224496,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *705 + enterprise: *706 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -224570,8 +224591,8 @@ webhooks: - url - author - committer - installation: *706 - organization: *707 + installation: *707 + organization: *708 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -225170,9 +225191,9 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 registry_package: type: object properties: @@ -225649,7 +225670,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *739 + items: *740 summary: type: string tag_name: @@ -225705,7 +225726,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -225783,9 +225804,9 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 registry_package: type: object properties: @@ -226097,7 +226118,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *739 + items: *740 summary: type: string tag_name: @@ -226147,7 +226168,7 @@ webhooks: - owner - package_version - registry - repository: *708 + repository: *709 sender: *4 required: - action @@ -226224,10 +226245,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - release: &757 + enterprise: *706 + installation: *707 + organization: *708 + release: &758 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -226558,7 +226579,7 @@ webhooks: - updated_at - zipball_url - body - repository: *708 + repository: *709 sender: *4 required: - action @@ -226635,11 +226656,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -226756,11 +226777,11 @@ webhooks: type: boolean required: - to - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -226838,9 +226859,9 @@ webhooks: type: string enum: - prereleased - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -227176,7 +227197,7 @@ webhooks: - string - 'null' format: uri - repository: *708 + repository: *709 sender: *4 required: - action @@ -227252,10 +227273,10 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - release: &758 + enterprise: *706 + installation: *707 + organization: *708 + release: &759 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -227588,7 +227609,7 @@ webhooks: - string - 'null' format: uri - repository: *708 + repository: *709 sender: *4 required: - action @@ -227664,11 +227685,11 @@ webhooks: type: string enum: - released - enterprise: *705 - installation: *706 - organization: *707 - release: *757 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *758 + repository: *709 sender: *4 required: - action @@ -227744,11 +227765,11 @@ webhooks: type: string enum: - unpublished - enterprise: *705 - installation: *706 - organization: *707 - release: *758 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + release: *759 + repository: *709 sender: *4 required: - action @@ -227824,11 +227845,11 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_advisory: *628 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_advisory: *629 sender: *4 required: - action @@ -227904,11 +227925,11 @@ webhooks: type: string enum: - reported - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_advisory: *628 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_advisory: *629 sender: *4 required: - action @@ -227984,10 +228005,10 @@ webhooks: type: string enum: - archived - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228064,10 +228085,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228145,10 +228166,10 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228233,10 +228254,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228351,10 +228372,10 @@ webhooks: - 'null' items: type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228426,10 +228447,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 status: type: string @@ -228510,10 +228531,10 @@ webhooks: type: string enum: - privatized - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228590,10 +228611,10 @@ webhooks: type: string enum: - publicized - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228687,10 +228708,10 @@ webhooks: - name required: - repository - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -228770,11 +228791,11 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 sender: *4 required: - action @@ -228852,11 +228873,11 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 sender: *4 required: - action @@ -228934,11 +228955,11 @@ webhooks: type: string enum: - edited - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - repository_ruleset: *307 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + repository_ruleset: *308 changes: type: object properties: @@ -228957,16 +228978,16 @@ webhooks: properties: added: type: array - items: *281 + items: *282 deleted: type: array - items: *281 + items: *282 updated: type: array items: type: object properties: - condition: *281 + condition: *282 changes: type: object properties: @@ -228999,16 +229020,16 @@ webhooks: properties: added: type: array - items: *584 + items: *585 deleted: type: array - items: *584 + items: *585 updated: type: array items: type: object properties: - rule: *584 + rule: *585 changes: type: object properties: @@ -229245,10 +229266,10 @@ webhooks: - from required: - owner - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229326,10 +229347,10 @@ webhooks: type: string enum: - unarchived - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229407,7 +229428,7 @@ webhooks: type: string enum: - create - alert: &759 + alert: &760 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -229532,10 +229553,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229745,10 +229766,10 @@ webhooks: type: string enum: - dismissed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -229826,11 +229847,11 @@ webhooks: type: string enum: - reopen - alert: *759 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *760 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230032,10 +230053,10 @@ webhooks: enum: - fixed - open - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230113,7 +230134,7 @@ webhooks: type: string enum: - assigned - alert: &760 + alert: &761 type: object properties: number: *170 @@ -230242,10 +230263,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230323,11 +230344,11 @@ webhooks: type: string enum: - created - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230408,11 +230429,11 @@ webhooks: type: string enum: - created - alert: *760 - installation: *706 - location: *761 - organization: *707 - repository: *708 + alert: *761 + installation: *707 + location: *762 + organization: *708 + repository: *709 sender: *4 required: - location @@ -230650,11 +230671,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230732,11 +230753,11 @@ webhooks: type: string enum: - reopened - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230814,11 +230835,11 @@ webhooks: type: string enum: - resolved - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230896,12 +230917,12 @@ webhooks: type: string enum: - unassigned - alert: *760 + alert: *761 assignee: *4 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -230979,11 +231000,11 @@ webhooks: type: string enum: - validated - alert: *760 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + alert: *761 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -231113,10 +231134,10 @@ webhooks: - organization - enterprise - - repository: *708 - enterprise: *705 - installation: *706 - organization: *707 + repository: *709 + enterprise: *706 + installation: *707 + organization: *708 sender: *4 required: - action @@ -231194,11 +231215,11 @@ webhooks: type: string enum: - published - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - security_advisory: &762 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + security_advisory: &763 description: The details of the security advisory, including summary, description, and severity. type: object @@ -231371,11 +231392,11 @@ webhooks: type: string enum: - updated - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 - security_advisory: *762 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 + security_advisory: *763 sender: *4 required: - action @@ -231448,10 +231469,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -231624,11 +231645,11 @@ webhooks: from: type: object properties: - security_and_analysis: *280 - enterprise: *705 - installation: *706 - organization: *707 - repository: *327 + security_and_analysis: *281 + enterprise: *706 + installation: *707 + organization: *708 + repository: *328 sender: *4 required: - changes @@ -231706,12 +231727,12 @@ webhooks: type: string enum: - cancelled - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: &763 + sponsorship: &764 type: object properties: created_at: @@ -232016,12 +232037,12 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - sponsorship @@ -232109,12 +232130,12 @@ webhooks: type: string required: - from - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -232191,17 +232212,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &764 + effective_date: &765 description: The `pending_cancellation` and `pending_tier_change` event types will include the date the cancellation or tier change will take effect. type: string - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - sponsorship @@ -232275,7 +232296,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &765 + changes: &766 type: object properties: tier: @@ -232319,13 +232340,13 @@ webhooks: - from required: - tier - effective_date: *764 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + effective_date: *765 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -232402,13 +232423,13 @@ webhooks: type: string enum: - tier_changed - changes: *765 - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + changes: *766 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - sponsorship: *763 + sponsorship: *764 required: - action - changes @@ -232482,10 +232503,10 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -232569,10 +232590,10 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -233006,15 +233027,15 @@ webhooks: type: - string - 'null' - enterprise: *705 + enterprise: *706 id: description: The unique identifier of the status. type: integer - installation: *706 + installation: *707 name: type: string - organization: *707 - repository: *708 + organization: *708 + repository: *709 sender: *4 sha: description: The Commit SHA. @@ -233130,9 +233151,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -233222,9 +233243,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -233314,9 +233335,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -233406,9 +233427,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *81 - installation: *706 - organization: *707 - repository: *708 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -233485,12 +233506,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - team: &766 + team: &767 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -233720,9 +233741,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -234192,7 +234213,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -234268,9 +234289,9 @@ webhooks: type: string enum: - created - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -234740,7 +234761,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -234817,9 +234838,9 @@ webhooks: type: string enum: - deleted - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -235289,7 +235310,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -235433,9 +235454,9 @@ webhooks: - from required: - permissions - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -235905,7 +235926,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - changes @@ -235983,9 +236004,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *705 - installation: *706 - organization: *707 + enterprise: *706 + installation: *707 + organization: *708 repository: title: Repository description: A git repository @@ -236455,7 +236476,7 @@ webhooks: - topics - visibility sender: *4 - team: *766 + team: *767 required: - action - team @@ -236531,10 +236552,10 @@ webhooks: type: string enum: - started - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 required: - action @@ -236607,17 +236628,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *705 + enterprise: *706 inputs: type: - object - 'null' additionalProperties: true - installation: *706 - organization: *707 + installation: *707 + organization: *708 ref: type: string - repository: *708 + repository: *709 sender: *4 workflow: type: string @@ -236699,10 +236720,10 @@ webhooks: type: string enum: - completed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: allOf: @@ -236958,7 +236979,7 @@ webhooks: type: string required: - conclusion - deployment: *480 + deployment: *481 required: - action - repository @@ -237037,10 +237058,10 @@ webhooks: type: string enum: - in_progress - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: allOf: @@ -237322,7 +237343,7 @@ webhooks: required: - status - steps - deployment: *480 + deployment: *481 required: - action - repository @@ -237401,10 +237422,10 @@ webhooks: type: string enum: - queued - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: type: object @@ -237550,7 +237571,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *480 + deployment: *481 required: - action - repository @@ -237629,10 +237650,10 @@ webhooks: type: string enum: - waiting - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 workflow_job: type: object @@ -237779,7 +237800,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *480 + deployment: *481 required: - action - repository @@ -237859,12 +237880,12 @@ webhooks: type: string enum: - completed - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object @@ -238883,12 +238904,12 @@ webhooks: type: string enum: - in_progress - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object @@ -239892,12 +239913,12 @@ webhooks: type: string enum: - requested - enterprise: *705 - installation: *706 - organization: *707 - repository: *708 + enterprise: *706 + installation: *707 + organization: *708 + repository: *709 sender: *4 - workflow: *720 + workflow: *721 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index 8c889c4cca..d5547cf574 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -28224,6 +28224,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -28566,6 +28574,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -135576,6 +135593,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -135943,6 +135968,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -390255,6 +390289,14 @@ "type": "string" } }, + { + "name": "classification", + "in": "query", + "description": "A comma-separated list of vulnerability classifications. If specified, only alerts for vulnerabilities with these classifications will be returned.\n\nCan be: `malware`, `general`", + "schema": { + "type": "string" + } + }, { "name": "state", "in": "query", @@ -390605,6 +390647,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -392118,6 +392169,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -393460,6 +393520,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -675952,7 +676021,7 @@ "/search/code": { "get": { "summary": "Search code", - "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", + "description": "Searches for query terms inside of a file. This method returns up to 100 results [per page](https://docs.github.com/rest/guides/using-pagination-in-the-rest-api).\n\nWhen searching for code, you can get text match metadata for the file **content** and file **path** fields when you pass the `text-match` media type. For more details about how to receive highlighted search results, see [Text match metadata](https://docs.github.com/rest/search/search#text-match-metadata).\n\nFor example, if you want to find the definition of the `addClass` function inside [jQuery](https://github.com/jquery/jquery) repository, your query would look something like this:\n\n`q=addClass+in:file+language:js+repo:jquery/jquery`\n\nThis query searches for the keyword `addClass` within a file's contents. The query limits the search to files where the language is JavaScript in the `jquery/jquery` repository.\n\nConsiderations for code search:\n\nDue to the complexity of searching code, there are a few restrictions on how searches are performed:\n\n* Only the _default branch_ is considered. In most cases, this will be the `master` branch.\n* Only files smaller than 384 KB are searchable.\n* You must always include at least one search term when searching source code. For example, searching for [`language:go`](https://github.com/search?utf8=%E2%9C%93&q=language%3Ago&type=Code) is not valid, while [`amazing\nlanguage:go`](https://github.com/search?utf8=%E2%9C%93&q=amazing+language%3Ago&type=Code) is.\n\n> [!NOTE]\n> `repository.description`, `repository.owner.type`, and `repository.owner.node_id` are closing down on this endpoint and will return `null` in a future API version. Use the [Get a repository](https://docs.github.com/rest/repos/repos#get-a-repository) endpoint (`GET /repos/{owner}/{repo}`) to retrieve full repository metadata.\n\nThis endpoint requires you to authenticate and limits you to 10 requests per minute.", "tags": [ "search" ], @@ -945164,6 +945233,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -948199,6 +948277,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -951234,6 +951321,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -954269,6 +954365,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -957304,6 +957409,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -960339,6 +960453,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -963374,6 +963497,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + }, "cvss": { "type": "object", "description": "Details for the advisory pertaining to the Common Vulnerability Scoring System.", @@ -966409,6 +966541,15 @@ "critical" ] }, + "classification": { + "type": "string", + "description": "The classification of the advisory.", + "readOnly": true, + "enum": [ + "general", + "malware" + ] + {"code":"deadline_exceeded","msg":"operation timed out"}