diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index 87e998f15..4b8f7d696 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -4263,7 +4263,7 @@ "/app/installations/{installation_id}/access_tokens": { "post": { "summary": "Create an installation access token for an app", - "description": "Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.\n\nOptionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.\n\nOptionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.\n\nYou must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.", + "description": "Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.\n\n> [!NOTE]\n> Starting April 27, 2026, GitHub began a staged rollout of a stateless format (`ghs_APPID_JWT`) to all newly minted GitHub App installation tokens, making them more performant and improving the reliability of our API surface. If your application expects or relies on installation tokens being exactly 40 characters long, it may not handle this new token format correctly. You can now validate your apps and workflows using a temporary request header that lets you enable the token format on demand. For more information about the temporary header, see [the GitHub blog](https://github.blog/changelog/2026-05-15-github-app-installation-tokens-per-request-override-header).\n\nOptionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.\n\nOptionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.\n\nYou must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.", "tags": [ "apps" ], @@ -35488,6 +35488,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -58806,6 +58809,59 @@ } } }, + "/repos/{owner}/{repo}/hash-algorithm": { + "get": { + "summary": "Get the hash algorithm for a repository", + "description": "Returns the hash algorithm used to store repository objects.", + "tags": [ + "repos" + ], + "operationId": "repos/get-hash-algorithm", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/repository-hash-algorithm" + }, + "examples": { + "default": { + "value": { + "hash_algorithm": "sha1" + } + } + } + } + } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "repos", + "subcategory": "repos" + } + } + }, "/repos/{owner}/{repo}/hooks": { "get": { "summary": "List repository webhooks", @@ -71145,6 +71201,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -123138,6 +123197,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -142436,6 +142501,25 @@ "truncated" ] }, + "repository-hash-algorithm": { + "title": "Repository hash algorithm", + "description": "Repository hash algorithm", + "type": "object", + "properties": { + "hash_algorithm": { + "type": "string", + "description": "The Git hash algorithm used by this repository.", + "enum": [ + "sha1", + "sha256" + ], + "example": "sha1" + } + }, + "required": [ + "hash_algorithm" + ] + }, "hook-response": { "title": "Hook Response", "type": "object", @@ -301619,6 +301703,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -301644,6 +301729,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -301758,6 +301844,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -330097,6 +330184,21 @@ "default": "all" } }, + "evaluate-status": { + "name": "evaluate_status", + "description": "The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned.\n - `all` - all rule suites will be returned.\n - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned.\n - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "all", + "active", + "evaluate" + ], + "default": "all" + } + }, "rule-suite-id": { "name": "rule_suite_id", "description": "The unique identifier of the rule suite result.\nTo get this ID, you can use [GET /repos/{owner}/{repo}/rulesets/rule-suites](https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites)\nfor repositories and [GET /orgs/{org}/rulesets/rule-suites](https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites)\nfor organizations.", diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index d1c928c81..29ded55f2 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -3272,6 +3272,9 @@ paths: description: |- Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access. + > [!NOTE] + > Starting April 27, 2026, GitHub began a staged rollout of a stateless format (`ghs_APPID_JWT`) to all newly minted GitHub App installation tokens, making them more performant and improving the reliability of our API surface. If your application expects or relies on installation tokens being exactly 40 characters long, it may not handle this new token format correctly. You can now validate your apps and workflows using a temporary request header that lets you enable the token format on demand. For more information about the temporary header, see [the GitHub blog](https://github.blog/changelog/2026-05-15-github-app-installation-tokens-per-request-override-header). + Optionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner. Optionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted. @@ -26225,6 +26228,7 @@ paths: - "$ref": "#/components/parameters/time-period" - "$ref": "#/components/parameters/actor-name-in-query" - "$ref": "#/components/parameters/rule-suite-result" + - "$ref": "#/components/parameters/evaluate-status" - "$ref": "#/components/parameters/per-page" - "$ref": "#/components/parameters/page" responses: @@ -43447,6 +43451,39 @@ paths: enabledForGitHubApps: true category: git subcategory: trees + "/repos/{owner}/{repo}/hash-algorithm": + get: + summary: Get the hash algorithm for a repository + description: Returns the hash algorithm used to store repository objects. + tags: + - repos + operationId: repos/get-hash-algorithm + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/repository-hash-algorithm" + examples: + default: + value: + hash_algorithm: sha1 + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/hooks": get: summary: List repository webhooks @@ -52221,6 +52258,7 @@ paths: - "$ref": "#/components/parameters/time-period" - "$ref": "#/components/parameters/actor-name-in-query" - "$ref": "#/components/parameters/rule-suite-result" + - "$ref": "#/components/parameters/evaluate-status" - "$ref": "#/components/parameters/per-page" - "$ref": "#/components/parameters/page" responses: @@ -90253,6 +90291,12 @@ components: "$ref": "#/components/schemas/runner-label" ephemeral: type: boolean + version: + description: The version of the GitHub Actions Runner software. This is + only set if the runner has connected to the service at least once. + nullable: true + type: string + example: 2.323.0 required: - id - name @@ -105442,6 +105486,20 @@ components: - sha - tree - truncated + repository-hash-algorithm: + title: Repository hash algorithm + description: Repository hash algorithm + type: object + properties: + hash_algorithm: + type: string + description: The Git hash algorithm used by this repository. + enum: + - sha1 + - sha256 + example: sha1 + required: + - hash_algorithm hook-response: title: Hook Response type: object @@ -226338,6 +226396,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -226354,6 +226413,7 @@ components: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -226427,6 +226487,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -250780,6 +250841,22 @@ components: - bypass - all default: all + evaluate-status: + name: evaluate_status + description: |- + The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. + - `all` - all rule suites will be returned. + - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned. + - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned. + in: query + required: false + schema: + type: string + enum: + - all + - active + - evaluate + default: all rule-suite-id: name: rule_suite_id description: |- diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.json b/descriptions/api.github.com/api.github.com.2026-03-10.json index 5dc522070..97f34dc77 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions/api.github.com/api.github.com.2026-03-10.json @@ -4263,7 +4263,7 @@ "/app/installations/{installation_id}/access_tokens": { "post": { "summary": "Create an installation access token for an app", - "description": "Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.\n\nOptionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.\n\nOptionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.\n\nYou must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.", + "description": "Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.\n\n> [!NOTE]\n> Starting April 27, 2026, GitHub began a staged rollout of a stateless format (`ghs_APPID_JWT`) to all newly minted GitHub App installation tokens, making them more performant and improving the reliability of our API surface. If your application expects or relies on installation tokens being exactly 40 characters long, it may not handle this new token format correctly. You can now validate your apps and workflows using a temporary request header that lets you enable the token format on demand. For more information about the temporary header, see [the GitHub blog](https://github.blog/changelog/2026-05-15-github-app-installation-tokens-per-request-override-header).\n\nOptionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.\n\nOptionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.\n\nYou must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.", "tags": [ "apps" ], @@ -35450,6 +35450,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -58733,6 +58736,59 @@ } } }, + "/repos/{owner}/{repo}/hash-algorithm": { + "get": { + "summary": "Get the hash algorithm for a repository", + "description": "Returns the hash algorithm used to store repository objects.", + "tags": [ + "repos" + ], + "operationId": "repos/get-hash-algorithm", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/repository-hash-algorithm" + }, + "examples": { + "default": { + "value": { + "hash_algorithm": "sha1" + } + } + } + } + } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "repos", + "subcategory": "repos" + } + } + }, "/repos/{owner}/{repo}/hooks": { "get": { "summary": "List repository webhooks", @@ -71062,6 +71118,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -122642,6 +122701,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -141865,6 +141930,25 @@ "truncated" ] }, + "repository-hash-algorithm": { + "title": "Repository hash algorithm", + "description": "Repository hash algorithm", + "type": "object", + "properties": { + "hash_algorithm": { + "type": "string", + "description": "The Git hash algorithm used by this repository.", + "enum": [ + "sha1", + "sha256" + ], + "example": "sha1" + } + }, + "required": [ + "hash_algorithm" + ] + }, "hook-response": { "title": "Hook Response", "type": "object", @@ -300873,6 +300957,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -300898,6 +300983,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -301012,6 +301098,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -329252,6 +329339,21 @@ "default": "all" } }, + "evaluate-status": { + "name": "evaluate_status", + "description": "The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned.\n - `all` - all rule suites will be returned.\n - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned.\n - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "all", + "active", + "evaluate" + ], + "default": "all" + } + }, "rule-suite-id": { "name": "rule_suite_id", "description": "The unique identifier of the rule suite result.\nTo get this ID, you can use [GET /repos/{owner}/{repo}/rulesets/rule-suites](https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites)\nfor repositories and [GET /orgs/{org}/rulesets/rule-suites](https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites)\nfor organizations.", diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.yaml b/descriptions/api.github.com/api.github.com.2026-03-10.yaml index 246ec4d3c..e0ecad9f4 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions/api.github.com/api.github.com.2026-03-10.yaml @@ -3272,6 +3272,9 @@ paths: description: |- Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access. + > [!NOTE] + > Starting April 27, 2026, GitHub began a staged rollout of a stateless format (`ghs_APPID_JWT`) to all newly minted GitHub App installation tokens, making them more performant and improving the reliability of our API surface. If your application expects or relies on installation tokens being exactly 40 characters long, it may not handle this new token format correctly. You can now validate your apps and workflows using a temporary request header that lets you enable the token format on demand. For more information about the temporary header, see [the GitHub blog](https://github.blog/changelog/2026-05-15-github-app-installation-tokens-per-request-override-header). + Optionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner. Optionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted. @@ -26196,6 +26199,7 @@ paths: - "$ref": "#/components/parameters/time-period" - "$ref": "#/components/parameters/actor-name-in-query" - "$ref": "#/components/parameters/rule-suite-result" + - "$ref": "#/components/parameters/evaluate-status" - "$ref": "#/components/parameters/per-page" - "$ref": "#/components/parameters/page" responses: @@ -43387,6 +43391,39 @@ paths: enabledForGitHubApps: true category: git subcategory: trees + "/repos/{owner}/{repo}/hash-algorithm": + get: + summary: Get the hash algorithm for a repository + description: Returns the hash algorithm used to store repository objects. + tags: + - repos + operationId: repos/get-hash-algorithm + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/repository-hash-algorithm" + examples: + default: + value: + hash_algorithm: sha1 + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/hooks": get: summary: List repository webhooks @@ -52149,6 +52186,7 @@ paths: - "$ref": "#/components/parameters/time-period" - "$ref": "#/components/parameters/actor-name-in-query" - "$ref": "#/components/parameters/rule-suite-result" + - "$ref": "#/components/parameters/evaluate-status" - "$ref": "#/components/parameters/per-page" - "$ref": "#/components/parameters/page" responses: @@ -89861,6 +89899,12 @@ components: "$ref": "#/components/schemas/runner-label" ephemeral: type: boolean + version: + description: The version of the GitHub Actions Runner software. This is + only set if the runner has connected to the service at least once. + nullable: true + type: string + example: 2.323.0 required: - id - name @@ -104988,6 +105032,20 @@ components: - sha - tree - truncated + repository-hash-algorithm: + title: Repository hash algorithm + description: Repository hash algorithm + type: object + properties: + hash_algorithm: + type: string + description: The Git hash algorithm used by this repository. + enum: + - sha1 + - sha256 + example: sha1 + required: + - hash_algorithm hook-response: title: Hook Response type: object @@ -225665,6 +225723,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -225681,6 +225740,7 @@ components: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -225754,6 +225814,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -250014,6 +250075,22 @@ components: - bypass - all default: all + evaluate-status: + name: evaluate_status + description: |- + The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. + - `all` - all rule suites will be returned. + - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned. + - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned. + in: query + required: false + schema: + type: string + enum: + - all + - active + - evaluate + default: all rule-suite-id: name: rule_suite_id description: |- diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index 2d786c557..47eb32ae2 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -4277,7 +4277,7 @@ "/app/installations/{installation_id}/access_tokens": { "post": { "summary": "Create an installation access token for an app", - "description": "Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.\n\nOptionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.\n\nOptionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.\n\nYou must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.", + "description": "Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.\n\n> [!NOTE]\n> Starting April 27, 2026, GitHub began a staged rollout of a stateless format (`ghs_APPID_JWT`) to all newly minted GitHub App installation tokens, making them more performant and improving the reliability of our API surface. If your application expects or relies on installation tokens being exactly 40 characters long, it may not handle this new token format correctly. You can now validate your apps and workflows using a temporary request header that lets you enable the token format on demand. For more information about the temporary header, see [the GitHub blog](https://github.blog/changelog/2026-05-15-github-app-installation-tokens-per-request-override-header).\n\nOptionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.\n\nOptionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.\n\nYou must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.", "tags": [ "apps" ], @@ -35680,6 +35680,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -59075,6 +59078,59 @@ } } }, + "/repos/{owner}/{repo}/hash-algorithm": { + "get": { + "summary": "Get the hash algorithm for a repository", + "description": "Returns the hash algorithm used to store repository objects.", + "tags": [ + "repos" + ], + "operationId": "repos/get-hash-algorithm", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository" + }, + "parameters": [ + { + "$ref": "#/components/parameters/owner" + }, + { + "$ref": "#/components/parameters/repo" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/repository-hash-algorithm" + }, + "examples": { + "default": { + "value": { + "hash_algorithm": "sha1" + } + } + } + } + } + }, + "403": { + "$ref": "#/components/responses/forbidden" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "repos", + "subcategory": "repos" + } + } + }, "/repos/{owner}/{repo}/hooks": { "get": { "summary": "List repository webhooks", @@ -71452,6 +71508,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -123890,6 +123949,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -143586,6 +143651,25 @@ "truncated" ] }, + "repository-hash-algorithm": { + "title": "Repository hash algorithm", + "description": "Repository hash algorithm", + "type": "object", + "properties": { + "hash_algorithm": { + "type": "string", + "description": "The Git hash algorithm used by this repository.", + "enum": [ + "sha1", + "sha256" + ], + "example": "sha1" + } + }, + "required": [ + "hash_algorithm" + ] + }, "hook-response": { "title": "Hook Response", "type": "object", @@ -303754,6 +303838,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -303779,6 +303864,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -303893,6 +303979,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -332408,6 +332495,21 @@ "default": "all" } }, + "evaluate-status": { + "name": "evaluate_status", + "description": "The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned.\n - `all` - all rule suites will be returned.\n - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned.\n - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "all", + "active", + "evaluate" + ], + "default": "all" + } + }, "rule-suite-id": { "name": "rule_suite_id", "description": "The unique identifier of the rule suite result.\nTo get this ID, you can use [GET /repos/{owner}/{repo}/rulesets/rule-suites](https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites)\nfor repositories and [GET /orgs/{org}/rulesets/rule-suites](https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites)\nfor organizations.", diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index 5877e7a0b..9ac76de2a 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -3280,6 +3280,9 @@ paths: description: |- Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access. + > [!NOTE] + > Starting April 27, 2026, GitHub began a staged rollout of a stateless format (`ghs_APPID_JWT`) to all newly minted GitHub App installation tokens, making them more performant and improving the reliability of our API surface. If your application expects or relies on installation tokens being exactly 40 characters long, it may not handle this new token format correctly. You can now validate your apps and workflows using a temporary request header that lets you enable the token format on demand. For more information about the temporary header, see [the GitHub blog](https://github.blog/changelog/2026-05-15-github-app-installation-tokens-per-request-override-header). + Optionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner. Optionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted. @@ -26327,6 +26330,7 @@ paths: - "$ref": "#/components/parameters/time-period" - "$ref": "#/components/parameters/actor-name-in-query" - "$ref": "#/components/parameters/rule-suite-result" + - "$ref": "#/components/parameters/evaluate-status" - "$ref": "#/components/parameters/per-page" - "$ref": "#/components/parameters/page" responses: @@ -43615,6 +43619,39 @@ paths: enabledForGitHubApps: true category: git subcategory: trees + "/repos/{owner}/{repo}/hash-algorithm": + get: + summary: Get the hash algorithm for a repository + description: Returns the hash algorithm used to store repository objects. + tags: + - repos + operationId: repos/get-hash-algorithm + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository + parameters: + - "$ref": "#/components/parameters/owner" + - "$ref": "#/components/parameters/repo" + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/repository-hash-algorithm" + examples: + default: + value: + hash_algorithm: sha1 + '403': + "$ref": "#/components/responses/forbidden" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/hooks": get: summary: List repository webhooks @@ -52409,6 +52446,7 @@ paths: - "$ref": "#/components/parameters/time-period" - "$ref": "#/components/parameters/actor-name-in-query" - "$ref": "#/components/parameters/rule-suite-result" + - "$ref": "#/components/parameters/evaluate-status" - "$ref": "#/components/parameters/per-page" - "$ref": "#/components/parameters/page" responses: @@ -90743,6 +90781,12 @@ components: "$ref": "#/components/schemas/runner-label" ephemeral: type: boolean + version: + description: The version of the GitHub Actions Runner software. This is + only set if the runner has connected to the service at least once. + nullable: true + type: string + example: 2.323.0 required: - id - name @@ -106258,6 +106302,20 @@ components: - sha - tree - truncated + repository-hash-algorithm: + title: Repository hash algorithm + description: Repository hash algorithm + type: object + properties: + hash_algorithm: + type: string + description: The Git hash algorithm used by this repository. + enum: + - sha1 + - sha256 + example: sha1 + required: + - hash_algorithm hook-response: title: Hook Response type: object @@ -227740,6 +227798,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -227756,6 +227815,7 @@ components: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -227829,6 +227889,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -252270,6 +252331,22 @@ components: - bypass - all default: all + evaluate-status: + name: evaluate_status + description: |- + The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. + - `all` - all rule suites will be returned. + - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned. + - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned. + in: query + required: false + schema: + type: string + enum: + - all + - active + - evaluate + default: all rule-suite-id: name: rule_suite_id description: |- diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index bc7806b70..36e91dcdd 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -9693,7 +9693,7 @@ "/app/installations/{installation_id}/access_tokens": { "post": { "summary": "Create an installation access token for an app", - "description": "Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.\n\nOptionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.\n\nOptionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.\n\nYou must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.", + "description": "Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.\n\n> [!NOTE]\n> Starting April 27, 2026, GitHub began a staged rollout of a stateless format (`ghs_APPID_JWT`) to all newly minted GitHub App installation tokens, making them more performant and improving the reliability of our API surface. If your application expects or relies on installation tokens being exactly 40 characters long, it may not handle this new token format correctly. You can now validate your apps and workflows using a temporary request header that lets you enable the token format on demand. For more information about the temporary header, see [the GitHub blog](https://github.blog/changelog/2026-05-15-github-app-installation-tokens-per-request-override-header).\n\nOptionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.\n\nOptionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.\n\nYou must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.", "tags": [ "apps" ], @@ -89030,6 +89030,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -89056,6 +89062,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -89081,6 +89088,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -89440,6 +89448,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -89466,6 +89480,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -89491,6 +89506,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -89802,6 +89818,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -91726,6 +91748,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -91746,6 +91774,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -214820,6 +214849,21 @@ "default": "all" } }, + { + "name": "evaluate_status", + "description": "The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned.\n - `all` - all rule suites will be returned.\n - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned.\n - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "all", + "active", + "evaluate" + ], + "default": "all" + } + }, { "name": "per_page", "description": "The number of results per page (max 100). 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).\"", @@ -247966,6 +248010,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -247992,6 +248042,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -248017,6 +248068,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -248346,6 +248398,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -250297,6 +250355,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -250317,6 +250381,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -377476,6 +377541,133 @@ } } }, + "/repos/{owner}/{repo}/hash-algorithm": { + "get": { + "summary": "Get the hash algorithm for a repository", + "description": "Returns the hash algorithm used to store repository objects.", + "tags": [ + "repos" + ], + "operationId": "repos/get-hash-algorithm", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Repository hash algorithm", + "description": "Repository hash algorithm", + "type": "object", + "properties": { + "hash_algorithm": { + "type": "string", + "description": "The Git hash algorithm used by this repository.", + "enum": [ + "sha1", + "sha256" + ], + "example": "sha1" + } + }, + "required": [ + "hash_algorithm" + ] + }, + "examples": { + "default": { + "value": { + "hash_algorithm": "sha1" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "repos", + "subcategory": "repos" + } + } + }, "/repos/{owner}/{repo}/hooks": { "get": { "summary": "List repository webhooks", @@ -539110,6 +539302,21 @@ "default": "all" } }, + { + "name": "evaluate_status", + "description": "The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned.\n - `all` - all rule suites will be returned.\n - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned.\n - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "all", + "active", + "evaluate" + ], + "default": "all" + } + }, { "name": "per_page", "description": "The number of results per page (max 100). 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).\"", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index f5c72faba..99faf63bf 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -1030,7 +1030,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &676 + - &677 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -5377,6 +5377,9 @@ paths: description: |- Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access. + > [!NOTE] + > Starting April 27, 2026, GitHub began a staged rollout of a stateless format (`ghs_APPID_JWT`) to all newly minted GitHub App installation tokens, making them more performant and improving the reliability of our API surface. If your application expects or relies on installation tokens being exactly 40 characters long, it may not handle this new token format correctly. You can now validate your apps and workflows using a temporary request header that lets you enable the token format on demand. For more information about the temporary header, see [the GitHub blog](https://github.blog/changelog/2026-05-15-github-app-installation-tokens-per-request-override-header). + Optionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner. Optionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted. @@ -14095,7 +14098,7 @@ paths: properties: action: type: string - discussion: &770 + discussion: &771 title: Discussion description: A Discussion in a repository. type: object @@ -14840,7 +14843,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &687 + sub_issues_summary: &688 title: Sub-issues Summary type: object properties: @@ -14953,7 +14956,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &688 + issue_dependencies_summary: &689 title: Issue Dependencies Summary type: object properties: @@ -16397,7 +16400,7 @@ paths: url: type: string format: uri - user: &694 + user: &695 title: Public User description: Public User type: object @@ -21631,7 +21634,7 @@ paths: required: false schema: type: string - - &745 + - &746 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -21777,7 +21780,7 @@ paths: parameters: - *78 - *124 - - &746 + - &747 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 @@ -21889,7 +21892,7 @@ paths: - *124 - *126 - *125 - - &747 + - &748 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -21897,7 +21900,7 @@ paths: schema: type: string - *127 - - &748 + - &749 name: sku description: The SKU to query for usage. in: query @@ -26027,6 +26030,13 @@ paths: - name ephemeral: type: boolean + version: + description: The version of the GitHub Actions Runner software. + This is only set if the runner has connected to the service + at least once. + nullable: true + type: string + example: 2.323.0 required: - id - name @@ -26045,6 +26055,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -26061,6 +26072,7 @@ paths: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -26556,6 +26568,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -29398,12 +29411,12 @@ paths: required: - subject_digests examples: - default: &726 + default: &727 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &727 + withPredicateType: &728 value: subject_digests: - sha256:abc123 @@ -29461,7 +29474,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &728 + default: &729 value: attestations_subject_digests: - sha256:abc: @@ -41943,7 +41956,7 @@ paths: parameters: - *78 - *267 - - &709 + - &710 name: repo_name description: repo_name parameter in: path @@ -42984,7 +42997,7 @@ paths: - nuget - container - *78 - - &710 + - &711 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43025,7 +43038,7 @@ paths: default: *274 '403': *29 '401': *25 - '400': &712 + '400': &713 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -45122,7 +45135,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &801 + properties: &802 id: type: number description: The unique identifier of the status update. @@ -45170,7 +45183,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &802 + required: &803 - id - node_id - created_at @@ -45988,7 +46001,7 @@ paths: - updated_at - project_url examples: - default: &732 + default: &733 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46165,7 +46178,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &733 + items: &734 type: object properties: name: @@ -46202,7 +46215,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &734 + iteration_configuration: &735 type: object description: The configuration for iteration fields. properties: @@ -46252,7 +46265,7 @@ paths: value: name: Due date data_type: date - single_select_field: &735 + single_select_field: &736 summary: Create a single select field value: name: Priority @@ -46279,7 +46292,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &736 + iteration_field: &737 summary: Create an iteration field value: name: Sprint @@ -46305,7 +46318,7 @@ paths: application/json: schema: *295 examples: - text_field: &737 + text_field: &738 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -46314,7 +46327,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: &738 + number_field: &739 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -46323,7 +46336,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: &739 + date_field: &740 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -46332,7 +46345,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: &740 + single_select_field: &741 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46366,7 +46379,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &741 + iteration_field: &742 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -46412,7 +46425,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *291 - - &742 + - &743 name: field_id description: The unique identifier of the field. in: path @@ -46427,7 +46440,7 @@ paths: application/json: schema: *295 examples: - default: &743 + default: &744 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47624,7 +47637,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &723 + schema: &724 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -47801,7 +47814,7 @@ paths: parameters: - *291 - *78 - - &744 + - &745 name: view_number description: The number that identifies the project view. in: path @@ -51065,6 +51078,22 @@ paths: - bypass - all default: all + - &631 + name: evaluate_status + description: |- + The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. + - `all` - all rule suites will be returned. + - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned. + - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned. + in: query + required: false + schema: + type: string + enum: + - all + - active + - evaluate + default: all - *17 - *19 responses: @@ -51072,7 +51101,7 @@ paths: description: Response content: application/json: - schema: &631 + schema: &632 title: Rule Suites description: Response type: array @@ -51127,7 +51156,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &632 + default: &633 value: - id: 21 actor_id: 12 @@ -51171,7 +51200,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *78 - - &633 + - &634 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -51187,7 +51216,7 @@ paths: description: Response content: application/json: - schema: &634 + schema: &635 title: Rule Suite description: Response type: object @@ -51286,7 +51315,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &635 + default: &636 value: id: 21 actor_id: 12 @@ -51533,7 +51562,7 @@ paths: type: string format: date-time examples: - default: &637 + default: &638 value: - version_id: 3 actor: @@ -51586,7 +51615,7 @@ paths: description: Response content: application/json: - schema: &638 + schema: &639 allOf: - *340 - type: object @@ -51658,7 +51687,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *78 - - &639 + - &640 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -51669,7 +51698,7 @@ paths: enum: - open - resolved - - &640 + - &641 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -51679,7 +51708,7 @@ paths: required: false schema: type: string - - &641 + - &642 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -51690,7 +51719,7 @@ paths: required: false schema: type: string - - &642 + - &643 name: exclude_providers in: query description: |- @@ -51701,7 +51730,7 @@ paths: required: false schema: type: string - - &643 + - &644 name: providers in: query description: |- @@ -51712,7 +51741,7 @@ paths: required: false schema: type: string - - &644 + - &645 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -51721,7 +51750,7 @@ paths: required: false schema: type: string - - &645 + - &646 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -51740,7 +51769,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &646 + - &647 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. @@ -51755,7 +51784,7 @@ paths: - *62 - *19 - *17 - - &647 + - &648 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 @@ -51765,7 +51794,7 @@ paths: required: false schema: type: string - - &648 + - &649 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 @@ -51775,7 +51804,7 @@ paths: required: false schema: type: string - - &649 + - &650 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -51784,7 +51813,7 @@ paths: required: false schema: type: string - - &650 + - &651 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -51793,7 +51822,7 @@ paths: schema: type: boolean default: false - - &651 + - &652 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -51802,7 +51831,7 @@ paths: schema: type: boolean default: false - - &652 + - &653 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -51811,7 +51840,7 @@ paths: schema: type: boolean default: false - - &653 + - &654 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -51848,14 +51877,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &654 + state: &655 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: &655 + resolution: &656 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -51972,8 +52001,8 @@ paths: pull request. ' - oneOf: &656 - - &658 + oneOf: &657 + - &659 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -52031,7 +52060,7 @@ paths: - blob_url - commit_sha - commit_url - - &659 + - &660 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. @@ -52086,7 +52115,7 @@ paths: - page_url - commit_sha - commit_url - - &660 + - &661 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -52106,7 +52135,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &661 + - &662 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -52126,7 +52155,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &662 + - &663 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -52146,7 +52175,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &663 + - &664 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -52160,7 +52189,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &664 + - &665 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -52174,7 +52203,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &665 + - &666 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -52188,7 +52217,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &666 + - &667 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. @@ -52208,7 +52237,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &667 + - &668 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. @@ -52228,7 +52257,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &668 + - &669 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. @@ -52248,7 +52277,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &669 + - &670 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. @@ -52268,7 +52297,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &670 + - &671 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -52787,7 +52816,7 @@ paths: application/json: schema: type: array - items: &674 + items: &675 description: A repository security advisory. type: object properties: @@ -53078,7 +53107,7 @@ paths: - private_fork additionalProperties: false examples: - default: &675 + default: &676 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -55065,7 +55094,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &690 + response-if-user-is-a-team-maintainer: &691 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -55130,7 +55159,7 @@ paths: application/json: schema: *354 examples: - response-if-users-membership-with-team-is-now-pending: &691 + response-if-users-membership-with-team-is-now-pending: &692 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -55244,7 +55273,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &692 + schema: &693 title: Team Repository description: A team's access to a repository. type: object @@ -55901,7 +55930,7 @@ paths: type: array items: *208 examples: - response-if-child-teams-exist: &693 + response-if-child-teams-exist: &694 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -61548,7 +61577,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &764 + properties: &765 url: type: string format: uri @@ -61633,7 +61662,7 @@ paths: nullable: true properties: *83 required: *84 - required: &765 + required: &766 - id - node_id - sha @@ -67728,7 +67757,7 @@ paths: check. type: array items: *93 - deployment: &757 + deployment: &758 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -68640,7 +68669,7 @@ paths: type: string format: date-time nullable: true - head_commit: &785 + head_commit: &786 title: Simple Commit description: A commit. type: object @@ -73127,14 +73156,14 @@ paths: type: integer machines: type: array - items: &699 + items: &700 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *476 required: *477 examples: - default: &700 + default: &701 value: total_count: 2 machines: @@ -76280,7 +76309,7 @@ paths: application/json: schema: type: array - items: &679 + items: &680 title: Status description: The status of a commit. type: object @@ -77863,7 +77892,7 @@ paths: items: type: object properties: - placeholder_id: &671 + placeholder_id: &672 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -83786,6 +83815,49 @@ paths: enabledForGitHubApps: true category: git subcategory: trees + "/repos/{owner}/{repo}/hash-algorithm": + get: + summary: Get the hash algorithm for a repository + description: Returns the hash algorithm used to store repository objects. + tags: + - repos + operationId: repos/get-hash-algorithm + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository + parameters: + - *355 + - *356 + responses: + '200': + description: Response + content: + application/json: + schema: + title: Repository hash algorithm + description: Repository hash algorithm + type: object + properties: + hash_algorithm: + type: string + description: The Git hash algorithm used by this repository. + enum: + - sha1 + - sha256 + example: sha1 + required: + - hash_algorithm + examples: + default: + value: + hash_algorithm: sha1 + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/hooks": get: summary: List repository webhooks @@ -83863,7 +83935,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &793 + last_response: &794 title: Hook Response type: object properties: @@ -84915,7 +84987,7 @@ paths: parameters: - *355 - *356 - - &721 + - &722 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -85349,7 +85421,7 @@ paths: type: array items: *554 examples: - default: &714 + default: &715 value: - id: 1 repository: @@ -99216,7 +99288,7 @@ paths: application/json: schema: *337 examples: - default: &636 + default: &637 value: id: 42 name: super cool ruleset @@ -99270,6 +99342,7 @@ paths: - *628 - *629 - *630 + - *631 - *17 - *19 responses: @@ -99277,9 +99350,9 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: *632 + default: *633 '404': *6 '500': *55 x-github: @@ -99302,15 +99375,15 @@ paths: parameters: - *355 - *356 - - *633 + - *634 responses: '200': description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 '404': *6 '500': *55 x-github: @@ -99361,7 +99434,7 @@ paths: application/json: schema: *337 examples: - default: *636 + default: *637 '404': *6 '500': *55 put: @@ -99444,7 +99517,7 @@ paths: application/json: schema: *337 examples: - default: *636 + default: *637 '404': *6 '422': *15 '500': *55 @@ -99506,7 +99579,7 @@ paths: type: array items: *340 examples: - default: *637 + default: *638 '404': *6 '500': *55 x-github: @@ -99544,7 +99617,7 @@ paths: description: Response content: application/json: - schema: *638 + schema: *639 examples: default: value: @@ -99601,7 +99674,6 @@ paths: parameters: - *355 - *356 - - *639 - *640 - *641 - *642 @@ -99609,16 +99681,17 @@ paths: - *644 - *645 - *646 + - *647 - *62 - *19 - *17 - - *647 - *648 - *649 - *650 - *651 - *652 - *653 + - *654 responses: '200': description: Response @@ -99626,7 +99699,7 @@ paths: application/json: schema: type: array - items: &657 + items: &658 type: object properties: number: *186 @@ -99645,8 +99718,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *654 - resolution: *655 + state: *655 + resolution: *656 resolved_at: type: string format: date-time @@ -99752,7 +99825,7 @@ paths: pull request. ' - oneOf: *656 + oneOf: *657 nullable: true has_more_locations: type: boolean @@ -99919,13 +99992,13 @@ paths: - *355 - *356 - *452 - - *652 + - *653 responses: '200': description: Response content: application/json: - schema: *657 + schema: *658 examples: default: value: @@ -99989,8 +100062,8 @@ paths: schema: type: object properties: - state: *654 - resolution: *655 + state: *655 + resolution: *656 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -100034,7 +100107,7 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: default: value: @@ -100146,7 +100219,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &815 + items: &816 type: object properties: type: @@ -100172,7 +100245,6 @@ paths: example: commit details: oneOf: - - *658 - *659 - *660 - *661 @@ -100185,6 +100257,7 @@ paths: - *668 - *669 - *670 + - *671 examples: default: value: @@ -100279,14 +100352,14 @@ paths: schema: type: object properties: - reason: &672 + reason: &673 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *671 + placeholder_id: *672 required: - reason - placeholder_id @@ -100303,7 +100376,7 @@ paths: schema: type: object properties: - reason: *672 + reason: *673 expire_at: type: string format: date-time @@ -100365,7 +100438,7 @@ paths: properties: incremental_scans: type: array - items: &673 + items: &674 description: Information on a single scan performed by secret scanning on the repository type: object @@ -100396,15 +100469,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *673 + items: *674 backfill_scans: type: array - items: *673 + items: *674 custom_pattern_backfill_scans: type: array items: allOf: - - *673 + - *674 - type: object properties: pattern_name: @@ -100417,7 +100490,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *673 + items: *674 examples: default: value: @@ -100527,9 +100600,9 @@ paths: application/json: schema: type: array - items: *674 + items: *675 examples: - default: *675 + default: *676 '400': *14 '404': *6 x-github: @@ -100713,9 +100786,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: &677 + default: &678 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -101053,7 +101126,7 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: default: value: @@ -101202,15 +101275,15 @@ paths: parameters: - *355 - *356 - - *676 + - *677 responses: '200': description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *677 + default: *678 '403': *29 '404': *6 x-github: @@ -101236,7 +101309,7 @@ paths: parameters: - *355 - *356 - - *676 + - *677 requestBody: required: true content: @@ -101395,10 +101468,10 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *677 - add_credit: *677 + default: *678 + add_credit: *678 '403': *29 '404': *6 '422': @@ -101438,7 +101511,7 @@ paths: parameters: - *355 - *356 - - *676 + - *677 responses: '202': *39 '400': *14 @@ -101467,7 +101540,7 @@ paths: parameters: - *355 - *356 - - *676 + - *677 responses: '202': description: Response @@ -101611,7 +101684,7 @@ paths: application/json: schema: type: array - items: &678 + items: &679 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -101984,7 +102057,7 @@ paths: application/json: schema: type: array - items: *678 + items: *679 examples: default: value: @@ -102072,7 +102145,7 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: default: value: @@ -102166,7 +102239,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &680 + schema: &681 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -102261,7 +102334,7 @@ paths: description: Response content: application/json: - schema: *680 + schema: *681 examples: default: value: @@ -102468,7 +102541,7 @@ paths: description: Response content: application/json: - schema: &681 + schema: &682 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -102480,7 +102553,7 @@ paths: required: - names examples: - default: &682 + default: &683 value: names: - octocat @@ -102535,9 +102608,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *682 examples: - default: *682 + default: *683 '404': *6 '422': *7 x-github: @@ -102560,7 +102633,7 @@ paths: parameters: - *355 - *356 - - &683 + - &684 name: per description: The time frame to display results for. in: query @@ -102589,7 +102662,7 @@ paths: example: 128 clones: type: array - items: &684 + items: &685 title: Traffic type: object properties: @@ -102830,7 +102903,7 @@ paths: parameters: - *355 - *356 - - *683 + - *684 responses: '200': description: Response @@ -102849,7 +102922,7 @@ paths: example: 3782 views: type: array - items: *684 + items: *685 required: - uniques - count @@ -103621,7 +103694,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &685 + text_matches: &686 title: Search Result Text Matches type: array items: @@ -103783,7 +103856,7 @@ paths: enum: - author-date - committer-date - - &686 + - &687 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 @@ -103911,7 +103984,7 @@ paths: type: number node_id: type: string - text_matches: *685 + text_matches: *686 required: - sha - node_id @@ -104103,7 +104176,7 @@ paths: - interactions - created - updated - - *686 + - *687 - *17 - *19 - name: advanced_search @@ -104217,8 +104290,8 @@ paths: description: type: string nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -104253,7 +104326,7 @@ paths: type: string format: date-time nullable: true - text_matches: *685 + text_matches: *686 pull_request: type: object properties: @@ -104535,7 +104608,7 @@ paths: enum: - created - updated - - *686 + - *687 - *17 - *19 responses: @@ -104579,7 +104652,7 @@ paths: nullable: true score: type: number - text_matches: *685 + text_matches: *686 required: - id - node_id @@ -104664,7 +104737,7 @@ paths: - forks - help-wanted-issues - updated - - *686 + - *687 - *17 - *19 responses: @@ -104912,7 +104985,7 @@ paths: - admin - pull - push - text_matches: *685 + text_matches: *686 temp_clone_token: type: string allow_merge_commit: @@ -105212,7 +105285,7 @@ paths: type: string format: uri nullable: true - text_matches: *685 + text_matches: *686 related: type: array nullable: true @@ -105403,7 +105476,7 @@ paths: - followers - repositories - joined - - *686 + - *687 - *17 - *19 responses: @@ -105507,7 +105580,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *685 + text_matches: *686 blog: type: string nullable: true @@ -105586,7 +105659,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &689 + - &690 name: team_id description: The unique identifier of the team. in: path @@ -105627,7 +105700,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *689 + - *690 requestBody: required: true content: @@ -105727,7 +105800,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *689 + - *690 responses: '204': description: Response @@ -105756,7 +105829,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *689 + - *690 - *17 - *19 responses: @@ -105794,7 +105867,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *689 + - *690 - name: role description: Filters members returned by their role in the team. in: query @@ -105845,7 +105918,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *689 + - *690 - *74 responses: '204': @@ -105882,7 +105955,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *689 + - *690 - *74 responses: '204': @@ -105922,7 +105995,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *689 + - *690 - *74 responses: '204': @@ -105959,7 +106032,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *689 + - *690 - *74 responses: '200': @@ -105968,7 +106041,7 @@ paths: application/json: schema: *354 examples: - response-if-user-is-a-team-maintainer: *690 + response-if-user-is-a-team-maintainer: *691 '404': *6 x-github: githubCloudOnly: false @@ -106001,7 +106074,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *689 + - *690 - *74 requestBody: required: false @@ -106029,7 +106102,7 @@ paths: application/json: schema: *354 examples: - response-if-users-membership-with-team-is-now-pending: *691 + response-if-users-membership-with-team-is-now-pending: *692 '403': description: Forbidden if team synchronization is set up '422': @@ -106063,7 +106136,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *689 + - *690 - *74 responses: '204': @@ -106091,7 +106164,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *689 + - *690 - *17 - *19 responses: @@ -106133,7 +106206,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *689 + - *690 - *355 - *356 responses: @@ -106141,7 +106214,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *692 + schema: *693 examples: alternative-response-with-extra-repository-information: value: @@ -106292,7 +106365,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *689 + - *690 - *355 - *356 requestBody: @@ -106344,7 +106417,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *689 + - *690 - *355 - *356 responses: @@ -106371,7 +106444,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *689 + - *690 - *17 - *19 responses: @@ -106383,7 +106456,7 @@ paths: type: array items: *208 examples: - response-if-child-teams-exist: *693 + response-if-child-teams-exist: *694 headers: Link: *70 '404': *6 @@ -106416,7 +106489,7 @@ paths: application/json: schema: oneOf: - - &695 + - &696 title: Private User description: Private User type: object @@ -106619,7 +106692,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *694 + - *695 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -106772,7 +106845,7 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: default: value: @@ -107170,7 +107243,7 @@ paths: type: integer secrets: type: array - items: &696 + items: &697 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -107286,7 +107359,7 @@ paths: description: Response content: application/json: - schema: *696 + schema: *697 examples: default: value: @@ -107699,7 +107772,7 @@ paths: description: Response content: application/json: - schema: &697 + schema: &698 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -107740,7 +107813,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &698 + default: &699 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -107785,9 +107858,9 @@ paths: description: Response content: application/json: - schema: *697 + schema: *698 examples: - default: *698 + default: *699 '404': *6 x-github: githubCloudOnly: false @@ -107824,9 +107897,9 @@ paths: type: integer machines: type: array - items: *699 + items: *700 examples: - default: *700 + default: *701 '304': *37 '500': *55 '401': *25 @@ -108765,7 +108838,7 @@ paths: type: array items: *273 examples: - default: &711 + default: &712 value: - id: 197 name: hello_docker @@ -108866,7 +108939,7 @@ paths: application/json: schema: type: array - items: &701 + items: &702 title: Email description: Email type: object @@ -108931,9 +109004,9 @@ paths: application/json: schema: type: array - items: *701 + items: *702 examples: - default: &713 + default: &714 value: - email: octocat@github.com verified: true @@ -109008,7 +109081,7 @@ paths: application/json: schema: type: array - items: *701 + items: *702 examples: default: value: @@ -109264,7 +109337,7 @@ paths: application/json: schema: type: array - items: &702 + items: &703 title: GPG Key description: A unique encryption key type: object @@ -109395,7 +109468,7 @@ paths: - subkeys - revoked examples: - default: &730 + default: &731 value: - id: 3 name: Octocat's GPG Key @@ -109480,9 +109553,9 @@ paths: description: Response content: application/json: - schema: *702 + schema: *703 examples: - default: &703 + default: &704 value: id: 3 name: Octocat's GPG Key @@ -109539,7 +109612,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &704 + - &705 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -109551,9 +109624,9 @@ paths: description: Response content: application/json: - schema: *702 + schema: *703 examples: - default: *703 + default: *704 '404': *6 '304': *37 '403': *29 @@ -109576,7 +109649,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *704 + - *705 responses: '204': description: Response @@ -110043,7 +110116,7 @@ paths: application/json: schema: type: array - items: &705 + items: &706 title: Key description: Key type: object @@ -110144,9 +110217,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *706 examples: - default: &706 + default: &707 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -110185,9 +110258,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *706 examples: - default: *706 + default: *707 '404': *6 '304': *37 '403': *29 @@ -110243,7 +110316,7 @@ paths: application/json: schema: type: array - items: &707 + items: &708 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -110311,7 +110384,7 @@ paths: - account - plan examples: - default: &708 + default: &709 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -110373,9 +110446,9 @@ paths: application/json: schema: type: array - items: *707 + items: *708 examples: - default: *708 + default: *709 headers: Link: *70 '304': *37 @@ -111384,7 +111457,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *267 - - *709 + - *710 responses: '204': description: Response @@ -111499,7 +111572,7 @@ paths: - docker - nuget - container - - *710 + - *711 - *19 - *17 responses: @@ -111511,8 +111584,8 @@ paths: type: array items: *273 examples: - default: *711 - '400': *712 + default: *712 + '400': *713 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111541,7 +111614,7 @@ paths: application/json: schema: *273 examples: - default: &731 + default: &732 value: id: 40201 name: octo-name @@ -111903,9 +111976,9 @@ paths: application/json: schema: type: array - items: *701 + items: *702 examples: - default: *713 + default: *714 headers: Link: *70 '304': *37 @@ -112018,7 +112091,7 @@ paths: type: array items: *82 examples: - default: &720 + default: &721 summary: Default response value: - id: 1296269 @@ -112364,7 +112437,7 @@ paths: type: array items: *554 examples: - default: *714 + default: *715 headers: Link: *70 '304': *37 @@ -112443,7 +112516,7 @@ paths: application/json: schema: type: array - items: &715 + items: &716 title: Social account description: Social media account type: object @@ -112458,7 +112531,7 @@ paths: - provider - url examples: - default: &716 + default: &717 value: - provider: twitter url: https://twitter.com/github @@ -112520,9 +112593,9 @@ paths: application/json: schema: type: array - items: *715 + items: *716 examples: - default: *716 + default: *717 '422': *15 '304': *37 '404': *6 @@ -112609,7 +112682,7 @@ paths: application/json: schema: type: array - items: &717 + items: &718 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -112629,7 +112702,7 @@ paths: - title - created_at examples: - default: &749 + default: &750 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -112693,9 +112766,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *718 examples: - default: &718 + default: &719 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -112725,7 +112798,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: - - &719 + - &720 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -112737,9 +112810,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *718 examples: - default: *718 + default: *719 '404': *6 '304': *37 '403': *29 @@ -112762,7 +112835,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: - - *719 + - *720 responses: '204': description: Response @@ -112791,7 +112864,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &750 + - &751 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 @@ -112816,11 +112889,11 @@ paths: type: array items: *82 examples: - default-response: *720 + default-response: *721 application/vnd.github.v3.star+json: schema: type: array - items: &751 + items: &752 title: Starred Repository description: Starred Repository type: object @@ -113189,10 +113262,10 @@ paths: application/json: schema: oneOf: + - *696 - *695 - - *694 examples: - default-response: &724 + default-response: &725 summary: Default response value: login: octocat @@ -113227,7 +113300,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &725 + response-with-git-hub-plan-information: &726 summary: Response with GitHub plan information value: login: octocat @@ -113284,7 +113357,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &722 + - &723 name: user_id description: The unique identifier of the user. in: path @@ -113350,7 +113423,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *721 + - *722 - *17 responses: '200': @@ -113385,7 +113458,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *722 + - *723 - *291 requestBody: required: true @@ -113457,7 +113530,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *723 + schema: *724 examples: table_view: summary: Response for creating a table view @@ -113509,11 +113582,11 @@ paths: application/json: schema: oneOf: + - *696 - *695 - - *694 examples: - default-response: *724 - response-with-git-hub-plan-information: *725 + default-response: *725 + response-with-git-hub-plan-information: *726 '404': *6 x-github: githubCloudOnly: false @@ -113563,8 +113636,8 @@ paths: required: - subject_digests examples: - default: *726 - withPredicateType: *727 + default: *727 + withPredicateType: *728 responses: '200': description: Response @@ -113617,7 +113690,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *728 + default: *729 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114103,7 +114176,7 @@ paths: application/json: schema: *202 examples: - default: &729 + default: &730 summary: Example response for a user copilot space value: id: 42 @@ -114204,7 +114277,7 @@ paths: application/json: schema: *202 examples: - default: *729 + default: *730 '403': *29 '404': *6 x-github: @@ -114327,7 +114400,7 @@ paths: application/json: schema: *202 examples: - default: *729 + default: *730 '403': *29 '404': *6 '422': *15 @@ -115095,7 +115168,7 @@ paths: type: array items: *273 examples: - default: *711 + default: *712 '403': *29 '401': *25 x-github: @@ -115479,9 +115552,9 @@ paths: application/json: schema: type: array - items: *702 + items: *703 examples: - default: *730 + default: *731 headers: Link: *70 x-github: @@ -115709,7 +115782,7 @@ paths: - docker - nuget - container - - *710 + - *711 - *74 - *19 - *17 @@ -115722,10 +115795,10 @@ paths: type: array items: *273 examples: - default: *711 + default: *712 '403': *29 '401': *25 - '400': *712 + '400': *713 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115755,7 +115828,7 @@ paths: application/json: schema: *273 examples: - default: *731 + default: *732 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116104,7 +116177,7 @@ paths: type: array items: *295 examples: - default: *732 + default: *733 headers: Link: *70 '304': *37 @@ -116164,7 +116237,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *733 + items: *734 required: - name - data_type @@ -116180,7 +116253,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *734 + iteration_configuration: *735 required: - name - data_type @@ -116202,8 +116275,8 @@ paths: value: name: Due date data_type: date - single_select_field: *735 - iteration_field: *736 + single_select_field: *736 + iteration_field: *737 responses: '201': description: Response @@ -116211,11 +116284,11 @@ paths: application/json: schema: *295 examples: - text_field: *737 - number_field: *738 - date_field: *739 - single_select_field: *740 - iteration_field: *741 + text_field: *738 + number_field: *739 + date_field: *740 + single_select_field: *741 + iteration_field: *742 '304': *37 '403': *29 '401': *25 @@ -116237,7 +116310,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *291 - - *742 + - *743 - *74 responses: '200': @@ -116246,7 +116319,7 @@ paths: application/json: schema: *295 examples: - default: *743 + default: *744 headers: Link: *70 '304': *37 @@ -116600,7 +116673,7 @@ paths: parameters: - *291 - *74 - - *744 + - *745 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -116875,7 +116948,7 @@ paths: - *124 - *126 - *125 - - *745 + - *746 - *127 responses: '200': @@ -117006,7 +117079,7 @@ paths: parameters: - *74 - *124 - - *746 + - *747 - *125 responses: '200': @@ -117105,9 +117178,9 @@ paths: - *124 - *126 - *125 - - *747 - - *127 - *748 + - *127 + - *749 responses: '200': description: Response when getting a billing usage summary @@ -117241,9 +117314,9 @@ paths: application/json: schema: type: array - items: *715 + items: *716 examples: - default: *716 + default: *717 headers: Link: *70 x-github: @@ -117273,9 +117346,9 @@ paths: application/json: schema: type: array - items: *717 + items: *718 examples: - default: *749 + default: *750 headers: Link: *70 x-github: @@ -117300,7 +117373,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *74 - - *750 + - *751 - *62 - *17 - *19 @@ -117312,11 +117385,11 @@ paths: schema: anyOf: - type: array - items: *751 + items: *752 - type: array items: *82 examples: - default-response: *720 + default-response: *721 headers: Link: *70 x-github: @@ -117475,7 +117548,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &752 + enterprise: &753 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -117533,7 +117606,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &753 + installation: &754 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -117552,7 +117625,7 @@ x-webhooks: required: - id - node_id - organization: &754 + organization: &755 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -117612,13 +117685,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &755 + repository: &756 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &787 + properties: &788 id: description: Unique identifier of the repository example: 42 @@ -118313,7 +118386,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &788 + required: &789 - archive_url - assignees_url - blobs_url @@ -118464,10 +118537,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -118543,11 +118616,11 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - rule: &756 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + rule: &757 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) @@ -118770,11 +118843,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - rule: *756 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + rule: *757 sender: *4 required: - action @@ -118957,11 +119030,11 @@ x-webhooks: - everyone required: - from - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - rule: *756 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + rule: *757 sender: *4 required: - action @@ -119045,7 +119118,7 @@ x-webhooks: type: string enum: - completed - check_run: &758 + check_run: &759 title: CheckRun description: A check performed on the code of a given code change type: object @@ -119136,7 +119209,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *757 + deployment: *758 details_url: example: https://example.com type: string @@ -119221,10 +119294,10 @@ x-webhooks: - output - app - pull_requests - installation: *753 - enterprise: *752 - organization: *754 - repository: *755 + installation: *754 + enterprise: *753 + organization: *755 + repository: *756 sender: *4 required: - check_run @@ -119615,11 +119688,11 @@ x-webhooks: type: string enum: - created - check_run: *758 - installation: *753 - enterprise: *752 - organization: *754 - repository: *755 + check_run: *759 + installation: *754 + enterprise: *753 + organization: *755 + repository: *756 sender: *4 required: - check_run @@ -120013,11 +120086,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *758 - installation: *753 - enterprise: *752 - organization: *754 - repository: *755 + check_run: *759 + installation: *754 + enterprise: *753 + organization: *755 + repository: *756 requested_action: description: The action requested by the user. type: object @@ -120420,11 +120493,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *758 - installation: *753 - enterprise: *752 - organization: *754 - repository: *755 + check_run: *759 + installation: *754 + enterprise: *753 + organization: *755 + repository: *756 sender: *4 required: - check_run @@ -121394,10 +121467,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -122091,10 +122164,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -122782,10 +122855,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -123096,20 +123169,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &759 + commit_oid: &760 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: *752 - installation: *753 - organization: *754 - ref: &760 + enterprise: *753 + installation: *754 + organization: *755 + ref: &761 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: *755 + repository: *756 sender: *4 required: - action @@ -123504,12 +123577,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *759 - enterprise: *752 - installation: *753 - organization: *754 - ref: *760 - repository: *755 + commit_oid: *760 + enterprise: *753 + installation: *754 + organization: *755 + ref: *761 + repository: *756 sender: *4 required: - action @@ -123775,12 +123848,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *759 - enterprise: *752 - installation: *753 - organization: *754 - ref: *760 - repository: *755 + commit_oid: *760 + enterprise: *753 + installation: *754 + organization: *755 + ref: *761 + repository: *756 sender: *4 required: - action @@ -124112,12 +124185,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *759 - enterprise: *752 - installation: *753 - organization: *754 - ref: *760 - repository: *755 + commit_oid: *760 + enterprise: *753 + installation: *754 + organization: *755 + ref: *761 + repository: *756 sender: *4 required: - action @@ -124391,16 +124464,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *755 + repository: *756 sender: *4 required: - action @@ -124637,12 +124710,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *759 - enterprise: *752 - installation: *753 - organization: *754 - ref: *760 - repository: *755 + commit_oid: *760 + enterprise: *753 + installation: *754 + organization: *755 + ref: *761 + repository: *756 sender: *4 required: - action @@ -124953,10 +125026,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -125211,10 +125284,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -125294,18 +125367,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *754 - pusher_type: &761 + organization: *755 + pusher_type: &762 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &762 + ref: &763 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -125315,7 +125388,7 @@ x-webhooks: enum: - tag - branch - repository: *755 + repository: *756 sender: *4 required: - ref @@ -125398,9 +125471,9 @@ x-webhooks: enum: - created definition: *303 - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 sender: *4 required: - action @@ -125485,9 +125558,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 sender: *4 required: - action @@ -125565,9 +125638,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *303 - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 sender: *4 required: - action @@ -125645,9 +125718,9 @@ x-webhooks: enum: - updated definition: *303 - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 sender: *4 required: - action @@ -125724,10 +125797,10 @@ x-webhooks: type: string enum: - updated - enterprise: *752 - installation: *753 - repository: *755 - organization: *754 + enterprise: *753 + installation: *754 + repository: *756 + organization: *755 sender: *4 new_property_values: type: array @@ -125812,18 +125885,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *752 - installation: *753 - organization: *754 - pusher_type: *761 - ref: *762 + enterprise: *753 + installation: *754 + organization: *755 + pusher_type: *762 + ref: *763 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *755 + repository: *756 sender: *4 required: - ref @@ -125904,10 +125977,10 @@ x-webhooks: enum: - assignees_changed alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -125988,10 +126061,10 @@ x-webhooks: enum: - auto_dismissed alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -126073,10 +126146,10 @@ x-webhooks: enum: - auto_reopened alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -126158,10 +126231,10 @@ x-webhooks: enum: - created alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -126241,10 +126314,10 @@ x-webhooks: enum: - dismissed alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -126324,10 +126397,10 @@ x-webhooks: enum: - fixed alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -126408,10 +126481,10 @@ x-webhooks: enum: - reintroduced alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -126491,10 +126564,10 @@ x-webhooks: enum: - reopened alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -126571,9 +126644,9 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - key: &763 + enterprise: *753 + installation: *754 + key: &764 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -126609,8 +126682,8 @@ x-webhooks: - verified - created_at - read_only - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -126687,11 +126760,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - key: *763 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + key: *764 + organization: *755 + repository: *756 sender: *4 required: - action @@ -127247,12 +127320,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - workflow: &769 + workflow: &770 title: Workflow type: object nullable: true @@ -127993,15 +128066,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *764 - required: *765 + properties: *765 + required: *766 nullable: true pull_requests: type: array items: *606 - repository: *755 - organization: *754 - installation: *753 + repository: *756 + organization: *755 + installation: *754 sender: *4 responses: '200': @@ -128072,7 +128145,7 @@ x-webhooks: type: string enum: - approved - approver: &766 + approver: &767 type: object properties: avatar_url: @@ -128115,11 +128188,11 @@ x-webhooks: type: string comment: type: string - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - reviewers: &767 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + reviewers: &768 type: array items: type: object @@ -128198,7 +128271,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &768 + workflow_job_run: &769 type: object properties: conclusion: @@ -128929,18 +129002,18 @@ x-webhooks: type: string enum: - rejected - approver: *766 + approver: *767 comment: type: string - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - reviewers: *767 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + reviewers: *768 sender: *4 since: type: string - workflow_job_run: *768 + workflow_job_run: *769 workflow_job_runs: type: array items: @@ -129644,13 +129717,13 @@ x-webhooks: type: string enum: - requested - enterprise: *752 + enterprise: *753 environment: type: string - installation: *753 - organization: *754 - repository: *755 - requestor: &774 + installation: *754 + organization: *755 + repository: *756 + requestor: &775 title: User type: object nullable: true @@ -131539,12 +131612,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - workflow: *769 + workflow: *770 workflow_run: title: Deployment Workflow Run type: object @@ -132224,7 +132297,7 @@ x-webhooks: type: string enum: - answered - answer: &772 + answer: &773 type: object properties: author_association: @@ -132381,11 +132454,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132512,11 +132585,11 @@ x-webhooks: - from required: - category - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132599,11 +132672,11 @@ x-webhooks: type: string enum: - closed - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132685,7 +132758,7 @@ x-webhooks: type: string enum: - created - comment: &771 + comment: &772 type: object properties: author_association: @@ -132842,11 +132915,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132929,12 +133002,12 @@ x-webhooks: type: string enum: - deleted - comment: *771 - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + comment: *772 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133029,12 +133102,12 @@ x-webhooks: - from required: - body - comment: *771 - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + comment: *772 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133118,11 +133191,11 @@ x-webhooks: type: string enum: - created - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133204,11 +133277,11 @@ x-webhooks: type: string enum: - deleted - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133308,11 +133381,11 @@ x-webhooks: type: string required: - from - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133394,10 +133467,10 @@ x-webhooks: type: string enum: - labeled - discussion: *770 - enterprise: *752 - installation: *753 - label: &773 + discussion: *771 + enterprise: *753 + installation: *754 + label: &774 title: Label type: object properties: @@ -133429,8 +133502,8 @@ x-webhooks: - color - default - description - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133513,11 +133586,11 @@ x-webhooks: type: string enum: - locked - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133599,11 +133672,11 @@ x-webhooks: type: string enum: - pinned - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133685,11 +133758,11 @@ x-webhooks: type: string enum: - reopened - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133774,16 +133847,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *770 - new_repository: *755 + new_discussion: *771 + new_repository: *756 required: - new_discussion - new_repository - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133866,10 +133939,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *770 - old_answer: *772 - organization: *754 - repository: *755 + discussion: *771 + old_answer: *773 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133951,12 +134024,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *770 - enterprise: *752 - installation: *753 - label: *773 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -134039,11 +134112,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -134125,11 +134198,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -134202,7 +134275,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *752 + enterprise: *753 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -134862,9 +134935,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - forkee @@ -135010,9 +135083,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pages: description: The pages that were updated. type: array @@ -135049,7 +135122,7 @@ x-webhooks: - action - sha - html_url - repository: *755 + repository: *756 sender: *4 required: - pages @@ -135125,10 +135198,10 @@ x-webhooks: type: string enum: - created - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories: &775 + organization: *755 + repositories: &776 description: An array of repository objects that the installation can access. type: array @@ -135154,8 +135227,8 @@ x-webhooks: - name - full_name - private - repository: *755 - requester: *774 + repository: *756 + requester: *775 sender: *4 required: - action @@ -135230,11 +135303,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories: *775 - repository: *755 + organization: *755 + repositories: *776 + repository: *756 requester: nullable: true sender: *4 @@ -135310,11 +135383,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories: *775 - repository: *755 + organization: *755 + repositories: *776 + repository: *756 requester: nullable: true sender: *4 @@ -135390,10 +135463,10 @@ x-webhooks: type: string enum: - added - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories_added: &776 + organization: *755 + repositories_added: &777 description: An array of repository objects, which were added to the installation. type: array @@ -135439,15 +135512,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *755 - repository_selection: &777 + repository: *756 + repository_selection: &778 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *774 + requester: *775 sender: *4 required: - action @@ -135526,10 +135599,10 @@ x-webhooks: type: string enum: - removed - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories_added: *776 + organization: *755 + repositories_added: *777 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -135556,9 +135629,9 @@ x-webhooks: - name - full_name - private - repository: *755 - repository_selection: *777 - requester: *774 + repository: *756 + repository_selection: *778 + requester: *775 sender: *4 required: - action @@ -135637,11 +135710,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories: *775 - repository: *755 + organization: *755 + repositories: *776 + repository: *756 requester: nullable: true sender: *4 @@ -135819,10 +135892,10 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 target_type: type: string @@ -135901,11 +135974,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories: *775 - repository: *755 + organization: *755 + repositories: *776 + repository: *756 requester: nullable: true sender: *4 @@ -136165,8 +136238,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136955,8 +137028,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 state: description: State of the issue; either 'open' or 'closed' type: string @@ -137305,8 +137378,8 @@ x-webhooks: - state - locked - assignee - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -137386,7 +137459,7 @@ x-webhooks: type: string enum: - deleted - comment: &778 + comment: &779 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -137559,8 +137632,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -138345,8 +138418,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138697,8 +138770,8 @@ x-webhooks: - state - locked - assignee - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -138778,7 +138851,7 @@ x-webhooks: type: string enum: - edited - changes: &807 + changes: &808 description: The changes to the comment. type: object properties: @@ -138790,9 +138863,9 @@ x-webhooks: type: string required: - from - comment: *778 - enterprise: *752 - installation: *753 + comment: *779 + enterprise: *753 + installation: *754 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139580,8 +139653,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139930,8 +140003,8 @@ x-webhooks: - state - locked - assignee - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -140012,9 +140085,9 @@ x-webhooks: type: string enum: - pinned - comment: *778 - enterprise: *752 - installation: *753 + comment: *779 + enterprise: *753 + installation: *754 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140804,8 +140877,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141156,8 +141229,8 @@ x-webhooks: - state - locked - assignee - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -141237,9 +141310,9 @@ x-webhooks: type: string enum: - unpinned - comment: *778 - enterprise: *752 - installation: *753 + comment: *779 + enterprise: *753 + installation: *754 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142029,8 +142102,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142381,8 +142454,8 @@ x-webhooks: - state - locked - assignee - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -142471,9 +142544,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -142562,9 +142635,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -142652,9 +142725,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -142743,9 +142816,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -142825,10 +142898,10 @@ x-webhooks: type: string enum: - assigned - assignee: *774 - enterprise: *752 - installation: *753 - issue: &779 + assignee: *775 + enterprise: *753 + installation: *754 + issue: &780 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143620,8 +143693,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -143741,8 +143814,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -143822,8 +143895,8 @@ x-webhooks: type: string enum: - closed - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144620,8 +144693,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -144876,8 +144949,8 @@ x-webhooks: required: - state - closed_at - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -144956,8 +145029,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145745,8 +145818,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -145865,8 +145938,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -145945,8 +146018,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146756,8 +146829,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -146855,7 +146928,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &780 + milestone: &781 title: Milestone description: A collection of related issues and pull requests. type: object @@ -146993,8 +147066,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -147093,8 +147166,8 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147886,8 +147959,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -148007,9 +148080,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *773 - organization: *754 - repository: *755 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -148089,9 +148162,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *752 - installation: *753 - issue: *779 + enterprise: *753 + installation: *754 + issue: *780 issue_field: type: object description: The issue field whose value was set or updated on the @@ -148200,8 +148273,8 @@ x-webhooks: - id required: - from - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -148281,9 +148354,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *752 - installation: *753 - issue: *779 + enterprise: *753 + installation: *754 + issue: *780 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -148341,8 +148414,8 @@ x-webhooks: nullable: true required: - id - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -148422,8 +148495,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149214,8 +149287,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -149335,9 +149408,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *773 - organization: *754 - repository: *755 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -149417,8 +149490,8 @@ x-webhooks: type: string enum: - locked - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150233,8 +150306,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -150331,8 +150404,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -150411,8 +150484,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151221,8 +151294,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -151319,9 +151392,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *780 - organization: *754 - repository: *755 + milestone: *781 + organization: *755 + repository: *756 sender: *4 required: - action @@ -152184,8 +152257,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -152769,8 +152842,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153554,8 +153627,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -153682,8 +153755,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -153763,9 +153836,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *752 - installation: *753 - issue: &781 + enterprise: *753 + installation: *754 + issue: &782 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -154551,8 +154624,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -154671,8 +154744,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -154751,8 +154824,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155565,8 +155638,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -155664,8 +155737,8 @@ x-webhooks: user_view_type: type: string type: *255 - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -156534,8 +156607,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -157133,11 +157206,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *752 - installation: *753 - issue: *781 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + issue: *782 + organization: *755 + repository: *756 sender: *4 required: - action @@ -157217,12 +157290,12 @@ x-webhooks: type: string enum: - typed - enterprise: *752 - installation: *753 - issue: *779 + enterprise: *753 + installation: *754 + issue: *780 type: *255 - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -157303,7 +157376,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &810 + assignee: &811 title: User type: object nullable: true @@ -157373,11 +157446,11 @@ x-webhooks: required: - login - id - enterprise: *752 - installation: *753 - issue: *779 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + issue: *780 + organization: *755 + repository: *756 sender: *4 required: - action @@ -157456,12 +157529,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *752 - installation: *753 - issue: *779 - label: *773 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + issue: *780 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -157541,8 +157614,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -158355,8 +158428,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -158453,8 +158526,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -158534,11 +158607,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *752 - installation: *753 - issue: *781 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + issue: *782 + organization: *755 + repository: *756 sender: *4 required: - action @@ -158617,12 +158690,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *752 - installation: *753 - issue: *779 + enterprise: *753 + installation: *754 + issue: *780 type: *255 - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -158702,11 +158775,11 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - label: *773 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -158784,11 +158857,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - label: *773 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -158898,11 +158971,11 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - label: *773 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -158984,9 +159057,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *752 - installation: *753 - marketplace_purchase: &782 + enterprise: *753 + installation: *754 + marketplace_purchase: &783 title: Marketplace Purchase type: object required: @@ -159069,8 +159142,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *754 - previous_marketplace_purchase: &783 + organization: *755 + previous_marketplace_purchase: &784 title: Marketplace Purchase type: object properties: @@ -159150,7 +159223,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *755 + repository: *756 sender: *4 required: - action @@ -159230,10 +159303,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *752 - installation: *753 - marketplace_purchase: *782 - organization: *754 + enterprise: *753 + installation: *754 + marketplace_purchase: *783 + organization: *755 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -159316,7 +159389,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *755 + repository: *756 sender: *4 required: - action @@ -159398,10 +159471,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *752 - installation: *753 - marketplace_purchase: *782 - organization: *754 + enterprise: *753 + installation: *754 + marketplace_purchase: *783 + organization: *755 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -159483,7 +159556,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *755 + repository: *756 sender: *4 required: - action @@ -159564,8 +159637,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 marketplace_purchase: title: Marketplace Purchase type: object @@ -159647,9 +159720,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *754 - previous_marketplace_purchase: *783 - repository: *755 + organization: *755 + previous_marketplace_purchase: *784 + repository: *756 sender: *4 required: - action @@ -159729,12 +159802,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *752 - installation: *753 - marketplace_purchase: *782 - organization: *754 - previous_marketplace_purchase: *783 - repository: *755 + enterprise: *753 + installation: *754 + marketplace_purchase: *783 + organization: *755 + previous_marketplace_purchase: *784 + repository: *756 sender: *4 required: - action @@ -159836,11 +159909,11 @@ x-webhooks: type: string required: - to - enterprise: *752 - installation: *753 - member: *774 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + member: *775 + organization: *755 + repository: *756 sender: *4 required: - action @@ -159940,11 +160013,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *752 - installation: *753 - member: *774 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + member: *775 + organization: *755 + repository: *756 sender: *4 required: - action @@ -160023,11 +160096,11 @@ x-webhooks: type: string enum: - removed - enterprise: *752 - installation: *753 - member: *774 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + member: *775 + organization: *755 + repository: *756 sender: *4 required: - action @@ -160105,11 +160178,11 @@ x-webhooks: type: string enum: - added - enterprise: *752 - installation: *753 - member: *774 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + member: *775 + organization: *755 + repository: *756 scope: description: The scope of the membership. Currently, can only be `team`. @@ -160185,7 +160258,7 @@ x-webhooks: required: - login - id - team: &784 + team: &785 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -160408,11 +160481,11 @@ x-webhooks: type: string enum: - removed - enterprise: *752 - installation: *753 - member: *774 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + member: *775 + organization: *755 + repository: *756 scope: description: The scope of the membership. Currently, can only be `team`. @@ -160489,7 +160562,7 @@ x-webhooks: required: - login - id - team: *784 + team: *785 required: - action - scope @@ -160571,8 +160644,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *753 - merge_group: &786 + installation: *754 + merge_group: &787 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -160591,15 +160664,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *785 + head_commit: *786 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -160685,10 +160758,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *753 - merge_group: *786 - organization: *754 - repository: *755 + installation: *754 + merge_group: *787 + organization: *755 + repository: *756 sender: *4 required: - action @@ -160761,7 +160834,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 + enterprise: *753 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -160870,16 +160943,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *753 - organization: *754 + installation: *754 + organization: *755 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *788 + required: *789 nullable: true sender: *4 required: @@ -160960,11 +161033,11 @@ x-webhooks: type: string enum: - closed - enterprise: *752 - installation: *753 - milestone: *780 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + milestone: *781 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161043,9 +161116,9 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - milestone: &789 + enterprise: *753 + installation: *754 + milestone: &790 title: Milestone description: A collection of related issues and pull requests. type: object @@ -161182,8 +161255,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161262,11 +161335,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - milestone: *780 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + milestone: *781 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161376,11 +161449,11 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - milestone: *780 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + milestone: *781 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161460,11 +161533,11 @@ x-webhooks: type: string enum: - opened - enterprise: *752 - installation: *753 - milestone: *789 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + milestone: *790 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161543,11 +161616,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *774 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + blocked_user: *775 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161626,11 +161699,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *774 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + blocked_user: *775 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161709,9 +161782,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - membership: &790 + enterprise: *753 + installation: *754 + membership: &791 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -161818,8 +161891,8 @@ x-webhooks: - role - organization_url - user - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161897,11 +161970,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *752 - installation: *753 - membership: *790 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + membership: *791 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161980,8 +162053,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -162097,10 +162170,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 - user: *774 + user: *775 required: - action - invitation @@ -162178,11 +162251,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *752 - installation: *753 - membership: *790 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + membership: *791 + organization: *755 + repository: *756 sender: *4 required: - action @@ -162269,11 +162342,11 @@ x-webhooks: properties: from: type: string - enterprise: *752 - installation: *753 - membership: *790 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + membership: *791 + organization: *755 + repository: *756 sender: *4 required: - action @@ -162350,9 +162423,9 @@ x-webhooks: type: string enum: - published - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 package: description: Information about the package. type: object @@ -162851,7 +162924,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &791 + items: &792 title: Ruby Gems metadata type: object properties: @@ -162946,7 +163019,7 @@ x-webhooks: - owner - package_version - registry - repository: *755 + repository: *756 sender: *4 required: - action @@ -163022,9 +163095,9 @@ x-webhooks: type: string enum: - updated - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 package: description: Information about the package. type: object @@ -163377,7 +163450,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *791 + items: *792 source_url: type: string format: uri @@ -163447,7 +163520,7 @@ x-webhooks: - owner - package_version - registry - repository: *755 + repository: *756 sender: *4 required: - action @@ -163623,12 +163696,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *752 + enterprise: *753 id: type: integer - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - id @@ -163705,7 +163778,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &792 + personal_access_token_request: &793 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -163851,10 +163924,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *752 - organization: *754 + enterprise: *753 + organization: *755 sender: *4 - installation: *753 + installation: *754 required: - action - personal_access_token_request @@ -163931,11 +164004,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *792 - enterprise: *752 - organization: *754 + personal_access_token_request: *793 + enterprise: *753 + organization: *755 sender: *4 - installation: *753 + installation: *754 required: - action - personal_access_token_request @@ -164011,11 +164084,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *792 - enterprise: *752 - organization: *754 + personal_access_token_request: *793 + enterprise: *753 + organization: *755 sender: *4 - installation: *753 + installation: *754 required: - action - personal_access_token_request @@ -164090,11 +164163,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *792 - organization: *754 - enterprise: *752 + personal_access_token_request: *793 + organization: *755 + enterprise: *753 sender: *4 - installation: *753 + installation: *754 required: - action - personal_access_token_request @@ -164199,7 +164272,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *793 + last_response: *794 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -164231,8 +164304,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 zen: description: Random string of GitHub zen. @@ -164477,10 +164550,10 @@ x-webhooks: - from required: - note - enterprise: *752 - installation: *753 - organization: *754 - project_card: &794 + enterprise: *753 + installation: *754 + organization: *755 + project_card: &795 title: Project Card type: object properties: @@ -164599,7 +164672,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *755 + repository: *756 sender: *4 required: - action @@ -164680,11 +164753,11 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - project_card: *794 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project_card: *795 + repository: *756 sender: *4 required: - action @@ -164764,9 +164837,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 project_card: title: Project Card type: object @@ -164894,8 +164967,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *788 + required: *789 nullable: true sender: *4 required: @@ -164989,11 +165062,11 @@ x-webhooks: - from required: - note - enterprise: *752 - installation: *753 - organization: *754 - project_card: *794 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project_card: *795 + repository: *756 sender: *4 required: - action @@ -165087,9 +165160,9 @@ x-webhooks: - from required: - column_id - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 project_card: allOf: - title: Project Card @@ -165279,7 +165352,7 @@ x-webhooks: type: string required: - after_id - repository: *755 + repository: *756 sender: *4 required: - action @@ -165359,10 +165432,10 @@ x-webhooks: type: string enum: - closed - enterprise: *752 - installation: *753 - organization: *754 - project: &796 + enterprise: *753 + installation: *754 + organization: *755 + project: &797 title: Project type: object properties: @@ -165486,7 +165559,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *755 + repository: *756 sender: *4 required: - action @@ -165566,10 +165639,10 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - project_column: &795 + enterprise: *753 + installation: *754 + organization: *755 + project_column: &796 title: Project Column type: object properties: @@ -165608,7 +165681,7 @@ x-webhooks: - name - created_at - updated_at - repository: *755 + repository: *756 sender: *4 required: - action @@ -165687,18 +165760,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - project_column: *795 + enterprise: *753 + installation: *754 + organization: *755 + project_column: *796 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *788 + required: *789 nullable: true sender: *4 required: @@ -165788,11 +165861,11 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - organization: *754 - project_column: *795 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project_column: *796 + repository: *756 sender: *4 required: - action @@ -165872,11 +165945,11 @@ x-webhooks: type: string enum: - moved - enterprise: *752 - installation: *753 - organization: *754 - project_column: *795 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project_column: *796 + repository: *756 sender: *4 required: - action @@ -165956,11 +166029,11 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - project: *796 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project: *797 + repository: *756 sender: *4 required: - action @@ -166040,18 +166113,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - project: *796 + enterprise: *753 + installation: *754 + organization: *755 + project: *797 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *788 + required: *789 nullable: true sender: *4 required: @@ -166153,11 +166226,11 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - organization: *754 - project: *796 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project: *797 + repository: *756 sender: *4 required: - action @@ -166236,11 +166309,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *752 - installation: *753 - organization: *754 - project: *796 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project: *797 + repository: *756 sender: *4 required: - action @@ -166321,8 +166394,8 @@ x-webhooks: type: string enum: - closed - installation: *753 - organization: *754 + installation: *754 + organization: *755 projects_v2: *289 sender: *4 required: @@ -166404,8 +166477,8 @@ x-webhooks: type: string enum: - created - installation: *753 - organization: *754 + installation: *754 + organization: *755 projects_v2: *289 sender: *4 required: @@ -166487,8 +166560,8 @@ x-webhooks: type: string enum: - deleted - installation: *753 - organization: *754 + installation: *754 + organization: *755 projects_v2: *289 sender: *4 required: @@ -166606,8 +166679,8 @@ x-webhooks: type: string to: type: string - installation: *753 - organization: *754 + installation: *754 + organization: *755 projects_v2: *289 sender: *4 required: @@ -166691,7 +166764,7 @@ x-webhooks: type: string enum: - archived - changes: &800 + changes: &801 type: object properties: archived_at: @@ -166705,9 +166778,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *753 - organization: *754 - projects_v2_item: &797 + installation: *754 + organization: *755 + projects_v2_item: &798 title: Projects v2 Item description: An item belonging to a project type: object @@ -166842,9 +166915,9 @@ x-webhooks: nullable: true to: type: string - installation: *753 - organization: *754 - projects_v2_item: *797 + installation: *754 + organization: *755 + projects_v2_item: *798 sender: *4 required: - action @@ -166926,9 +166999,9 @@ x-webhooks: type: string enum: - created - installation: *753 - organization: *754 - projects_v2_item: *797 + installation: *754 + organization: *755 + projects_v2_item: *798 sender: *4 required: - action @@ -167009,9 +167082,9 @@ x-webhooks: type: string enum: - deleted - installation: *753 - organization: *754 - projects_v2_item: *797 + installation: *754 + organization: *755 + projects_v2_item: *798 sender: *4 required: - action @@ -167117,7 +167190,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &798 + - &799 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -167139,7 +167212,7 @@ x-webhooks: required: - id - name - - &799 + - &800 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -167173,8 +167246,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *798 - *799 + - *800 required: - field_value - type: object @@ -167190,9 +167263,9 @@ x-webhooks: nullable: true required: - body - installation: *753 - organization: *754 - projects_v2_item: *797 + installation: *754 + organization: *755 + projects_v2_item: *798 sender: *4 required: - action @@ -167287,9 +167360,9 @@ x-webhooks: to: type: string nullable: true - installation: *753 - organization: *754 - projects_v2_item: *797 + installation: *754 + organization: *755 + projects_v2_item: *798 sender: *4 required: - action @@ -167372,10 +167445,10 @@ x-webhooks: type: string enum: - restored - changes: *800 - installation: *753 - organization: *754 - projects_v2_item: *797 + changes: *801 + installation: *754 + organization: *755 + projects_v2_item: *798 sender: *4 required: - action @@ -167457,8 +167530,8 @@ x-webhooks: type: string enum: - reopened - installation: *753 - organization: *754 + installation: *754 + organization: *755 projects_v2: *289 sender: *4 required: @@ -167540,14 +167613,14 @@ x-webhooks: type: string enum: - created - installation: *753 - organization: *754 - projects_v2_status_update: &803 + installation: *754 + organization: *755 + projects_v2_status_update: &804 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *801 - required: *802 + properties: *802 + required: *803 sender: *4 required: - action @@ -167628,9 +167701,9 @@ x-webhooks: type: string enum: - deleted - installation: *753 - organization: *754 - projects_v2_status_update: *803 + installation: *754 + organization: *755 + projects_v2_status_update: *804 sender: *4 required: - action @@ -167766,9 +167839,9 @@ x-webhooks: type: string format: date nullable: true - installation: *753 - organization: *754 - projects_v2_status_update: *803 + installation: *754 + organization: *755 + projects_v2_status_update: *804 sender: *4 required: - action @@ -167839,10 +167912,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - repository @@ -167919,13 +167992,13 @@ x-webhooks: type: string enum: - assigned - assignee: *774 - enterprise: *752 - installation: *753 - number: &804 + assignee: *775 + enterprise: *753 + installation: *754 + number: &805 description: The pull request number. type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -170230,7 +170303,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -170312,11 +170385,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -172616,7 +172689,7 @@ x-webhooks: - draft reason: type: string - repository: *755 + repository: *756 sender: *4 required: - action @@ -172698,11 +172771,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -175002,7 +175075,7 @@ x-webhooks: - draft reason: type: string - repository: *755 + repository: *756 sender: *4 required: - action @@ -175084,11 +175157,11 @@ x-webhooks: type: string enum: - closed - enterprise: *752 - installation: *753 - number: *804 - organization: *754 - pull_request: &805 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 + pull_request: &806 allOf: - *606 - type: object @@ -175152,7 +175225,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *755 + repository: *756 sender: *4 required: - action @@ -175233,12 +175306,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *752 - installation: *753 - number: *804 - organization: *754 - pull_request: *805 - repository: *755 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 + pull_request: *806 + repository: *756 sender: *4 required: - action @@ -175318,11 +175391,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *752 + enterprise: *753 milestone: *590 - number: *804 - organization: *754 - pull_request: &806 + number: *805 + organization: *755 + pull_request: &807 title: Pull Request type: object properties: @@ -177607,7 +177680,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -177686,11 +177759,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -179994,7 +180067,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *755 + repository: *756 sender: *4 required: - action @@ -180118,12 +180191,12 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - number: *804 - organization: *754 - pull_request: *805 - repository: *755 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 + pull_request: *806 + repository: *756 sender: *4 required: - action @@ -180203,11 +180276,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -182496,7 +182569,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -182576,11 +182649,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *752 - installation: *753 - label: *773 - number: *804 - organization: *754 + enterprise: *753 + installation: *754 + label: *774 + number: *805 + organization: *755 pull_request: title: Pull Request type: object @@ -184884,7 +184957,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -184965,10 +185038,10 @@ x-webhooks: type: string enum: - locked - enterprise: *752 - installation: *753 - number: *804 - organization: *754 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 pull_request: title: Pull Request type: object @@ -187270,7 +187343,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -187350,12 +187423,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *752 + enterprise: *753 milestone: *590 - number: *804 - organization: *754 - pull_request: *806 - repository: *755 + number: *805 + organization: *755 + pull_request: *807 + repository: *756 sender: *4 required: - action @@ -187434,12 +187507,12 @@ x-webhooks: type: string enum: - opened - enterprise: *752 - installation: *753 - number: *804 - organization: *754 - pull_request: *805 - repository: *755 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 + pull_request: *806 + repository: *756 sender: *4 required: - action @@ -187520,12 +187593,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *752 - installation: *753 - number: *804 - organization: *754 - pull_request: *805 - repository: *755 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 + pull_request: *806 + repository: *756 sender: *4 required: - action @@ -187605,12 +187678,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *752 - installation: *753 - number: *804 - organization: *754 - pull_request: *805 - repository: *755 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 + pull_request: *806 + repository: *756 sender: *4 required: - action @@ -187976,9 +188049,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: type: object properties: @@ -190170,7 +190243,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *755 + repository: *756 sender: *4 required: - action @@ -190250,7 +190323,7 @@ x-webhooks: type: string enum: - deleted - comment: &808 + comment: &809 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -190535,9 +190608,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: type: object properties: @@ -192717,7 +192790,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *755 + repository: *756 sender: *4 required: - action @@ -192797,11 +192870,11 @@ x-webhooks: type: string enum: - edited - changes: *807 - comment: *808 - enterprise: *752 - installation: *753 - organization: *754 + changes: *808 + comment: *809 + enterprise: *753 + installation: *754 + organization: *755 pull_request: type: object properties: @@ -194984,7 +195057,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *755 + repository: *756 sender: *4 required: - action @@ -195065,9 +195138,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: title: Simple Pull Request type: object @@ -197262,7 +197335,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *755 + repository: *756 review: description: The review that was affected. type: object @@ -197509,9 +197582,9 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: title: Simple Pull Request type: object @@ -199565,8 +199638,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *755 - review: &809 + repository: *756 + review: &810 description: The review that was affected. type: object properties: @@ -199799,12 +199872,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: description: The pull request number. type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -202109,7 +202182,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 requested_reviewer: title: User type: object @@ -202193,12 +202266,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: description: The pull request number. type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -204510,7 +204583,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 requested_team: title: Team description: Groups of organization members that gives permissions @@ -204702,12 +204775,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: description: The pull request number. type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -207014,7 +207087,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 requested_reviewer: title: User type: object @@ -207099,12 +207172,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: description: The pull request number. type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -209402,7 +209475,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 requested_team: title: Team description: Groups of organization members that gives permissions @@ -209583,9 +209656,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: title: Simple Pull Request type: object @@ -211782,8 +211855,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *755 - review: *809 + repository: *756 + review: *810 sender: *4 required: - action @@ -211863,9 +211936,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: title: Simple Pull Request type: object @@ -213957,7 +214030,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *755 + repository: *756 sender: *4 thread: type: object @@ -214344,9 +214417,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: title: Simple Pull Request type: object @@ -216424,7 +216497,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *755 + repository: *756 sender: *4 thread: type: object @@ -216814,10 +216887,10 @@ x-webhooks: type: string before: type: string - enterprise: *752 - installation: *753 - number: *804 - organization: *754 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 pull_request: title: Pull Request type: object @@ -219110,7 +219183,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -219192,11 +219265,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *810 - enterprise: *752 - installation: *753 - number: *804 - organization: *754 + assignee: *811 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 pull_request: title: Pull Request type: object @@ -221501,7 +221574,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -221580,11 +221653,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *752 - installation: *753 - label: *773 - number: *804 - organization: *754 + enterprise: *753 + installation: *754 + label: *774 + number: *805 + organization: *755 pull_request: title: Pull Request type: object @@ -223879,7 +223952,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -223960,10 +224033,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *752 - installation: *753 - number: *804 - organization: *754 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 pull_request: title: Pull Request type: object @@ -226250,7 +226323,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -226450,7 +226523,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *752 + enterprise: *753 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -226542,8 +226615,8 @@ x-webhooks: - url - author - committer - installation: *753 - organization: *754 + installation: *754 + organization: *755 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -227129,9 +227202,9 @@ x-webhooks: type: string enum: - published - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 registry_package: type: object properties: @@ -227577,7 +227650,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *791 + items: *792 summary: type: string tag_name: @@ -227631,7 +227704,7 @@ x-webhooks: - owner - package_version - registry - repository: *755 + repository: *756 sender: *4 required: - action @@ -227709,9 +227782,9 @@ x-webhooks: type: string enum: - updated - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 registry_package: type: object properties: @@ -228019,7 +228092,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *791 + items: *792 summary: type: string tag_name: @@ -228068,7 +228141,7 @@ x-webhooks: - owner - package_version - registry - repository: *755 + repository: *756 sender: *4 required: - action @@ -228145,10 +228218,10 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - release: &811 + enterprise: *753 + installation: *754 + organization: *755 + release: &812 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -228466,7 +228539,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *755 + repository: *756 sender: *4 required: - action @@ -228543,11 +228616,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - release: *811 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + release: *812 + repository: *756 sender: *4 required: - action @@ -228664,11 +228737,11 @@ x-webhooks: type: boolean required: - to - enterprise: *752 - installation: *753 - organization: *754 - release: *811 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + release: *812 + repository: *756 sender: *4 required: - action @@ -228746,9 +228819,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -229070,7 +229143,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *755 + repository: *756 sender: *4 required: - action @@ -229146,10 +229219,10 @@ x-webhooks: type: string enum: - published - enterprise: *752 - installation: *753 - organization: *754 - release: &812 + enterprise: *753 + installation: *754 + organization: *755 + release: &813 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -229468,7 +229541,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *755 + repository: *756 sender: *4 required: - action @@ -229544,11 +229617,11 @@ x-webhooks: type: string enum: - released - enterprise: *752 - installation: *753 - organization: *754 - release: *811 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + release: *812 + repository: *756 sender: *4 required: - action @@ -229624,11 +229697,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *752 - installation: *753 - organization: *754 - release: *812 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + release: *813 + repository: *756 sender: *4 required: - action @@ -229704,11 +229777,11 @@ x-webhooks: type: string enum: - published - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - repository_advisory: *674 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + repository_advisory: *675 sender: *4 required: - action @@ -229784,11 +229857,11 @@ x-webhooks: type: string enum: - reported - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - repository_advisory: *674 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + repository_advisory: *675 sender: *4 required: - action @@ -229864,10 +229937,10 @@ x-webhooks: type: string enum: - archived - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -229944,10 +230017,10 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -230025,10 +230098,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -230112,10 +230185,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -230227,10 +230300,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -230302,10 +230375,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 status: type: string @@ -230386,10 +230459,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -230466,10 +230539,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -230563,10 +230636,10 @@ x-webhooks: - name required: - repository - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -230646,10 +230719,10 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 repository_ruleset: *337 sender: *4 required: @@ -230728,10 +230801,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 repository_ruleset: *337 sender: *4 required: @@ -230810,10 +230883,10 @@ x-webhooks: type: string enum: - edited - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 repository_ruleset: *337 changes: type: object @@ -231118,10 +231191,10 @@ x-webhooks: - from required: - owner - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231199,10 +231272,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231280,7 +231353,7 @@ x-webhooks: type: string enum: - create - alert: &813 + alert: &814 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -231402,10 +231475,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231611,10 +231684,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231692,11 +231765,11 @@ x-webhooks: type: string enum: - reopen - alert: *813 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + alert: *814 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231895,10 +231968,10 @@ x-webhooks: enum: - fixed - open - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231976,7 +232049,7 @@ x-webhooks: type: string enum: - assigned - alert: &814 + alert: &815 type: object properties: number: *186 @@ -232119,10 +232192,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -232200,11 +232273,11 @@ x-webhooks: type: string enum: - created - alert: *814 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + alert: *815 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -232285,11 +232358,11 @@ x-webhooks: type: string enum: - created - alert: *814 - installation: *753 - location: *815 - organization: *754 - repository: *755 + alert: *815 + installation: *754 + location: *816 + organization: *755 + repository: *756 sender: *4 required: - location @@ -232527,11 +232600,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *814 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + alert: *815 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -232609,11 +232682,11 @@ x-webhooks: type: string enum: - reopened - alert: *814 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + alert: *815 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -232691,11 +232764,11 @@ x-webhooks: type: string enum: - resolved - alert: *814 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + alert: *815 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -232773,12 +232846,12 @@ x-webhooks: type: string enum: - unassigned - alert: *814 + alert: *815 assignee: *4 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -232856,11 +232929,11 @@ x-webhooks: type: string enum: - validated - alert: *814 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + alert: *815 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -232986,10 +233059,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *755 - enterprise: *752 - installation: *753 - organization: *754 + repository: *756 + enterprise: *753 + installation: *754 + organization: *755 sender: *4 required: - action @@ -233067,11 +233140,11 @@ x-webhooks: type: string enum: - published - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - security_advisory: &816 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + security_advisory: &817 description: The details of the security advisory, including summary, description, and severity. type: object @@ -233254,11 +233327,11 @@ x-webhooks: type: string enum: - updated - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - security_advisory: *816 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + security_advisory: *817 sender: *4 required: - action @@ -233331,10 +233404,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -233519,9 +233592,9 @@ x-webhooks: type: object properties: security_and_analysis: *310 - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 repository: *358 sender: *4 required: @@ -233600,12 +233673,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - sponsorship: &817 + sponsorship: &818 type: object properties: created_at: @@ -233906,12 +233979,12 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - sponsorship: *817 + sponsorship: *818 required: - action - sponsorship @@ -233999,12 +234072,12 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - sponsorship: *817 + sponsorship: *818 required: - action - changes @@ -234081,17 +234154,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &818 + effective_date: &819 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: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - sponsorship: *817 + sponsorship: *818 required: - action - sponsorship @@ -234165,7 +234238,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &819 + changes: &820 type: object properties: tier: @@ -234209,13 +234282,13 @@ x-webhooks: - from required: - tier - effective_date: *818 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + effective_date: *819 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - sponsorship: *817 + sponsorship: *818 required: - action - changes @@ -234292,13 +234365,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *819 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + changes: *820 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - sponsorship: *817 + sponsorship: *818 required: - action - changes @@ -234372,10 +234445,10 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -234458,10 +234531,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -234881,15 +234954,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *752 + enterprise: *753 id: description: The unique identifier of the status. type: integer - installation: *753 + installation: *754 name: type: string - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 sha: description: The Commit SHA. @@ -235004,9 +235077,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -235095,9 +235168,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -235186,9 +235259,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -235277,9 +235350,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -235355,12 +235428,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - team: &820 + team: &821 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -235583,9 +235656,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 repository: title: Repository description: A git repository @@ -236043,7 +236116,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *820 + team: *821 required: - action - team @@ -236119,9 +236192,9 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 repository: title: Repository description: A git repository @@ -236579,7 +236652,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *820 + team: *821 required: - action - team @@ -236656,9 +236729,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 repository: title: Repository description: A git repository @@ -237116,7 +237189,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *820 + team: *821 required: - action - team @@ -237260,9 +237333,9 @@ x-webhooks: - from required: - permissions - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 repository: title: Repository description: A git repository @@ -237720,7 +237793,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *820 + team: *821 required: - action - changes @@ -237798,9 +237871,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 repository: title: Repository description: A git repository @@ -238258,7 +238331,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *820 + team: *821 required: - action - team @@ -238334,10 +238407,10 @@ x-webhooks: type: string enum: - started - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -238410,16 +238483,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *752 + enterprise: *753 inputs: type: object nullable: true additionalProperties: true - installation: *753 - organization: *754 + installation: *754 + organization: *755 ref: type: string - repository: *755 + repository: *756 sender: *4 workflow: type: string @@ -238501,10 +238574,10 @@ x-webhooks: type: string enum: - completed - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 workflow_job: allOf: @@ -238820,10 +238893,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 workflow_job: allOf: @@ -239162,10 +239235,10 @@ x-webhooks: type: string enum: - queued - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 workflow_job: type: object @@ -239379,10 +239452,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 workflow_job: type: object @@ -239598,12 +239671,12 @@ x-webhooks: type: string enum: - completed - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - workflow: *769 + workflow: *770 workflow_run: title: Workflow Run type: object @@ -240602,12 +240675,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - workflow: *769 + workflow: *770 workflow_run: title: Workflow Run type: object @@ -241591,12 +241664,12 @@ x-webhooks: type: string enum: - requested - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - workflow: *769 + workflow: *770 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index a5b2fd60d..a0547c412 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -9629,7 +9629,7 @@ "/app/installations/{installation_id}/access_tokens": { "post": { "summary": "Create an installation access token for an app", - "description": "Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.\n\nOptionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.\n\nOptionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.\n\nYou must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.", + "description": "Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.\n\n> [!NOTE]\n> Starting April 27, 2026, GitHub began a staged rollout of a stateless format (`ghs_APPID_JWT`) to all newly minted GitHub App installation tokens, making them more performant and improving the reliability of our API surface. If your application expects or relies on installation tokens being exactly 40 characters long, it may not handle this new token format correctly. You can now validate your apps and workflows using a temporary request header that lets you enable the token format on demand. For more information about the temporary header, see [the GitHub blog](https://github.blog/changelog/2026-05-15-github-app-installation-tokens-per-request-override-header).\n\nOptionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.\n\nOptionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.\n\nYou must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.", "tags": [ "apps" ], @@ -85684,6 +85684,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -85710,6 +85716,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -85735,6 +85742,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -86094,6 +86102,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -86120,6 +86134,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -86145,6 +86160,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -86456,6 +86472,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -88346,6 +88368,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -88366,6 +88394,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -208982,6 +209011,21 @@ "default": "all" } }, + { + "name": "evaluate_status", + "description": "The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned.\n - `all` - all rule suites will be returned.\n - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned.\n - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "all", + "active", + "evaluate" + ], + "default": "all" + } + }, { "name": "per_page", "description": "The number of results per page (max 100). 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).\"", @@ -241930,6 +241974,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -241956,6 +242006,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -241981,6 +242032,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -242310,6 +242362,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -244227,6 +244285,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -244247,6 +244311,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -370731,6 +370796,133 @@ } } }, + "/repos/{owner}/{repo}/hash-algorithm": { + "get": { + "summary": "Get the hash algorithm for a repository", + "description": "Returns the hash algorithm used to store repository objects.", + "tags": [ + "repos" + ], + "operationId": "repos/get-hash-algorithm", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Repository hash algorithm", + "description": "Repository hash algorithm", + "type": "object", + "properties": { + "hash_algorithm": { + "type": "string", + "description": "The Git hash algorithm used by this repository.", + "enum": [ + "sha1", + "sha256" + ], + "example": "sha1" + } + }, + "required": [ + "hash_algorithm" + ] + }, + "examples": { + "default": { + "value": { + "hash_algorithm": "sha1" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "repos", + "subcategory": "repos" + } + } + }, "/repos/{owner}/{repo}/hooks": { "get": { "summary": "List repository webhooks", @@ -528446,6 +528638,21 @@ "default": "all" } }, + { + "name": "evaluate_status", + "description": "The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned.\n - `all` - all rule suites will be returned.\n - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned.\n - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "all", + "active", + "evaluate" + ], + "default": "all" + } + }, { "name": "per_page", "description": "The number of results per page (max 100). 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).\"", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index 3d3b89db9..7caab2bd9 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -1001,7 +1001,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &676 + - &677 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -5345,6 +5345,9 @@ paths: description: |- Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access. + > [!NOTE] + > Starting April 27, 2026, GitHub began a staged rollout of a stateless format (`ghs_APPID_JWT`) to all newly minted GitHub App installation tokens, making them more performant and improving the reliability of our API surface. If your application expects or relies on installation tokens being exactly 40 characters long, it may not handle this new token format correctly. You can now validate your apps and workflows using a temporary request header that lets you enable the token format on demand. For more information about the temporary header, see [the GitHub blog](https://github.blog/changelog/2026-05-15-github-app-installation-tokens-per-request-override-header). + Optionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner. Optionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted. @@ -14025,7 +14028,7 @@ paths: properties: action: type: string - discussion: &770 + discussion: &771 title: Discussion description: A Discussion in a repository. type: object @@ -14763,7 +14766,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &687 + sub_issues_summary: &688 title: Sub-issues Summary type: object properties: @@ -14876,7 +14879,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &688 + issue_dependencies_summary: &689 title: Issue Dependencies Summary type: object properties: @@ -21325,7 +21328,7 @@ paths: required: false schema: type: string - - &745 + - &746 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -21471,7 +21474,7 @@ paths: parameters: - *78 - *124 - - &746 + - &747 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 @@ -21583,7 +21586,7 @@ paths: - *124 - *126 - *125 - - &747 + - &748 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -21591,7 +21594,7 @@ paths: schema: type: string - *127 - - &748 + - &749 name: sku description: The SKU to query for usage. in: query @@ -25712,6 +25715,13 @@ paths: - name ephemeral: type: boolean + version: + description: The version of the GitHub Actions Runner software. + This is only set if the runner has connected to the service + at least once. + nullable: true + type: string + example: 2.323.0 required: - id - name @@ -25730,6 +25740,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -25746,6 +25757,7 @@ paths: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -26241,6 +26253,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -29083,12 +29096,12 @@ paths: required: - subject_digests examples: - default: &726 + default: &727 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &727 + withPredicateType: &728 value: subject_digests: - sha256:abc123 @@ -29132,7 +29145,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &728 + default: &729 value: attestations_subject_digests: - sha256:abc: @@ -41597,7 +41610,7 @@ paths: parameters: - *78 - *267 - - &708 + - &709 name: repo_name description: repo_name parameter in: path @@ -42525,7 +42538,7 @@ paths: - nuget - container - *78 - - &709 + - &710 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -42566,7 +42579,7 @@ paths: default: *274 '403': *29 '401': *25 - '400': &711 + '400': &712 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -44774,7 +44787,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &801 + properties: &802 id: type: number description: The unique identifier of the status update. @@ -44822,7 +44835,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &802 + required: &803 - id - node_id - created_at @@ -45627,7 +45640,7 @@ paths: - updated_at - project_url examples: - default: &732 + default: &733 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -45804,7 +45817,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &733 + items: &734 type: object properties: name: @@ -45841,7 +45854,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &734 + iteration_configuration: &735 type: object description: The configuration for iteration fields. properties: @@ -45891,7 +45904,7 @@ paths: value: name: Due date data_type: date - single_select_field: &735 + single_select_field: &736 summary: Create a single select field value: name: Priority @@ -45918,7 +45931,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &736 + iteration_field: &737 summary: Create an iteration field value: name: Sprint @@ -45944,7 +45957,7 @@ paths: application/json: schema: *295 examples: - text_field: &737 + text_field: &738 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -45953,7 +45966,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: &738 + number_field: &739 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -45962,7 +45975,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: &739 + date_field: &740 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -45971,7 +45984,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: &740 + single_select_field: &741 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46005,7 +46018,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &741 + iteration_field: &742 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -46051,7 +46064,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *291 - - &742 + - &743 name: field_id description: The unique identifier of the field. in: path @@ -46066,7 +46079,7 @@ paths: application/json: schema: *295 examples: - default: &743 + default: &744 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47263,7 +47276,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &723 + schema: &724 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -47440,7 +47453,7 @@ paths: parameters: - *291 - *78 - - &744 + - &745 name: view_number description: The number that identifies the project view. in: path @@ -50698,6 +50711,22 @@ paths: - bypass - all default: all + - &631 + name: evaluate_status + description: |- + The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. + - `all` - all rule suites will be returned. + - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned. + - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned. + in: query + required: false + schema: + type: string + enum: + - all + - active + - evaluate + default: all - *17 - *19 responses: @@ -50705,7 +50734,7 @@ paths: description: Response content: application/json: - schema: &631 + schema: &632 title: Rule Suites description: Response type: array @@ -50760,7 +50789,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &632 + default: &633 value: - id: 21 actor_id: 12 @@ -50804,7 +50833,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *78 - - &633 + - &634 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -50820,7 +50849,7 @@ paths: description: Response content: application/json: - schema: &634 + schema: &635 title: Rule Suite description: Response type: object @@ -50919,7 +50948,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &635 + default: &636 value: id: 21 actor_id: 12 @@ -51166,7 +51195,7 @@ paths: type: string format: date-time examples: - default: &637 + default: &638 value: - version_id: 3 actor: @@ -51219,7 +51248,7 @@ paths: description: Response content: application/json: - schema: &638 + schema: &639 allOf: - *340 - type: object @@ -51291,7 +51320,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *78 - - &639 + - &640 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -51302,7 +51331,7 @@ paths: enum: - open - resolved - - &640 + - &641 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -51312,7 +51341,7 @@ paths: required: false schema: type: string - - &641 + - &642 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -51323,7 +51352,7 @@ paths: required: false schema: type: string - - &642 + - &643 name: exclude_providers in: query description: |- @@ -51334,7 +51363,7 @@ paths: required: false schema: type: string - - &643 + - &644 name: providers in: query description: |- @@ -51345,7 +51374,7 @@ paths: required: false schema: type: string - - &644 + - &645 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -51354,7 +51383,7 @@ paths: required: false schema: type: string - - &645 + - &646 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -51373,7 +51402,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &646 + - &647 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. @@ -51388,7 +51417,7 @@ paths: - *62 - *19 - *17 - - &647 + - &648 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 @@ -51398,7 +51427,7 @@ paths: required: false schema: type: string - - &648 + - &649 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 @@ -51408,7 +51437,7 @@ paths: required: false schema: type: string - - &649 + - &650 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -51417,7 +51446,7 @@ paths: required: false schema: type: string - - &650 + - &651 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -51426,7 +51455,7 @@ paths: schema: type: boolean default: false - - &651 + - &652 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -51435,7 +51464,7 @@ paths: schema: type: boolean default: false - - &652 + - &653 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -51444,7 +51473,7 @@ paths: schema: type: boolean default: false - - &653 + - &654 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -51481,14 +51510,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &654 + state: &655 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: &655 + resolution: &656 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -51605,8 +51634,8 @@ paths: pull request. ' - oneOf: &656 - - &658 + oneOf: &657 + - &659 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -51664,7 +51693,7 @@ paths: - blob_url - commit_sha - commit_url - - &659 + - &660 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. @@ -51719,7 +51748,7 @@ paths: - page_url - commit_sha - commit_url - - &660 + - &661 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -51739,7 +51768,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &661 + - &662 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -51759,7 +51788,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &662 + - &663 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -51779,7 +51808,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &663 + - &664 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -51793,7 +51822,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &664 + - &665 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -51807,7 +51836,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &665 + - &666 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -51821,7 +51850,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &666 + - &667 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. @@ -51841,7 +51870,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &667 + - &668 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. @@ -51861,7 +51890,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &668 + - &669 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. @@ -51881,7 +51910,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &669 + - &670 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. @@ -51901,7 +51930,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &670 + - &671 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -52420,7 +52449,7 @@ paths: application/json: schema: type: array - items: &674 + items: &675 description: A repository security advisory. type: object properties: @@ -52692,7 +52721,7 @@ paths: - private_fork additionalProperties: false examples: - default: &675 + default: &676 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -54671,7 +54700,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &690 + response-if-user-is-a-team-maintainer: &691 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -54736,7 +54765,7 @@ paths: application/json: schema: *354 examples: - response-if-users-membership-with-team-is-now-pending: &691 + response-if-users-membership-with-team-is-now-pending: &692 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -54850,7 +54879,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &692 + schema: &693 title: Team Repository description: A team's access to a repository. type: object @@ -55500,7 +55529,7 @@ paths: type: array items: *208 examples: - response-if-child-teams-exist: &693 + response-if-child-teams-exist: &694 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -61139,7 +61168,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &764 + properties: &765 url: type: string format: uri @@ -61224,7 +61253,7 @@ paths: nullable: true properties: *83 required: *84 - required: &765 + required: &766 - id - node_id - sha @@ -67296,7 +67325,7 @@ paths: check. type: array items: *93 - deployment: &757 + deployment: &758 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -68208,7 +68237,7 @@ paths: type: string format: date-time nullable: true - head_commit: &785 + head_commit: &786 title: Simple Commit description: A commit. type: object @@ -72693,14 +72722,14 @@ paths: type: integer machines: type: array - items: &698 + items: &699 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *476 required: *477 examples: - default: &699 + default: &700 value: total_count: 2 machines: @@ -75846,7 +75875,7 @@ paths: application/json: schema: type: array - items: &679 + items: &680 title: Status description: The status of a commit. type: object @@ -77429,7 +77458,7 @@ paths: items: type: object properties: - placeholder_id: &671 + placeholder_id: &672 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -83352,6 +83381,49 @@ paths: enabledForGitHubApps: true category: git subcategory: trees + "/repos/{owner}/{repo}/hash-algorithm": + get: + summary: Get the hash algorithm for a repository + description: Returns the hash algorithm used to store repository objects. + tags: + - repos + operationId: repos/get-hash-algorithm + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository + parameters: + - *355 + - *356 + responses: + '200': + description: Response + content: + application/json: + schema: + title: Repository hash algorithm + description: Repository hash algorithm + type: object + properties: + hash_algorithm: + type: string + description: The Git hash algorithm used by this repository. + enum: + - sha1 + - sha256 + example: sha1 + required: + - hash_algorithm + examples: + default: + value: + hash_algorithm: sha1 + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/hooks": get: summary: List repository webhooks @@ -83429,7 +83501,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &793 + last_response: &794 title: Hook Response type: object properties: @@ -84481,7 +84553,7 @@ paths: parameters: - *355 - *356 - - &721 + - &722 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -84915,7 +84987,7 @@ paths: type: array items: *554 examples: - default: &713 + default: &714 value: - id: 1 repository: @@ -98679,7 +98751,7 @@ paths: application/json: schema: *337 examples: - default: &636 + default: &637 value: id: 42 name: super cool ruleset @@ -98733,6 +98805,7 @@ paths: - *628 - *629 - *630 + - *631 - *17 - *19 responses: @@ -98740,9 +98813,9 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: *632 + default: *633 '404': *6 '500': *55 x-github: @@ -98765,15 +98838,15 @@ paths: parameters: - *355 - *356 - - *633 + - *634 responses: '200': description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 '404': *6 '500': *55 x-github: @@ -98824,7 +98897,7 @@ paths: application/json: schema: *337 examples: - default: *636 + default: *637 '404': *6 '500': *55 put: @@ -98907,7 +98980,7 @@ paths: application/json: schema: *337 examples: - default: *636 + default: *637 '404': *6 '422': *15 '500': *55 @@ -98969,7 +99042,7 @@ paths: type: array items: *340 examples: - default: *637 + default: *638 '404': *6 '500': *55 x-github: @@ -99007,7 +99080,7 @@ paths: description: Response content: application/json: - schema: *638 + schema: *639 examples: default: value: @@ -99064,7 +99137,6 @@ paths: parameters: - *355 - *356 - - *639 - *640 - *641 - *642 @@ -99072,16 +99144,17 @@ paths: - *644 - *645 - *646 + - *647 - *62 - *19 - *17 - - *647 - *648 - *649 - *650 - *651 - *652 - *653 + - *654 responses: '200': description: Response @@ -99089,7 +99162,7 @@ paths: application/json: schema: type: array - items: &657 + items: &658 type: object properties: number: *186 @@ -99108,8 +99181,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *654 - resolution: *655 + state: *655 + resolution: *656 resolved_at: type: string format: date-time @@ -99215,7 +99288,7 @@ paths: pull request. ' - oneOf: *656 + oneOf: *657 nullable: true has_more_locations: type: boolean @@ -99382,13 +99455,13 @@ paths: - *355 - *356 - *452 - - *652 + - *653 responses: '200': description: Response content: application/json: - schema: *657 + schema: *658 examples: default: value: @@ -99452,8 +99525,8 @@ paths: schema: type: object properties: - state: *654 - resolution: *655 + state: *655 + resolution: *656 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -99497,7 +99570,7 @@ paths: description: Response content: application/json: - schema: *657 + schema: *658 examples: default: value: @@ -99609,7 +99682,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &815 + items: &816 type: object properties: type: @@ -99635,7 +99708,6 @@ paths: example: commit details: oneOf: - - *658 - *659 - *660 - *661 @@ -99648,6 +99720,7 @@ paths: - *668 - *669 - *670 + - *671 examples: default: value: @@ -99742,14 +99815,14 @@ paths: schema: type: object properties: - reason: &672 + reason: &673 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *671 + placeholder_id: *672 required: - reason - placeholder_id @@ -99766,7 +99839,7 @@ paths: schema: type: object properties: - reason: *672 + reason: *673 expire_at: type: string format: date-time @@ -99828,7 +99901,7 @@ paths: properties: incremental_scans: type: array - items: &673 + items: &674 description: Information on a single scan performed by secret scanning on the repository type: object @@ -99859,15 +99932,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *673 + items: *674 backfill_scans: type: array - items: *673 + items: *674 custom_pattern_backfill_scans: type: array items: allOf: - - *673 + - *674 - type: object properties: pattern_name: @@ -99880,7 +99953,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *673 + items: *674 examples: default: value: @@ -99990,9 +100063,9 @@ paths: application/json: schema: type: array - items: *674 + items: *675 examples: - default: *675 + default: *676 '400': *14 '404': *6 x-github: @@ -100176,9 +100249,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: &677 + default: &678 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -100513,7 +100586,7 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: default: value: @@ -100661,15 +100734,15 @@ paths: parameters: - *355 - *356 - - *676 + - *677 responses: '200': description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *677 + default: *678 '403': *29 '404': *6 x-github: @@ -100695,7 +100768,7 @@ paths: parameters: - *355 - *356 - - *676 + - *677 requestBody: required: true content: @@ -100854,10 +100927,10 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *677 - add_credit: *677 + default: *678 + add_credit: *678 '403': *29 '404': *6 '422': @@ -100897,7 +100970,7 @@ paths: parameters: - *355 - *356 - - *676 + - *677 responses: '202': *39 '400': *14 @@ -100926,7 +100999,7 @@ paths: parameters: - *355 - *356 - - *676 + - *677 responses: '202': description: Response @@ -101070,7 +101143,7 @@ paths: application/json: schema: type: array - items: &678 + items: &679 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -101443,7 +101516,7 @@ paths: application/json: schema: type: array - items: *678 + items: *679 examples: default: value: @@ -101531,7 +101604,7 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: default: value: @@ -101625,7 +101698,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &680 + schema: &681 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -101720,7 +101793,7 @@ paths: description: Response content: application/json: - schema: *680 + schema: *681 examples: default: value: @@ -101927,7 +102000,7 @@ paths: description: Response content: application/json: - schema: &681 + schema: &682 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -101939,7 +102012,7 @@ paths: required: - names examples: - default: &682 + default: &683 value: names: - octocat @@ -101994,9 +102067,9 @@ paths: description: Response content: application/json: - schema: *681 + schema: *682 examples: - default: *682 + default: *683 '404': *6 '422': *7 x-github: @@ -102019,7 +102092,7 @@ paths: parameters: - *355 - *356 - - &683 + - &684 name: per description: The time frame to display results for. in: query @@ -102048,7 +102121,7 @@ paths: example: 128 clones: type: array - items: &684 + items: &685 title: Traffic type: object properties: @@ -102289,7 +102362,7 @@ paths: parameters: - *355 - *356 - - *683 + - *684 responses: '200': description: Response @@ -102308,7 +102381,7 @@ paths: example: 3782 views: type: array - items: *684 + items: *685 required: - uniques - count @@ -103079,7 +103152,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &685 + text_matches: &686 title: Search Result Text Matches type: array items: @@ -103241,7 +103314,7 @@ paths: enum: - author-date - committer-date - - &686 + - &687 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 @@ -103369,7 +103442,7 @@ paths: type: number node_id: type: string - text_matches: *685 + text_matches: *686 required: - sha - node_id @@ -103561,7 +103634,7 @@ paths: - interactions - created - updated - - *686 + - *687 - *17 - *19 - name: advanced_search @@ -103675,8 +103748,8 @@ paths: description: type: string nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -103704,7 +103777,7 @@ paths: type: string format: date-time nullable: true - text_matches: *685 + text_matches: *686 pull_request: type: object properties: @@ -103984,7 +104057,7 @@ paths: enum: - created - updated - - *686 + - *687 - *17 - *19 responses: @@ -104028,7 +104101,7 @@ paths: nullable: true score: type: number - text_matches: *685 + text_matches: *686 required: - id - node_id @@ -104113,7 +104186,7 @@ paths: - forks - help-wanted-issues - updated - - *686 + - *687 - *17 - *19 responses: @@ -104361,7 +104434,7 @@ paths: - admin - pull - push - text_matches: *685 + text_matches: *686 temp_clone_token: type: string allow_merge_commit: @@ -104661,7 +104734,7 @@ paths: type: string format: uri nullable: true - text_matches: *685 + text_matches: *686 related: type: array nullable: true @@ -104852,7 +104925,7 @@ paths: - followers - repositories - joined - - *686 + - *687 - *17 - *19 responses: @@ -104956,7 +105029,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *685 + text_matches: *686 blog: type: string nullable: true @@ -105035,7 +105108,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &689 + - &690 name: team_id description: The unique identifier of the team. in: path @@ -105076,7 +105149,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *689 + - *690 requestBody: required: true content: @@ -105176,7 +105249,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *689 + - *690 responses: '204': description: Response @@ -105205,7 +105278,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *689 + - *690 - *17 - *19 responses: @@ -105243,7 +105316,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *689 + - *690 - name: role description: Filters members returned by their role in the team. in: query @@ -105294,7 +105367,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *689 + - *690 - *74 responses: '204': @@ -105331,7 +105404,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *689 + - *690 - *74 responses: '204': @@ -105371,7 +105444,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *689 + - *690 - *74 responses: '204': @@ -105408,7 +105481,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *689 + - *690 - *74 responses: '200': @@ -105417,7 +105490,7 @@ paths: application/json: schema: *354 examples: - response-if-user-is-a-team-maintainer: *690 + response-if-user-is-a-team-maintainer: *691 '404': *6 x-github: githubCloudOnly: false @@ -105450,7 +105523,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *689 + - *690 - *74 requestBody: required: false @@ -105478,7 +105551,7 @@ paths: application/json: schema: *354 examples: - response-if-users-membership-with-team-is-now-pending: *691 + response-if-users-membership-with-team-is-now-pending: *692 '403': description: Forbidden if team synchronization is set up '422': @@ -105512,7 +105585,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *689 + - *690 - *74 responses: '204': @@ -105540,7 +105613,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *689 + - *690 - *17 - *19 responses: @@ -105582,7 +105655,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *689 + - *690 - *355 - *356 responses: @@ -105590,7 +105663,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *692 + schema: *693 examples: alternative-response-with-extra-repository-information: value: @@ -105740,7 +105813,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *689 + - *690 - *355 - *356 requestBody: @@ -105792,7 +105865,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *689 + - *690 - *355 - *356 responses: @@ -105819,7 +105892,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *689 + - *690 - *17 - *19 responses: @@ -105831,7 +105904,7 @@ paths: type: array items: *208 examples: - response-if-child-teams-exist: *693 + response-if-child-teams-exist: *694 headers: Link: *70 '404': *6 @@ -105864,7 +105937,7 @@ paths: application/json: schema: oneOf: - - &694 + - &695 title: Private User description: Private User type: object @@ -106067,7 +106140,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &720 + - &721 title: Public User description: Public User type: object @@ -106379,7 +106452,7 @@ paths: description: Response content: application/json: - schema: *694 + schema: *695 examples: default: value: @@ -106777,7 +106850,7 @@ paths: type: integer secrets: type: array - items: &695 + items: &696 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -106893,7 +106966,7 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: default: value: @@ -107306,7 +107379,7 @@ paths: description: Response content: application/json: - schema: &696 + schema: &697 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -107347,7 +107420,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &697 + default: &698 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -107392,9 +107465,9 @@ paths: description: Response content: application/json: - schema: *696 + schema: *697 examples: - default: *697 + default: *698 '404': *6 x-github: githubCloudOnly: false @@ -107431,9 +107504,9 @@ paths: type: integer machines: type: array - items: *698 + items: *699 examples: - default: *699 + default: *700 '304': *37 '500': *55 '401': *25 @@ -108372,7 +108445,7 @@ paths: type: array items: *273 examples: - default: &710 + default: &711 value: - id: 197 name: hello_docker @@ -108473,7 +108546,7 @@ paths: application/json: schema: type: array - items: &700 + items: &701 title: Email description: Email type: object @@ -108538,9 +108611,9 @@ paths: application/json: schema: type: array - items: *700 + items: *701 examples: - default: &712 + default: &713 value: - email: octocat@github.com verified: true @@ -108615,7 +108688,7 @@ paths: application/json: schema: type: array - items: *700 + items: *701 examples: default: value: @@ -108871,7 +108944,7 @@ paths: application/json: schema: type: array - items: &701 + items: &702 title: GPG Key description: A unique encryption key type: object @@ -109002,7 +109075,7 @@ paths: - subkeys - revoked examples: - default: &730 + default: &731 value: - id: 3 name: Octocat's GPG Key @@ -109087,9 +109160,9 @@ paths: description: Response content: application/json: - schema: *701 + schema: *702 examples: - default: &702 + default: &703 value: id: 3 name: Octocat's GPG Key @@ -109146,7 +109219,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &703 + - &704 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -109158,9 +109231,9 @@ paths: description: Response content: application/json: - schema: *701 + schema: *702 examples: - default: *702 + default: *703 '404': *6 '304': *37 '403': *29 @@ -109183,7 +109256,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *703 + - *704 responses: '204': description: Response @@ -109650,7 +109723,7 @@ paths: application/json: schema: type: array - items: &704 + items: &705 title: Key description: Key type: object @@ -109751,9 +109824,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: &705 + default: &706 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -109792,9 +109865,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *705 + default: *706 '404': *6 '304': *37 '403': *29 @@ -109850,7 +109923,7 @@ paths: application/json: schema: type: array - items: &706 + items: &707 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -109918,7 +109991,7 @@ paths: - account - plan examples: - default: &707 + default: &708 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -109980,9 +110053,9 @@ paths: application/json: schema: type: array - items: *706 + items: *707 examples: - default: *707 + default: *708 headers: Link: *70 '304': *37 @@ -110991,7 +111064,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *267 - - *708 + - *709 responses: '204': description: Response @@ -111104,7 +111177,7 @@ paths: - docker - nuget - container - - *709 + - *710 - *19 - *17 responses: @@ -111116,8 +111189,8 @@ paths: type: array items: *273 examples: - default: *710 - '400': *711 + default: *711 + '400': *712 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111146,7 +111219,7 @@ paths: application/json: schema: *273 examples: - default: &731 + default: &732 value: id: 40201 name: octo-name @@ -111508,9 +111581,9 @@ paths: application/json: schema: type: array - items: *700 + items: *701 examples: - default: *712 + default: *713 headers: Link: *70 '304': *37 @@ -111623,7 +111696,7 @@ paths: type: array items: *82 examples: - default: &719 + default: &720 summary: Default response value: - id: 1296269 @@ -111970,7 +112043,7 @@ paths: type: array items: *554 examples: - default: *713 + default: *714 headers: Link: *70 '304': *37 @@ -112050,7 +112123,7 @@ paths: application/json: schema: type: array - items: &714 + items: &715 title: Social account description: Social media account type: object @@ -112065,7 +112138,7 @@ paths: - provider - url examples: - default: &715 + default: &716 value: - provider: twitter url: https://twitter.com/github @@ -112127,9 +112200,9 @@ paths: application/json: schema: type: array - items: *714 + items: *715 examples: - default: *715 + default: *716 '422': *15 '304': *37 '404': *6 @@ -112216,7 +112289,7 @@ paths: application/json: schema: type: array - items: &716 + items: &717 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -112236,7 +112309,7 @@ paths: - title - created_at examples: - default: &749 + default: &750 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -112300,9 +112373,9 @@ paths: description: Response content: application/json: - schema: *716 + schema: *717 examples: - default: &717 + default: &718 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -112332,7 +112405,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: - - &718 + - &719 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -112344,9 +112417,9 @@ paths: description: Response content: application/json: - schema: *716 + schema: *717 examples: - default: *717 + default: *718 '404': *6 '304': *37 '403': *29 @@ -112369,7 +112442,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: - - *718 + - *719 responses: '204': description: Response @@ -112398,7 +112471,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &750 + - &751 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 @@ -112423,11 +112496,11 @@ paths: type: array items: *82 examples: - default-response: *719 + default-response: *720 application/vnd.github.v3.star+json: schema: type: array - items: &751 + items: &752 title: Starred Repository description: Starred Repository type: object @@ -112796,10 +112869,10 @@ paths: application/json: schema: oneOf: - - *694 - - *720 + - *695 + - *721 examples: - default-response: &724 + default-response: &725 summary: Default response value: login: octocat @@ -112834,7 +112907,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &725 + response-with-git-hub-plan-information: &726 summary: Response with GitHub plan information value: login: octocat @@ -112891,7 +112964,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &722 + - &723 name: user_id description: The unique identifier of the user. in: path @@ -112957,7 +113030,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *721 + - *722 - *17 responses: '200': @@ -112992,7 +113065,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *722 + - *723 - *291 requestBody: required: true @@ -113064,7 +113137,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *723 + schema: *724 examples: table_view: summary: Response for creating a table view @@ -113116,11 +113189,11 @@ paths: application/json: schema: oneOf: - - *694 - - *720 + - *695 + - *721 examples: - default-response: *724 - response-with-git-hub-plan-information: *725 + default-response: *725 + response-with-git-hub-plan-information: *726 '404': *6 x-github: githubCloudOnly: false @@ -113170,8 +113243,8 @@ paths: required: - subject_digests examples: - default: *726 - withPredicateType: *727 + default: *727 + withPredicateType: *728 responses: '200': description: Response @@ -113210,7 +113283,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *728 + default: *729 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113680,7 +113753,7 @@ paths: application/json: schema: *202 examples: - default: &729 + default: &730 summary: Example response for a user copilot space value: id: 42 @@ -113781,7 +113854,7 @@ paths: application/json: schema: *202 examples: - default: *729 + default: *730 '403': *29 '404': *6 x-github: @@ -113904,7 +113977,7 @@ paths: application/json: schema: *202 examples: - default: *729 + default: *730 '403': *29 '404': *6 '422': *15 @@ -114672,7 +114745,7 @@ paths: type: array items: *273 examples: - default: *710 + default: *711 '403': *29 '401': *25 x-github: @@ -115056,9 +115129,9 @@ paths: application/json: schema: type: array - items: *701 + items: *702 examples: - default: *730 + default: *731 headers: Link: *70 x-github: @@ -115286,7 +115359,7 @@ paths: - docker - nuget - container - - *709 + - *710 - *74 - *19 - *17 @@ -115299,10 +115372,10 @@ paths: type: array items: *273 examples: - default: *710 + default: *711 '403': *29 '401': *25 - '400': *711 + '400': *712 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115332,7 +115405,7 @@ paths: application/json: schema: *273 examples: - default: *731 + default: *732 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -115681,7 +115754,7 @@ paths: type: array items: *295 examples: - default: *732 + default: *733 headers: Link: *70 '304': *37 @@ -115741,7 +115814,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *733 + items: *734 required: - name - data_type @@ -115757,7 +115830,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *734 + iteration_configuration: *735 required: - name - data_type @@ -115779,8 +115852,8 @@ paths: value: name: Due date data_type: date - single_select_field: *735 - iteration_field: *736 + single_select_field: *736 + iteration_field: *737 responses: '201': description: Response @@ -115788,11 +115861,11 @@ paths: application/json: schema: *295 examples: - text_field: *737 - number_field: *738 - date_field: *739 - single_select_field: *740 - iteration_field: *741 + text_field: *738 + number_field: *739 + date_field: *740 + single_select_field: *741 + iteration_field: *742 '304': *37 '403': *29 '401': *25 @@ -115814,7 +115887,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *291 - - *742 + - *743 - *74 responses: '200': @@ -115823,7 +115896,7 @@ paths: application/json: schema: *295 examples: - default: *743 + default: *744 headers: Link: *70 '304': *37 @@ -116177,7 +116250,7 @@ paths: parameters: - *291 - *74 - - *744 + - *745 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -116452,7 +116525,7 @@ paths: - *124 - *126 - *125 - - *745 + - *746 - *127 responses: '200': @@ -116583,7 +116656,7 @@ paths: parameters: - *74 - *124 - - *746 + - *747 - *125 responses: '200': @@ -116682,9 +116755,9 @@ paths: - *124 - *126 - *125 - - *747 - - *127 - *748 + - *127 + - *749 responses: '200': description: Response when getting a billing usage summary @@ -116818,9 +116891,9 @@ paths: application/json: schema: type: array - items: *714 + items: *715 examples: - default: *715 + default: *716 headers: Link: *70 x-github: @@ -116850,9 +116923,9 @@ paths: application/json: schema: type: array - items: *716 + items: *717 examples: - default: *749 + default: *750 headers: Link: *70 x-github: @@ -116877,7 +116950,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *74 - - *750 + - *751 - *62 - *17 - *19 @@ -116889,11 +116962,11 @@ paths: schema: anyOf: - type: array - items: *751 + items: *752 - type: array items: *82 examples: - default-response: *719 + default-response: *720 headers: Link: *70 x-github: @@ -117052,7 +117125,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &752 + enterprise: &753 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -117110,7 +117183,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &753 + installation: &754 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -117129,7 +117202,7 @@ x-webhooks: required: - id - node_id - organization: &754 + organization: &755 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -117189,13 +117262,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &755 + repository: &756 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &787 + properties: &788 id: description: Unique identifier of the repository example: 42 @@ -117879,7 +117952,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &788 + required: &789 - archive_url - assignees_url - blobs_url @@ -118030,10 +118103,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -118109,11 +118182,11 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - rule: &756 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + rule: &757 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) @@ -118336,11 +118409,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - rule: *756 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + rule: *757 sender: *4 required: - action @@ -118523,11 +118596,11 @@ x-webhooks: - everyone required: - from - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - rule: *756 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + rule: *757 sender: *4 required: - action @@ -118611,7 +118684,7 @@ x-webhooks: type: string enum: - completed - check_run: &758 + check_run: &759 title: CheckRun description: A check performed on the code of a given code change type: object @@ -118702,7 +118775,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *757 + deployment: *758 details_url: example: https://example.com type: string @@ -118787,10 +118860,10 @@ x-webhooks: - output - app - pull_requests - installation: *753 - enterprise: *752 - organization: *754 - repository: *755 + installation: *754 + enterprise: *753 + organization: *755 + repository: *756 sender: *4 required: - check_run @@ -119181,11 +119254,11 @@ x-webhooks: type: string enum: - created - check_run: *758 - installation: *753 - enterprise: *752 - organization: *754 - repository: *755 + check_run: *759 + installation: *754 + enterprise: *753 + organization: *755 + repository: *756 sender: *4 required: - check_run @@ -119579,11 +119652,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *758 - installation: *753 - enterprise: *752 - organization: *754 - repository: *755 + check_run: *759 + installation: *754 + enterprise: *753 + organization: *755 + repository: *756 requested_action: description: The action requested by the user. type: object @@ -119986,11 +120059,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *758 - installation: *753 - enterprise: *752 - organization: *754 - repository: *755 + check_run: *759 + installation: *754 + enterprise: *753 + organization: *755 + repository: *756 sender: *4 required: - check_run @@ -120960,10 +121033,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -121657,10 +121730,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -122348,10 +122421,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -122662,20 +122735,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &759 + commit_oid: &760 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: *752 - installation: *753 - organization: *754 - ref: &760 + enterprise: *753 + installation: *754 + organization: *755 + ref: &761 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: *755 + repository: *756 sender: *4 required: - action @@ -123070,12 +123143,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *759 - enterprise: *752 - installation: *753 - organization: *754 - ref: *760 - repository: *755 + commit_oid: *760 + enterprise: *753 + installation: *754 + organization: *755 + ref: *761 + repository: *756 sender: *4 required: - action @@ -123341,12 +123414,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *759 - enterprise: *752 - installation: *753 - organization: *754 - ref: *760 - repository: *755 + commit_oid: *760 + enterprise: *753 + installation: *754 + organization: *755 + ref: *761 + repository: *756 sender: *4 required: - action @@ -123678,12 +123751,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *759 - enterprise: *752 - installation: *753 - organization: *754 - ref: *760 - repository: *755 + commit_oid: *760 + enterprise: *753 + installation: *754 + organization: *755 + ref: *761 + repository: *756 sender: *4 required: - action @@ -123957,16 +124030,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *755 + repository: *756 sender: *4 required: - action @@ -124203,12 +124276,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *759 - enterprise: *752 - installation: *753 - organization: *754 - ref: *760 - repository: *755 + commit_oid: *760 + enterprise: *753 + installation: *754 + organization: *755 + ref: *761 + repository: *756 sender: *4 required: - action @@ -124519,10 +124592,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -124777,10 +124850,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -124860,18 +124933,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *754 - pusher_type: &761 + organization: *755 + pusher_type: &762 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &762 + ref: &763 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -124881,7 +124954,7 @@ x-webhooks: enum: - tag - branch - repository: *755 + repository: *756 sender: *4 required: - ref @@ -124964,9 +125037,9 @@ x-webhooks: enum: - created definition: *303 - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 sender: *4 required: - action @@ -125051,9 +125124,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 sender: *4 required: - action @@ -125131,9 +125204,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *303 - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 sender: *4 required: - action @@ -125211,9 +125284,9 @@ x-webhooks: enum: - updated definition: *303 - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 sender: *4 required: - action @@ -125290,10 +125363,10 @@ x-webhooks: type: string enum: - updated - enterprise: *752 - installation: *753 - repository: *755 - organization: *754 + enterprise: *753 + installation: *754 + repository: *756 + organization: *755 sender: *4 new_property_values: type: array @@ -125378,18 +125451,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *752 - installation: *753 - organization: *754 - pusher_type: *761 - ref: *762 + enterprise: *753 + installation: *754 + organization: *755 + pusher_type: *762 + ref: *763 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *755 + repository: *756 sender: *4 required: - ref @@ -125470,10 +125543,10 @@ x-webhooks: enum: - assignees_changed alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -125554,10 +125627,10 @@ x-webhooks: enum: - auto_dismissed alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -125639,10 +125712,10 @@ x-webhooks: enum: - auto_reopened alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -125724,10 +125797,10 @@ x-webhooks: enum: - created alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -125807,10 +125880,10 @@ x-webhooks: enum: - dismissed alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -125890,10 +125963,10 @@ x-webhooks: enum: - fixed alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -125974,10 +126047,10 @@ x-webhooks: enum: - reintroduced alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -126057,10 +126130,10 @@ x-webhooks: enum: - reopened alert: *511 - installation: *753 - organization: *754 - enterprise: *752 - repository: *755 + installation: *754 + organization: *755 + enterprise: *753 + repository: *756 sender: *4 required: - action @@ -126137,9 +126210,9 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - key: &763 + enterprise: *753 + installation: *754 + key: &764 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -126175,8 +126248,8 @@ x-webhooks: - verified - created_at - read_only - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -126253,11 +126326,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - key: *763 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + key: *764 + organization: *755 + repository: *756 sender: *4 required: - action @@ -126813,12 +126886,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - workflow: &769 + workflow: &770 title: Workflow type: object nullable: true @@ -127559,15 +127632,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *764 - required: *765 + properties: *765 + required: *766 nullable: true pull_requests: type: array items: *606 - repository: *755 - organization: *754 - installation: *753 + repository: *756 + organization: *755 + installation: *754 sender: *4 responses: '200': @@ -127638,7 +127711,7 @@ x-webhooks: type: string enum: - approved - approver: &766 + approver: &767 type: object properties: avatar_url: @@ -127681,11 +127754,11 @@ x-webhooks: type: string comment: type: string - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - reviewers: &767 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + reviewers: &768 type: array items: type: object @@ -127764,7 +127837,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &768 + workflow_job_run: &769 type: object properties: conclusion: @@ -128495,18 +128568,18 @@ x-webhooks: type: string enum: - rejected - approver: *766 + approver: *767 comment: type: string - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - reviewers: *767 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + reviewers: *768 sender: *4 since: type: string - workflow_job_run: *768 + workflow_job_run: *769 workflow_job_runs: type: array items: @@ -129210,13 +129283,13 @@ x-webhooks: type: string enum: - requested - enterprise: *752 + enterprise: *753 environment: type: string - installation: *753 - organization: *754 - repository: *755 - requestor: &774 + installation: *754 + organization: *755 + repository: *756 + requestor: &775 title: User type: object nullable: true @@ -131105,12 +131178,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - workflow: *769 + workflow: *770 workflow_run: title: Deployment Workflow Run type: object @@ -131790,7 +131863,7 @@ x-webhooks: type: string enum: - answered - answer: &772 + answer: &773 type: object properties: author_association: @@ -131947,11 +132020,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132078,11 +132151,11 @@ x-webhooks: - from required: - category - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132165,11 +132238,11 @@ x-webhooks: type: string enum: - closed - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132251,7 +132324,7 @@ x-webhooks: type: string enum: - created - comment: &771 + comment: &772 type: object properties: author_association: @@ -132408,11 +132481,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132495,12 +132568,12 @@ x-webhooks: type: string enum: - deleted - comment: *771 - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + comment: *772 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132595,12 +132668,12 @@ x-webhooks: - from required: - body - comment: *771 - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + comment: *772 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132684,11 +132757,11 @@ x-webhooks: type: string enum: - created - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132770,11 +132843,11 @@ x-webhooks: type: string enum: - deleted - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132874,11 +132947,11 @@ x-webhooks: type: string required: - from - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -132960,10 +133033,10 @@ x-webhooks: type: string enum: - labeled - discussion: *770 - enterprise: *752 - installation: *753 - label: &773 + discussion: *771 + enterprise: *753 + installation: *754 + label: &774 title: Label type: object properties: @@ -132995,8 +133068,8 @@ x-webhooks: - color - default - description - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133079,11 +133152,11 @@ x-webhooks: type: string enum: - locked - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133165,11 +133238,11 @@ x-webhooks: type: string enum: - pinned - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133251,11 +133324,11 @@ x-webhooks: type: string enum: - reopened - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133340,16 +133413,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *770 - new_repository: *755 + new_discussion: *771 + new_repository: *756 required: - new_discussion - new_repository - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133432,10 +133505,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *770 - old_answer: *772 - organization: *754 - repository: *755 + discussion: *771 + old_answer: *773 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133517,12 +133590,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *770 - enterprise: *752 - installation: *753 - label: *773 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133605,11 +133678,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133691,11 +133764,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *770 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + discussion: *771 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -133768,7 +133841,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *752 + enterprise: *753 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -134428,9 +134501,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - forkee @@ -134576,9 +134649,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pages: description: The pages that were updated. type: array @@ -134615,7 +134688,7 @@ x-webhooks: - action - sha - html_url - repository: *755 + repository: *756 sender: *4 required: - pages @@ -134691,10 +134764,10 @@ x-webhooks: type: string enum: - created - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories: &775 + organization: *755 + repositories: &776 description: An array of repository objects that the installation can access. type: array @@ -134720,8 +134793,8 @@ x-webhooks: - name - full_name - private - repository: *755 - requester: *774 + repository: *756 + requester: *775 sender: *4 required: - action @@ -134796,11 +134869,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories: *775 - repository: *755 + organization: *755 + repositories: *776 + repository: *756 requester: nullable: true sender: *4 @@ -134876,11 +134949,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories: *775 - repository: *755 + organization: *755 + repositories: *776 + repository: *756 requester: nullable: true sender: *4 @@ -134956,10 +135029,10 @@ x-webhooks: type: string enum: - added - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories_added: &776 + organization: *755 + repositories_added: &777 description: An array of repository objects, which were added to the installation. type: array @@ -135005,15 +135078,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *755 - repository_selection: &777 + repository: *756 + repository_selection: &778 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *774 + requester: *775 sender: *4 required: - action @@ -135092,10 +135165,10 @@ x-webhooks: type: string enum: - removed - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories_added: *776 + organization: *755 + repositories_added: *777 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -135122,9 +135195,9 @@ x-webhooks: - name - full_name - private - repository: *755 - repository_selection: *777 - requester: *774 + repository: *756 + repository_selection: *778 + requester: *775 sender: *4 required: - action @@ -135203,11 +135276,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories: *775 - repository: *755 + organization: *755 + repositories: *776 + repository: *756 requester: nullable: true sender: *4 @@ -135385,10 +135458,10 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 target_type: type: string @@ -135467,11 +135540,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *752 + enterprise: *753 installation: *22 - organization: *754 - repositories: *775 - repository: *755 + organization: *755 + repositories: *776 + repository: *756 requester: nullable: true sender: *4 @@ -135731,8 +135804,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -136521,8 +136594,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 state: description: State of the issue; either 'open' or 'closed' type: string @@ -136871,8 +136944,8 @@ x-webhooks: - state - locked - assignee - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -136952,7 +137025,7 @@ x-webhooks: type: string enum: - deleted - comment: &778 + comment: &779 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -137125,8 +137198,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -137911,8 +137984,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138263,8 +138336,8 @@ x-webhooks: - state - locked - assignee - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -138344,7 +138417,7 @@ x-webhooks: type: string enum: - edited - changes: &807 + changes: &808 description: The changes to the comment. type: object properties: @@ -138356,9 +138429,9 @@ x-webhooks: type: string required: - from - comment: *778 - enterprise: *752 - installation: *753 + comment: *779 + enterprise: *753 + installation: *754 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139146,8 +139219,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139496,8 +139569,8 @@ x-webhooks: - state - locked - assignee - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -139578,9 +139651,9 @@ x-webhooks: type: string enum: - pinned - comment: *778 - enterprise: *752 - installation: *753 + comment: *779 + enterprise: *753 + installation: *754 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140370,8 +140443,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140722,8 +140795,8 @@ x-webhooks: - state - locked - assignee - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -140803,9 +140876,9 @@ x-webhooks: type: string enum: - unpinned - comment: *778 - enterprise: *752 - installation: *753 + comment: *779 + enterprise: *753 + installation: *754 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141595,8 +141668,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141947,8 +142020,8 @@ x-webhooks: - state - locked - assignee - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -142037,9 +142110,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -142128,9 +142201,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -142218,9 +142291,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -142309,9 +142382,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -142391,10 +142464,10 @@ x-webhooks: type: string enum: - assigned - assignee: *774 - enterprise: *752 - installation: *753 - issue: &779 + assignee: *775 + enterprise: *753 + installation: *754 + issue: &780 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -143186,8 +143259,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -143307,8 +143380,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -143388,8 +143461,8 @@ x-webhooks: type: string enum: - closed - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144186,8 +144259,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -144442,8 +144515,8 @@ x-webhooks: required: - state - closed_at - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -144522,8 +144595,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -145311,8 +145384,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -145431,8 +145504,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -145511,8 +145584,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146322,8 +146395,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -146421,7 +146494,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &780 + milestone: &781 title: Milestone description: A collection of related issues and pull requests. type: object @@ -146559,8 +146632,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -146659,8 +146732,8 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147452,8 +147525,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -147573,9 +147646,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *773 - organization: *754 - repository: *755 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -147655,9 +147728,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *752 - installation: *753 - issue: *779 + enterprise: *753 + installation: *754 + issue: *780 issue_field: type: object description: The issue field whose value was set or updated on the @@ -147766,8 +147839,8 @@ x-webhooks: - id required: - from - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -147847,9 +147920,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *752 - installation: *753 - issue: *779 + enterprise: *753 + installation: *754 + issue: *780 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -147907,8 +147980,8 @@ x-webhooks: nullable: true required: - id - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -147988,8 +148061,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148780,8 +148853,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -148901,9 +148974,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *773 - organization: *754 - repository: *755 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -148983,8 +149056,8 @@ x-webhooks: type: string enum: - locked - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149799,8 +149872,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -149897,8 +149970,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -149977,8 +150050,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150787,8 +150860,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -150885,9 +150958,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *780 - organization: *754 - repository: *755 + milestone: *781 + organization: *755 + repository: *756 sender: *4 required: - action @@ -151750,8 +151823,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -152335,8 +152408,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153120,8 +153193,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -153248,8 +153321,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -153329,9 +153402,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *752 - installation: *753 - issue: &781 + enterprise: *753 + installation: *754 + issue: &782 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -154117,8 +154190,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -154237,8 +154310,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -154317,8 +154390,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155131,8 +155204,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -155230,8 +155303,8 @@ x-webhooks: user_view_type: type: string type: *255 - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -156100,8 +156173,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -156699,11 +156772,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *752 - installation: *753 - issue: *781 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + issue: *782 + organization: *755 + repository: *756 sender: *4 required: - action @@ -156783,12 +156856,12 @@ x-webhooks: type: string enum: - typed - enterprise: *752 - installation: *753 - issue: *779 + enterprise: *753 + installation: *754 + issue: *780 type: *255 - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -156869,7 +156942,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &810 + assignee: &811 title: User type: object nullable: true @@ -156939,11 +157012,11 @@ x-webhooks: required: - login - id - enterprise: *752 - installation: *753 - issue: *779 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + issue: *780 + organization: *755 + repository: *756 sender: *4 required: - action @@ -157022,12 +157095,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *752 - installation: *753 - issue: *779 - label: *773 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + issue: *780 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -157107,8 +157180,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -157921,8 +157994,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *687 - issue_dependencies_summary: *688 + sub_issues_summary: *688 + issue_dependencies_summary: *689 issue_field_values: type: array items: *567 @@ -158019,8 +158092,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -158100,11 +158173,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *752 - installation: *753 - issue: *781 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + issue: *782 + organization: *755 + repository: *756 sender: *4 required: - action @@ -158183,12 +158256,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *752 - installation: *753 - issue: *779 + enterprise: *753 + installation: *754 + issue: *780 type: *255 - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -158268,11 +158341,11 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - label: *773 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -158350,11 +158423,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - label: *773 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -158464,11 +158537,11 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - label: *773 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + label: *774 + organization: *755 + repository: *756 sender: *4 required: - action @@ -158550,9 +158623,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *752 - installation: *753 - marketplace_purchase: &782 + enterprise: *753 + installation: *754 + marketplace_purchase: &783 title: Marketplace Purchase type: object required: @@ -158635,8 +158708,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *754 - previous_marketplace_purchase: &783 + organization: *755 + previous_marketplace_purchase: &784 title: Marketplace Purchase type: object properties: @@ -158716,7 +158789,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *755 + repository: *756 sender: *4 required: - action @@ -158796,10 +158869,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *752 - installation: *753 - marketplace_purchase: *782 - organization: *754 + enterprise: *753 + installation: *754 + marketplace_purchase: *783 + organization: *755 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -158882,7 +158955,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *755 + repository: *756 sender: *4 required: - action @@ -158964,10 +159037,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *752 - installation: *753 - marketplace_purchase: *782 - organization: *754 + enterprise: *753 + installation: *754 + marketplace_purchase: *783 + organization: *755 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -159049,7 +159122,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *755 + repository: *756 sender: *4 required: - action @@ -159130,8 +159203,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 marketplace_purchase: title: Marketplace Purchase type: object @@ -159213,9 +159286,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *754 - previous_marketplace_purchase: *783 - repository: *755 + organization: *755 + previous_marketplace_purchase: *784 + repository: *756 sender: *4 required: - action @@ -159295,12 +159368,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *752 - installation: *753 - marketplace_purchase: *782 - organization: *754 - previous_marketplace_purchase: *783 - repository: *755 + enterprise: *753 + installation: *754 + marketplace_purchase: *783 + organization: *755 + previous_marketplace_purchase: *784 + repository: *756 sender: *4 required: - action @@ -159402,11 +159475,11 @@ x-webhooks: type: string required: - to - enterprise: *752 - installation: *753 - member: *774 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + member: *775 + organization: *755 + repository: *756 sender: *4 required: - action @@ -159506,11 +159579,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *752 - installation: *753 - member: *774 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + member: *775 + organization: *755 + repository: *756 sender: *4 required: - action @@ -159589,11 +159662,11 @@ x-webhooks: type: string enum: - removed - enterprise: *752 - installation: *753 - member: *774 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + member: *775 + organization: *755 + repository: *756 sender: *4 required: - action @@ -159671,11 +159744,11 @@ x-webhooks: type: string enum: - added - enterprise: *752 - installation: *753 - member: *774 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + member: *775 + organization: *755 + repository: *756 scope: description: The scope of the membership. Currently, can only be `team`. @@ -159751,7 +159824,7 @@ x-webhooks: required: - login - id - team: &784 + team: &785 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -159974,11 +160047,11 @@ x-webhooks: type: string enum: - removed - enterprise: *752 - installation: *753 - member: *774 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + member: *775 + organization: *755 + repository: *756 scope: description: The scope of the membership. Currently, can only be `team`. @@ -160055,7 +160128,7 @@ x-webhooks: required: - login - id - team: *784 + team: *785 required: - action - scope @@ -160137,8 +160210,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *753 - merge_group: &786 + installation: *754 + merge_group: &787 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -160157,15 +160230,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *785 + head_commit: *786 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -160251,10 +160324,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *753 - merge_group: *786 - organization: *754 - repository: *755 + installation: *754 + merge_group: *787 + organization: *755 + repository: *756 sender: *4 required: - action @@ -160327,7 +160400,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 + enterprise: *753 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -160436,16 +160509,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *753 - organization: *754 + installation: *754 + organization: *755 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *788 + required: *789 nullable: true sender: *4 required: @@ -160526,11 +160599,11 @@ x-webhooks: type: string enum: - closed - enterprise: *752 - installation: *753 - milestone: *780 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + milestone: *781 + organization: *755 + repository: *756 sender: *4 required: - action @@ -160609,9 +160682,9 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - milestone: &789 + enterprise: *753 + installation: *754 + milestone: &790 title: Milestone description: A collection of related issues and pull requests. type: object @@ -160748,8 +160821,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -160828,11 +160901,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - milestone: *780 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + milestone: *781 + organization: *755 + repository: *756 sender: *4 required: - action @@ -160942,11 +161015,11 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - milestone: *780 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + milestone: *781 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161026,11 +161099,11 @@ x-webhooks: type: string enum: - opened - enterprise: *752 - installation: *753 - milestone: *789 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + milestone: *790 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161109,11 +161182,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *774 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + blocked_user: *775 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161192,11 +161265,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *774 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + blocked_user: *775 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161275,9 +161348,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - membership: &790 + enterprise: *753 + installation: *754 + membership: &791 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -161384,8 +161457,8 @@ x-webhooks: - role - organization_url - user - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161463,11 +161536,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *752 - installation: *753 - membership: *790 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + membership: *791 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161546,8 +161619,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -161663,10 +161736,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 - user: *774 + user: *775 required: - action - invitation @@ -161744,11 +161817,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *752 - installation: *753 - membership: *790 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + membership: *791 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161835,11 +161908,11 @@ x-webhooks: properties: from: type: string - enterprise: *752 - installation: *753 - membership: *790 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + membership: *791 + organization: *755 + repository: *756 sender: *4 required: - action @@ -161916,9 +161989,9 @@ x-webhooks: type: string enum: - published - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 package: description: Information about the package. type: object @@ -162417,7 +162490,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &791 + items: &792 title: Ruby Gems metadata type: object properties: @@ -162512,7 +162585,7 @@ x-webhooks: - owner - package_version - registry - repository: *755 + repository: *756 sender: *4 required: - action @@ -162588,9 +162661,9 @@ x-webhooks: type: string enum: - updated - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 package: description: Information about the package. type: object @@ -162943,7 +163016,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *791 + items: *792 source_url: type: string format: uri @@ -163013,7 +163086,7 @@ x-webhooks: - owner - package_version - registry - repository: *755 + repository: *756 sender: *4 required: - action @@ -163189,12 +163262,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *752 + enterprise: *753 id: type: integer - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - id @@ -163271,7 +163344,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &792 + personal_access_token_request: &793 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -163417,10 +163490,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *752 - organization: *754 + enterprise: *753 + organization: *755 sender: *4 - installation: *753 + installation: *754 required: - action - personal_access_token_request @@ -163497,11 +163570,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *792 - enterprise: *752 - organization: *754 + personal_access_token_request: *793 + enterprise: *753 + organization: *755 sender: *4 - installation: *753 + installation: *754 required: - action - personal_access_token_request @@ -163577,11 +163650,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *792 - enterprise: *752 - organization: *754 + personal_access_token_request: *793 + enterprise: *753 + organization: *755 sender: *4 - installation: *753 + installation: *754 required: - action - personal_access_token_request @@ -163656,11 +163729,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *792 - organization: *754 - enterprise: *752 + personal_access_token_request: *793 + organization: *755 + enterprise: *753 sender: *4 - installation: *753 + installation: *754 required: - action - personal_access_token_request @@ -163765,7 +163838,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *793 + last_response: *794 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -163797,8 +163870,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 zen: description: Random string of GitHub zen. @@ -164043,10 +164116,10 @@ x-webhooks: - from required: - note - enterprise: *752 - installation: *753 - organization: *754 - project_card: &794 + enterprise: *753 + installation: *754 + organization: *755 + project_card: &795 title: Project Card type: object properties: @@ -164165,7 +164238,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *755 + repository: *756 sender: *4 required: - action @@ -164246,11 +164319,11 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - project_card: *794 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project_card: *795 + repository: *756 sender: *4 required: - action @@ -164330,9 +164403,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 project_card: title: Project Card type: object @@ -164460,8 +164533,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *788 + required: *789 nullable: true sender: *4 required: @@ -164555,11 +164628,11 @@ x-webhooks: - from required: - note - enterprise: *752 - installation: *753 - organization: *754 - project_card: *794 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project_card: *795 + repository: *756 sender: *4 required: - action @@ -164653,9 +164726,9 @@ x-webhooks: - from required: - column_id - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 project_card: allOf: - title: Project Card @@ -164845,7 +164918,7 @@ x-webhooks: type: string required: - after_id - repository: *755 + repository: *756 sender: *4 required: - action @@ -164925,10 +164998,10 @@ x-webhooks: type: string enum: - closed - enterprise: *752 - installation: *753 - organization: *754 - project: &796 + enterprise: *753 + installation: *754 + organization: *755 + project: &797 title: Project type: object properties: @@ -165052,7 +165125,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *755 + repository: *756 sender: *4 required: - action @@ -165132,10 +165205,10 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - project_column: &795 + enterprise: *753 + installation: *754 + organization: *755 + project_column: &796 title: Project Column type: object properties: @@ -165174,7 +165247,7 @@ x-webhooks: - name - created_at - updated_at - repository: *755 + repository: *756 sender: *4 required: - action @@ -165253,18 +165326,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - project_column: *795 + enterprise: *753 + installation: *754 + organization: *755 + project_column: *796 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *788 + required: *789 nullable: true sender: *4 required: @@ -165354,11 +165427,11 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - organization: *754 - project_column: *795 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project_column: *796 + repository: *756 sender: *4 required: - action @@ -165438,11 +165511,11 @@ x-webhooks: type: string enum: - moved - enterprise: *752 - installation: *753 - organization: *754 - project_column: *795 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project_column: *796 + repository: *756 sender: *4 required: - action @@ -165522,11 +165595,11 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - project: *796 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project: *797 + repository: *756 sender: *4 required: - action @@ -165606,18 +165679,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - project: *796 + enterprise: *753 + installation: *754 + organization: *755 + project: *797 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *787 - required: *788 + properties: *788 + required: *789 nullable: true sender: *4 required: @@ -165719,11 +165792,11 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - organization: *754 - project: *796 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project: *797 + repository: *756 sender: *4 required: - action @@ -165802,11 +165875,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *752 - installation: *753 - organization: *754 - project: *796 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + project: *797 + repository: *756 sender: *4 required: - action @@ -165887,8 +165960,8 @@ x-webhooks: type: string enum: - closed - installation: *753 - organization: *754 + installation: *754 + organization: *755 projects_v2: *289 sender: *4 required: @@ -165970,8 +166043,8 @@ x-webhooks: type: string enum: - created - installation: *753 - organization: *754 + installation: *754 + organization: *755 projects_v2: *289 sender: *4 required: @@ -166053,8 +166126,8 @@ x-webhooks: type: string enum: - deleted - installation: *753 - organization: *754 + installation: *754 + organization: *755 projects_v2: *289 sender: *4 required: @@ -166172,8 +166245,8 @@ x-webhooks: type: string to: type: string - installation: *753 - organization: *754 + installation: *754 + organization: *755 projects_v2: *289 sender: *4 required: @@ -166257,7 +166330,7 @@ x-webhooks: type: string enum: - archived - changes: &800 + changes: &801 type: object properties: archived_at: @@ -166271,9 +166344,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *753 - organization: *754 - projects_v2_item: &797 + installation: *754 + organization: *755 + projects_v2_item: &798 title: Projects v2 Item description: An item belonging to a project type: object @@ -166408,9 +166481,9 @@ x-webhooks: nullable: true to: type: string - installation: *753 - organization: *754 - projects_v2_item: *797 + installation: *754 + organization: *755 + projects_v2_item: *798 sender: *4 required: - action @@ -166492,9 +166565,9 @@ x-webhooks: type: string enum: - created - installation: *753 - organization: *754 - projects_v2_item: *797 + installation: *754 + organization: *755 + projects_v2_item: *798 sender: *4 required: - action @@ -166575,9 +166648,9 @@ x-webhooks: type: string enum: - deleted - installation: *753 - organization: *754 - projects_v2_item: *797 + installation: *754 + organization: *755 + projects_v2_item: *798 sender: *4 required: - action @@ -166683,7 +166756,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &798 + - &799 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -166705,7 +166778,7 @@ x-webhooks: required: - id - name - - &799 + - &800 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -166739,8 +166812,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *798 - *799 + - *800 required: - field_value - type: object @@ -166756,9 +166829,9 @@ x-webhooks: nullable: true required: - body - installation: *753 - organization: *754 - projects_v2_item: *797 + installation: *754 + organization: *755 + projects_v2_item: *798 sender: *4 required: - action @@ -166853,9 +166926,9 @@ x-webhooks: to: type: string nullable: true - installation: *753 - organization: *754 - projects_v2_item: *797 + installation: *754 + organization: *755 + projects_v2_item: *798 sender: *4 required: - action @@ -166938,10 +167011,10 @@ x-webhooks: type: string enum: - restored - changes: *800 - installation: *753 - organization: *754 - projects_v2_item: *797 + changes: *801 + installation: *754 + organization: *755 + projects_v2_item: *798 sender: *4 required: - action @@ -167023,8 +167096,8 @@ x-webhooks: type: string enum: - reopened - installation: *753 - organization: *754 + installation: *754 + organization: *755 projects_v2: *289 sender: *4 required: @@ -167106,14 +167179,14 @@ x-webhooks: type: string enum: - created - installation: *753 - organization: *754 - projects_v2_status_update: &803 + installation: *754 + organization: *755 + projects_v2_status_update: &804 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *801 - required: *802 + properties: *802 + required: *803 sender: *4 required: - action @@ -167194,9 +167267,9 @@ x-webhooks: type: string enum: - deleted - installation: *753 - organization: *754 - projects_v2_status_update: *803 + installation: *754 + organization: *755 + projects_v2_status_update: *804 sender: *4 required: - action @@ -167332,9 +167405,9 @@ x-webhooks: type: string format: date nullable: true - installation: *753 - organization: *754 - projects_v2_status_update: *803 + installation: *754 + organization: *755 + projects_v2_status_update: *804 sender: *4 required: - action @@ -167405,10 +167478,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - repository @@ -167485,13 +167558,13 @@ x-webhooks: type: string enum: - assigned - assignee: *774 - enterprise: *752 - installation: *753 - number: &804 + assignee: *775 + enterprise: *753 + installation: *754 + number: &805 description: The pull request number. type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -169778,7 +169851,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -169860,11 +169933,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -172146,7 +172219,7 @@ x-webhooks: - draft reason: type: string - repository: *755 + repository: *756 sender: *4 required: - action @@ -172228,11 +172301,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -174514,7 +174587,7 @@ x-webhooks: - draft reason: type: string - repository: *755 + repository: *756 sender: *4 required: - action @@ -174596,11 +174669,11 @@ x-webhooks: type: string enum: - closed - enterprise: *752 - installation: *753 - number: *804 - organization: *754 - pull_request: &805 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 + pull_request: &806 allOf: - *606 - type: object @@ -174664,7 +174737,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *755 + repository: *756 sender: *4 required: - action @@ -174745,12 +174818,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *752 - installation: *753 - number: *804 - organization: *754 - pull_request: *805 - repository: *755 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 + pull_request: *806 + repository: *756 sender: *4 required: - action @@ -174830,11 +174903,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *752 + enterprise: *753 milestone: *590 - number: *804 - organization: *754 - pull_request: &806 + number: *805 + organization: *755 + pull_request: &807 title: Pull Request type: object properties: @@ -177115,7 +177188,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -177194,11 +177267,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -179498,7 +179571,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *755 + repository: *756 sender: *4 required: - action @@ -179622,12 +179695,12 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - number: *804 - organization: *754 - pull_request: *805 - repository: *755 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 + pull_request: *806 + repository: *756 sender: *4 required: - action @@ -179707,11 +179780,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -181996,7 +182069,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -182076,11 +182149,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *752 - installation: *753 - label: *773 - number: *804 - organization: *754 + enterprise: *753 + installation: *754 + label: *774 + number: *805 + organization: *755 pull_request: title: Pull Request type: object @@ -184366,7 +184439,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -184447,10 +184520,10 @@ x-webhooks: type: string enum: - locked - enterprise: *752 - installation: *753 - number: *804 - organization: *754 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 pull_request: title: Pull Request type: object @@ -186734,7 +186807,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -186814,12 +186887,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *752 + enterprise: *753 milestone: *590 - number: *804 - organization: *754 - pull_request: *806 - repository: *755 + number: *805 + organization: *755 + pull_request: *807 + repository: *756 sender: *4 required: - action @@ -186898,12 +186971,12 @@ x-webhooks: type: string enum: - opened - enterprise: *752 - installation: *753 - number: *804 - organization: *754 - pull_request: *805 - repository: *755 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 + pull_request: *806 + repository: *756 sender: *4 required: - action @@ -186984,12 +187057,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *752 - installation: *753 - number: *804 - organization: *754 - pull_request: *805 - repository: *755 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 + pull_request: *806 + repository: *756 sender: *4 required: - action @@ -187069,12 +187142,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *752 - installation: *753 - number: *804 - organization: *754 - pull_request: *805 - repository: *755 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 + pull_request: *806 + repository: *756 sender: *4 required: - action @@ -187440,9 +187513,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: type: object properties: @@ -189616,7 +189689,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *755 + repository: *756 sender: *4 required: - action @@ -189696,7 +189769,7 @@ x-webhooks: type: string enum: - deleted - comment: &808 + comment: &809 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -189981,9 +190054,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: type: object properties: @@ -192145,7 +192218,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *755 + repository: *756 sender: *4 required: - action @@ -192225,11 +192298,11 @@ x-webhooks: type: string enum: - edited - changes: *807 - comment: *808 - enterprise: *752 - installation: *753 - organization: *754 + changes: *808 + comment: *809 + enterprise: *753 + installation: *754 + organization: *755 pull_request: type: object properties: @@ -194394,7 +194467,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *755 + repository: *756 sender: *4 required: - action @@ -194475,9 +194548,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: title: Simple Pull Request type: object @@ -196654,7 +196727,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *755 + repository: *756 review: description: The review that was affected. type: object @@ -196901,9 +196974,9 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: title: Simple Pull Request type: object @@ -198953,8 +199026,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *755 - review: &809 + repository: *756 + review: &810 description: The review that was affected. type: object properties: @@ -199187,12 +199260,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: description: The pull request number. type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -201479,7 +201552,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 requested_reviewer: title: User type: object @@ -201563,12 +201636,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: description: The pull request number. type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -203862,7 +203935,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 requested_team: title: Team description: Groups of organization members that gives permissions @@ -204054,12 +204127,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: description: The pull request number. type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -206348,7 +206421,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 requested_reviewer: title: User type: object @@ -206433,12 +206506,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *752 - installation: *753 + enterprise: *753 + installation: *754 number: description: The pull request number. type: integer - organization: *754 + organization: *755 pull_request: title: Pull Request type: object @@ -208718,7 +208791,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 requested_team: title: Team description: Groups of organization members that gives permissions @@ -208899,9 +208972,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: title: Simple Pull Request type: object @@ -211080,8 +211153,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *755 - review: *809 + repository: *756 + review: *810 sender: *4 required: - action @@ -211161,9 +211234,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: title: Simple Pull Request type: object @@ -213251,7 +213324,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *755 + repository: *756 sender: *4 thread: type: object @@ -213638,9 +213711,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 pull_request: title: Simple Pull Request type: object @@ -215714,7 +215787,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *755 + repository: *756 sender: *4 thread: type: object @@ -216104,10 +216177,10 @@ x-webhooks: type: string before: type: string - enterprise: *752 - installation: *753 - number: *804 - organization: *754 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 pull_request: title: Pull Request type: object @@ -218382,7 +218455,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -218464,11 +218537,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *810 - enterprise: *752 - installation: *753 - number: *804 - organization: *754 + assignee: *811 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 pull_request: title: Pull Request type: object @@ -220755,7 +220828,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -220834,11 +220907,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *752 - installation: *753 - label: *773 - number: *804 - organization: *754 + enterprise: *753 + installation: *754 + label: *774 + number: *805 + organization: *755 pull_request: title: Pull Request type: object @@ -223115,7 +223188,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -223196,10 +223269,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *752 - installation: *753 - number: *804 - organization: *754 + enterprise: *753 + installation: *754 + number: *805 + organization: *755 pull_request: title: Pull Request type: object @@ -225468,7 +225541,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *755 + repository: *756 sender: *4 required: - action @@ -225668,7 +225741,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *752 + enterprise: *753 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -225760,8 +225833,8 @@ x-webhooks: - url - author - committer - installation: *753 - organization: *754 + installation: *754 + organization: *755 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -226347,9 +226420,9 @@ x-webhooks: type: string enum: - published - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 registry_package: type: object properties: @@ -226795,7 +226868,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *791 + items: *792 summary: type: string tag_name: @@ -226849,7 +226922,7 @@ x-webhooks: - owner - package_version - registry - repository: *755 + repository: *756 sender: *4 required: - action @@ -226927,9 +227000,9 @@ x-webhooks: type: string enum: - updated - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 registry_package: type: object properties: @@ -227237,7 +227310,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *791 + items: *792 summary: type: string tag_name: @@ -227286,7 +227359,7 @@ x-webhooks: - owner - package_version - registry - repository: *755 + repository: *756 sender: *4 required: - action @@ -227363,10 +227436,10 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - release: &811 + enterprise: *753 + installation: *754 + organization: *755 + release: &812 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -227684,7 +227757,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *755 + repository: *756 sender: *4 required: - action @@ -227761,11 +227834,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - release: *811 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + release: *812 + repository: *756 sender: *4 required: - action @@ -227882,11 +227955,11 @@ x-webhooks: type: boolean required: - to - enterprise: *752 - installation: *753 - organization: *754 - release: *811 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + release: *812 + repository: *756 sender: *4 required: - action @@ -227964,9 +228037,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -228288,7 +228361,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *755 + repository: *756 sender: *4 required: - action @@ -228364,10 +228437,10 @@ x-webhooks: type: string enum: - published - enterprise: *752 - installation: *753 - organization: *754 - release: &812 + enterprise: *753 + installation: *754 + organization: *755 + release: &813 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -228686,7 +228759,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *755 + repository: *756 sender: *4 required: - action @@ -228762,11 +228835,11 @@ x-webhooks: type: string enum: - released - enterprise: *752 - installation: *753 - organization: *754 - release: *811 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + release: *812 + repository: *756 sender: *4 required: - action @@ -228842,11 +228915,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *752 - installation: *753 - organization: *754 - release: *812 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + release: *813 + repository: *756 sender: *4 required: - action @@ -228922,11 +228995,11 @@ x-webhooks: type: string enum: - published - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - repository_advisory: *674 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + repository_advisory: *675 sender: *4 required: - action @@ -229002,11 +229075,11 @@ x-webhooks: type: string enum: - reported - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - repository_advisory: *674 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + repository_advisory: *675 sender: *4 required: - action @@ -229082,10 +229155,10 @@ x-webhooks: type: string enum: - archived - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -229162,10 +229235,10 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -229243,10 +229316,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -229330,10 +229403,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -229445,10 +229518,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -229520,10 +229593,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 status: type: string @@ -229604,10 +229677,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -229684,10 +229757,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -229781,10 +229854,10 @@ x-webhooks: - name required: - repository - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -229864,10 +229937,10 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 repository_ruleset: *337 sender: *4 required: @@ -229946,10 +230019,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 repository_ruleset: *337 sender: *4 required: @@ -230028,10 +230101,10 @@ x-webhooks: type: string enum: - edited - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 repository_ruleset: *337 changes: type: object @@ -230336,10 +230409,10 @@ x-webhooks: - from required: - owner - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -230417,10 +230490,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -230498,7 +230571,7 @@ x-webhooks: type: string enum: - create - alert: &813 + alert: &814 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -230620,10 +230693,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -230829,10 +230902,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -230910,11 +230983,11 @@ x-webhooks: type: string enum: - reopen - alert: *813 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + alert: *814 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231113,10 +231186,10 @@ x-webhooks: enum: - fixed - open - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231194,7 +231267,7 @@ x-webhooks: type: string enum: - assigned - alert: &814 + alert: &815 type: object properties: number: *186 @@ -231337,10 +231410,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231418,11 +231491,11 @@ x-webhooks: type: string enum: - created - alert: *814 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + alert: *815 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231503,11 +231576,11 @@ x-webhooks: type: string enum: - created - alert: *814 - installation: *753 - location: *815 - organization: *754 - repository: *755 + alert: *815 + installation: *754 + location: *816 + organization: *755 + repository: *756 sender: *4 required: - location @@ -231745,11 +231818,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *814 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + alert: *815 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231827,11 +231900,11 @@ x-webhooks: type: string enum: - reopened - alert: *814 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + alert: *815 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231909,11 +231982,11 @@ x-webhooks: type: string enum: - resolved - alert: *814 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + alert: *815 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -231991,12 +232064,12 @@ x-webhooks: type: string enum: - unassigned - alert: *814 + alert: *815 assignee: *4 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -232074,11 +232147,11 @@ x-webhooks: type: string enum: - validated - alert: *814 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + alert: *815 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -232204,10 +232277,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *755 - enterprise: *752 - installation: *753 - organization: *754 + repository: *756 + enterprise: *753 + installation: *754 + organization: *755 sender: *4 required: - action @@ -232285,11 +232358,11 @@ x-webhooks: type: string enum: - published - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - security_advisory: &816 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + security_advisory: &817 description: The details of the security advisory, including summary, description, and severity. type: object @@ -232460,11 +232533,11 @@ x-webhooks: type: string enum: - updated - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 - security_advisory: *816 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 + security_advisory: *817 sender: *4 required: - action @@ -232537,10 +232610,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -232713,9 +232786,9 @@ x-webhooks: type: object properties: security_and_analysis: *310 - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 repository: *358 sender: *4 required: @@ -232794,12 +232867,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - sponsorship: &817 + sponsorship: &818 type: object properties: created_at: @@ -233100,12 +233173,12 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - sponsorship: *817 + sponsorship: *818 required: - action - sponsorship @@ -233193,12 +233266,12 @@ x-webhooks: type: string required: - from - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - sponsorship: *817 + sponsorship: *818 required: - action - changes @@ -233275,17 +233348,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &818 + effective_date: &819 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: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - sponsorship: *817 + sponsorship: *818 required: - action - sponsorship @@ -233359,7 +233432,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &819 + changes: &820 type: object properties: tier: @@ -233403,13 +233476,13 @@ x-webhooks: - from required: - tier - effective_date: *818 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + effective_date: *819 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - sponsorship: *817 + sponsorship: *818 required: - action - changes @@ -233486,13 +233559,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *819 - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + changes: *820 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - sponsorship: *817 + sponsorship: *818 required: - action - changes @@ -233566,10 +233639,10 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -233652,10 +233725,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -234075,15 +234148,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *752 + enterprise: *753 id: description: The unique identifier of the status. type: integer - installation: *753 + installation: *754 name: type: string - organization: *754 - repository: *755 + organization: *755 + repository: *756 sender: *4 sha: description: The Commit SHA. @@ -234198,9 +234271,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -234289,9 +234362,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -234380,9 +234453,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -234471,9 +234544,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *753 - organization: *754 - repository: *755 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -234549,12 +234622,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - team: &820 + team: &821 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -234777,9 +234850,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 repository: title: Repository description: A git repository @@ -235237,7 +235310,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *820 + team: *821 required: - action - team @@ -235313,9 +235386,9 @@ x-webhooks: type: string enum: - created - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 repository: title: Repository description: A git repository @@ -235773,7 +235846,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *820 + team: *821 required: - action - team @@ -235850,9 +235923,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 repository: title: Repository description: A git repository @@ -236310,7 +236383,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *820 + team: *821 required: - action - team @@ -236454,9 +236527,9 @@ x-webhooks: - from required: - permissions - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 repository: title: Repository description: A git repository @@ -236914,7 +236987,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *820 + team: *821 required: - action - changes @@ -236992,9 +237065,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *752 - installation: *753 - organization: *754 + enterprise: *753 + installation: *754 + organization: *755 repository: title: Repository description: A git repository @@ -237452,7 +237525,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *820 + team: *821 required: - action - team @@ -237528,10 +237601,10 @@ x-webhooks: type: string enum: - started - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 required: - action @@ -237604,16 +237677,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *752 + enterprise: *753 inputs: type: object nullable: true additionalProperties: true - installation: *753 - organization: *754 + installation: *754 + organization: *755 ref: type: string - repository: *755 + repository: *756 sender: *4 workflow: type: string @@ -237695,10 +237768,10 @@ x-webhooks: type: string enum: - completed - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 workflow_job: allOf: @@ -238014,10 +238087,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 workflow_job: allOf: @@ -238356,10 +238429,10 @@ x-webhooks: type: string enum: - queued - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 workflow_job: type: object @@ -238573,10 +238646,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 workflow_job: type: object @@ -238792,12 +238865,12 @@ x-webhooks: type: string enum: - completed - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - workflow: *769 + workflow: *770 workflow_run: title: Workflow Run type: object @@ -239796,12 +239869,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - workflow: *769 + workflow: *770 workflow_run: title: Workflow Run type: object @@ -240785,12 +240858,12 @@ x-webhooks: type: string enum: - requested - enterprise: *752 - installation: *753 - organization: *754 - repository: *755 + enterprise: *753 + installation: *754 + organization: *755 + repository: *756 sender: *4 - workflow: *769 + workflow: *770 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index 99925b267..6cf866a6c 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -9831,7 +9831,7 @@ "/app/installations/{installation_id}/access_tokens": { "post": { "summary": "Create an installation access token for an app", - "description": "Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.\n\nOptionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.\n\nOptionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.\n\nYou must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.", + "description": "Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access.\n\n> [!NOTE]\n> Starting April 27, 2026, GitHub began a staged rollout of a stateless format (`ghs_APPID_JWT`) to all newly minted GitHub App installation tokens, making them more performant and improving the reliability of our API surface. If your application expects or relies on installation tokens being exactly 40 characters long, it may not handle this new token format correctly. You can now validate your apps and workflows using a temporary request header that lets you enable the token format on demand. For more information about the temporary header, see [the GitHub blog](https://github.blog/changelog/2026-05-15-github-app-installation-tokens-per-request-override-header).\n\nOptionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner.\n\nOptionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted.\n\nYou must use a [JWT](https://docs.github.com/apps/building-github-apps/authenticating-with-github-apps/#authenticating-as-a-github-app) to access this endpoint.", "tags": [ "apps" ], @@ -90858,6 +90858,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -90884,6 +90890,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -90909,6 +90916,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -91268,6 +91276,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -91294,6 +91308,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -91319,6 +91334,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -91630,6 +91646,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -93760,6 +93782,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -93780,6 +93808,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -221174,6 +221203,21 @@ "default": "all" } }, + { + "name": "evaluate_status", + "description": "The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned.\n - `all` - all rule suites will be returned.\n - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned.\n - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "all", + "active", + "evaluate" + ], + "default": "all" + } + }, { "name": "per_page", "description": "The number of results per page (max 100). 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).\"", @@ -255205,6 +255249,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -255231,6 +255281,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -255256,6 +255307,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -255585,6 +255637,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -257742,6 +257800,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -257762,6 +257826,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -386243,6 +386308,133 @@ } } }, + "/repos/{owner}/{repo}/hash-algorithm": { + "get": { + "summary": "Get the hash algorithm for a repository", + "description": "Returns the hash algorithm used to store repository objects.", + "tags": [ + "repos" + ], + "operationId": "repos/get-hash-algorithm", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Repository hash algorithm", + "description": "Repository hash algorithm", + "type": "object", + "properties": { + "hash_algorithm": { + "type": "string", + "description": "The Git hash algorithm used by this repository.", + "enum": [ + "sha1", + "sha256" + ], + "example": "sha1" + } + }, + "required": [ + "hash_algorithm" + ] + }, + "examples": { + "default": { + "value": { + "hash_algorithm": "sha1" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "repos", + "subcategory": "repos" + } + } + }, "/repos/{owner}/{repo}/hooks": { "get": { "summary": "List repository webhooks", @@ -552936,6 +553128,21 @@ "default": "all" } }, + { + "name": "evaluate_status", + "description": "The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned.\n - `all` - all rule suites will be returned.\n - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned.\n - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "all", + "active", + "evaluate" + ], + "default": "all" + } + }, { "name": "per_page", "description": "The number of results per page (max 100). 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).\"", diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index c8834c499..8eac5d9bb 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -1081,7 +1081,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &679 + - &680 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -5442,6 +5442,9 @@ paths: description: |- Creates an installation access token that enables a GitHub App to make authenticated API requests for the app's installation on an organization or individual account. Installation tokens expire one hour from the time you create them. Using an expired token produces a status code of `401 - Unauthorized`, and requires creating a new installation token. By default the installation token has access to all repositories that the installation can access. + > [!NOTE] + > Starting April 27, 2026, GitHub began a staged rollout of a stateless format (`ghs_APPID_JWT`) to all newly minted GitHub App installation tokens, making them more performant and improving the reliability of our API surface. If your application expects or relies on installation tokens being exactly 40 characters long, it may not handle this new token format correctly. You can now validate your apps and workflows using a temporary request header that lets you enable the token format on demand. For more information about the temporary header, see [the GitHub blog](https://github.blog/changelog/2026-05-15-github-app-installation-tokens-per-request-override-header). + Optionally, you can use the `repositories` or `repository_ids` body parameters to specify individual repositories that the installation access token can access. If you don't use `repositories` or `repository_ids` to grant access to specific repositories, the installation access token will have access to all repositories that the installation was granted access to. The installation access token cannot be granted access to repositories that the installation was not granted access to. Up to 500 repositories can be listed in this manner. Optionally, use the `permissions` body parameter to specify the permissions that the installation access token should have. If `permissions` is not specified, the installation access token will have all of the permissions that were granted to the app. The installation access token cannot be granted permissions that the app was not granted. @@ -14268,7 +14271,7 @@ paths: properties: action: type: string - discussion: &773 + discussion: &774 title: Discussion description: A Discussion in a repository. type: object @@ -15013,7 +15016,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &690 + sub_issues_summary: &691 title: Sub-issues Summary type: object properties: @@ -15126,7 +15129,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &691 + issue_dependencies_summary: &692 title: Issue Dependencies Summary type: object properties: @@ -16642,7 +16645,7 @@ paths: url: type: string format: uri - user: &697 + user: &698 title: Public User description: Public User type: object @@ -21896,7 +21899,7 @@ paths: required: false schema: type: string - - &748 + - &749 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -22042,7 +22045,7 @@ paths: parameters: - *78 - *124 - - &749 + - &750 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 @@ -22154,7 +22157,7 @@ paths: - *124 - *126 - *125 - - &750 + - &751 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22162,7 +22165,7 @@ paths: schema: type: string - *127 - - &751 + - &752 name: sku description: The SKU to query for usage. in: query @@ -26320,6 +26323,13 @@ paths: - name ephemeral: type: boolean + version: + description: The version of the GitHub Actions Runner software. + This is only set if the runner has connected to the service + at least once. + nullable: true + type: string + example: 2.323.0 required: - id - name @@ -26338,6 +26348,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -26354,6 +26365,7 @@ paths: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -26849,6 +26861,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -29691,12 +29704,12 @@ paths: required: - subject_digests examples: - default: &729 + default: &730 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &730 + withPredicateType: &731 value: subject_digests: - sha256:abc123 @@ -29754,7 +29767,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &731 + default: &732 value: attestations_subject_digests: - sha256:abc: @@ -42297,7 +42310,7 @@ paths: parameters: - *78 - *268 - - &712 + - &713 name: repo_name description: repo_name parameter in: path @@ -43356,7 +43369,7 @@ paths: - nuget - container - *78 - - &713 + - &714 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43397,7 +43410,7 @@ paths: default: *275 '403': *29 '401': *25 - '400': &715 + '400': &716 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -45494,7 +45507,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &805 + properties: &806 id: type: number description: The unique identifier of the status update. @@ -45542,7 +45555,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &806 + required: &807 - id - node_id - created_at @@ -46432,7 +46445,7 @@ paths: - updated_at - project_url examples: - default: &735 + default: &736 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46609,7 +46622,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &736 + items: &737 type: object properties: name: @@ -46646,7 +46659,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &737 + iteration_configuration: &738 type: object description: The configuration for iteration fields. properties: @@ -46696,7 +46709,7 @@ paths: value: name: Due date data_type: date - single_select_field: &738 + single_select_field: &739 summary: Create a single select field value: name: Priority @@ -46723,7 +46736,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &739 + iteration_field: &740 summary: Create an iteration field value: name: Sprint @@ -46749,7 +46762,7 @@ paths: application/json: schema: *296 examples: - text_field: &740 + text_field: &741 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -46758,7 +46771,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: &741 + number_field: &742 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -46767,7 +46780,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: &742 + date_field: &743 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -46776,7 +46789,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: &743 + single_select_field: &744 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46810,7 +46823,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &744 + iteration_field: &745 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -46856,7 +46869,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *292 - - &745 + - &746 name: field_id description: The unique identifier of the field. in: path @@ -46871,7 +46884,7 @@ paths: application/json: schema: *296 examples: - default: &746 + default: &747 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48068,7 +48081,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &726 + schema: &727 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -48245,7 +48258,7 @@ paths: parameters: - *292 - *78 - - &747 + - &748 name: view_number description: The number that identifies the project view. in: path @@ -51533,6 +51546,22 @@ paths: - bypass - all default: all + - &634 + name: evaluate_status + description: |- + The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. + - `all` - all rule suites will be returned. + - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned. + - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned. + in: query + required: false + schema: + type: string + enum: + - all + - active + - evaluate + default: all - *17 - *19 responses: @@ -51540,7 +51569,7 @@ paths: description: Response content: application/json: - schema: &634 + schema: &635 title: Rule Suites description: Response type: array @@ -51595,7 +51624,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &635 + default: &636 value: - id: 21 actor_id: 12 @@ -51639,7 +51668,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *78 - - &636 + - &637 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -51655,7 +51684,7 @@ paths: description: Response content: application/json: - schema: &637 + schema: &638 title: Rule Suite description: Response type: object @@ -51754,7 +51783,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &638 + default: &639 value: id: 21 actor_id: 12 @@ -52001,7 +52030,7 @@ paths: type: string format: date-time examples: - default: &640 + default: &641 value: - version_id: 3 actor: @@ -52054,7 +52083,7 @@ paths: description: Response content: application/json: - schema: &641 + schema: &642 allOf: - *342 - type: object @@ -52126,7 +52155,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *78 - - &642 + - &643 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -52137,7 +52166,7 @@ paths: enum: - open - resolved - - &643 + - &644 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -52147,7 +52176,7 @@ paths: required: false schema: type: string - - &644 + - &645 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -52158,7 +52187,7 @@ paths: required: false schema: type: string - - &645 + - &646 name: exclude_providers in: query description: |- @@ -52169,7 +52198,7 @@ paths: required: false schema: type: string - - &646 + - &647 name: providers in: query description: |- @@ -52180,7 +52209,7 @@ paths: required: false schema: type: string - - &647 + - &648 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -52189,7 +52218,7 @@ paths: required: false schema: type: string - - &648 + - &649 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -52208,7 +52237,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &649 + - &650 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. @@ -52223,7 +52252,7 @@ paths: - *62 - *19 - *17 - - &650 + - &651 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 @@ -52233,7 +52262,7 @@ paths: required: false schema: type: string - - &651 + - &652 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 @@ -52243,7 +52272,7 @@ paths: required: false schema: type: string - - &652 + - &653 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -52252,7 +52281,7 @@ paths: required: false schema: type: string - - &653 + - &654 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -52261,7 +52290,7 @@ paths: schema: type: boolean default: false - - &654 + - &655 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -52270,7 +52299,7 @@ paths: schema: type: boolean default: false - - &655 + - &656 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -52279,7 +52308,7 @@ paths: schema: type: boolean default: false - - &656 + - &657 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -52316,14 +52345,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &657 + state: &658 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: &658 + resolution: &659 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -52440,8 +52469,8 @@ paths: pull request. ' - oneOf: &659 - - &661 + oneOf: &660 + - &662 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -52499,7 +52528,7 @@ paths: - blob_url - commit_sha - commit_url - - &662 + - &663 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. @@ -52554,7 +52583,7 @@ paths: - page_url - commit_sha - commit_url - - &663 + - &664 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -52574,7 +52603,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &664 + - &665 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -52594,7 +52623,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &665 + - &666 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -52614,7 +52643,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &666 + - &667 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -52628,7 +52657,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &667 + - &668 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -52642,7 +52671,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &668 + - &669 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -52656,7 +52685,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &669 + - &670 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. @@ -52676,7 +52705,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &670 + - &671 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. @@ -52696,7 +52725,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &671 + - &672 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. @@ -52716,7 +52745,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &672 + - &673 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. @@ -52736,7 +52765,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &673 + - &674 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -53255,7 +53284,7 @@ paths: application/json: schema: type: array - items: &677 + items: &678 description: A repository security advisory. type: object properties: @@ -53578,7 +53607,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &678 + default: &679 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -55576,7 +55605,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &693 + response-if-user-is-a-team-maintainer: &694 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -55641,7 +55670,7 @@ paths: application/json: schema: *356 examples: - response-if-users-membership-with-team-is-now-pending: &694 + response-if-users-membership-with-team-is-now-pending: &695 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -55755,7 +55784,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &695 + schema: &696 title: Team Repository description: A team's access to a repository. type: object @@ -56497,7 +56526,7 @@ paths: type: array items: *208 examples: - response-if-child-teams-exist: &696 + response-if-child-teams-exist: &697 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -62164,7 +62193,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &767 + properties: &768 url: type: string format: uri @@ -62249,7 +62278,7 @@ paths: nullable: true properties: *83 required: *84 - required: &768 + required: &769 - id - node_id - sha @@ -68369,7 +68398,7 @@ paths: check. type: array items: *93 - deployment: &760 + deployment: &761 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -69281,7 +69310,7 @@ paths: type: string format: date-time nullable: true - head_commit: &788 + head_commit: &789 title: Simple Commit description: A commit. type: object @@ -73785,14 +73814,14 @@ paths: type: integer machines: type: array - items: &702 + items: &703 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *478 required: *479 examples: - default: &703 + default: &704 value: total_count: 2 machines: @@ -76938,7 +76967,7 @@ paths: application/json: schema: type: array - items: &682 + items: &683 title: Status description: The status of a commit. type: object @@ -78551,7 +78580,7 @@ paths: items: type: object properties: - placeholder_id: &674 + placeholder_id: &675 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -84474,6 +84503,49 @@ paths: enabledForGitHubApps: true category: git subcategory: trees + "/repos/{owner}/{repo}/hash-algorithm": + get: + summary: Get the hash algorithm for a repository + description: Returns the hash algorithm used to store repository objects. + tags: + - repos + operationId: repos/get-hash-algorithm + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository + parameters: + - *357 + - *358 + responses: + '200': + description: Response + content: + application/json: + schema: + title: Repository hash algorithm + description: Repository hash algorithm + type: object + properties: + hash_algorithm: + type: string + description: The Git hash algorithm used by this repository. + enum: + - sha1 + - sha256 + example: sha1 + required: + - hash_algorithm + examples: + default: + value: + hash_algorithm: sha1 + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/hooks": get: summary: List repository webhooks @@ -84551,7 +84623,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &797 + last_response: &798 title: Hook Response type: object properties: @@ -85603,7 +85675,7 @@ paths: parameters: - *357 - *358 - - &724 + - &725 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -86037,7 +86109,7 @@ paths: type: array items: *556 examples: - default: &717 + default: &718 value: - id: 1 repository: @@ -100053,7 +100125,7 @@ paths: application/json: schema: *339 examples: - default: &639 + default: &640 value: id: 42 name: super cool ruleset @@ -100107,6 +100179,7 @@ paths: - *631 - *632 - *633 + - *634 - *17 - *19 responses: @@ -100114,9 +100187,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 '404': *6 '500': *55 x-github: @@ -100139,15 +100212,15 @@ paths: parameters: - *357 - *358 - - *636 + - *637 responses: '200': description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *638 + default: *639 '404': *6 '500': *55 x-github: @@ -100198,7 +100271,7 @@ paths: application/json: schema: *339 examples: - default: *639 + default: *640 '404': *6 '500': *55 put: @@ -100281,7 +100354,7 @@ paths: application/json: schema: *339 examples: - default: *639 + default: *640 '404': *6 '422': *15 '500': *55 @@ -100343,7 +100416,7 @@ paths: type: array items: *342 examples: - default: *640 + default: *641 '404': *6 '500': *55 x-github: @@ -100381,7 +100454,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: default: value: @@ -100438,7 +100511,6 @@ paths: parameters: - *357 - *358 - - *642 - *643 - *644 - *645 @@ -100446,16 +100518,17 @@ paths: - *647 - *648 - *649 + - *650 - *62 - *19 - *17 - - *650 - *651 - *652 - *653 - *654 - *655 - *656 + - *657 responses: '200': description: Response @@ -100463,7 +100536,7 @@ paths: application/json: schema: type: array - items: &660 + items: &661 type: object properties: number: *186 @@ -100482,8 +100555,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *657 - resolution: *658 + state: *658 + resolution: *659 resolved_at: type: string format: date-time @@ -100589,7 +100662,7 @@ paths: pull request. ' - oneOf: *659 + oneOf: *660 nullable: true has_more_locations: type: boolean @@ -100756,13 +100829,13 @@ paths: - *357 - *358 - *454 - - *655 + - *656 responses: '200': description: Response content: application/json: - schema: *660 + schema: *661 examples: default: value: @@ -100826,8 +100899,8 @@ paths: schema: type: object properties: - state: *657 - resolution: *658 + state: *658 + resolution: *659 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -100871,7 +100944,7 @@ paths: description: Response content: application/json: - schema: *660 + schema: *661 examples: default: value: @@ -100983,7 +101056,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &819 + items: &820 type: object properties: type: @@ -101009,7 +101082,6 @@ paths: example: commit details: oneOf: - - *661 - *662 - *663 - *664 @@ -101022,6 +101094,7 @@ paths: - *671 - *672 - *673 + - *674 examples: default: value: @@ -101116,14 +101189,14 @@ paths: schema: type: object properties: - reason: &675 + reason: &676 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *674 + placeholder_id: *675 required: - reason - placeholder_id @@ -101140,7 +101213,7 @@ paths: schema: type: object properties: - reason: *675 + reason: *676 expire_at: type: string format: date-time @@ -101202,7 +101275,7 @@ paths: properties: incremental_scans: type: array - items: &676 + items: &677 description: Information on a single scan performed by secret scanning on the repository type: object @@ -101233,15 +101306,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *676 + items: *677 backfill_scans: type: array - items: *676 + items: *677 custom_pattern_backfill_scans: type: array items: allOf: - - *676 + - *677 - type: object properties: pattern_name: @@ -101254,7 +101327,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *676 + items: *677 examples: default: value: @@ -101364,9 +101437,9 @@ paths: application/json: schema: type: array - items: *677 + items: *678 examples: - default: *678 + default: *679 '400': *14 '404': *6 x-github: @@ -101550,9 +101623,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: &680 + default: &681 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -101896,7 +101969,7 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: default: value: @@ -102051,15 +102124,15 @@ paths: parameters: - *357 - *358 - - *679 + - *680 responses: '200': description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *680 + default: *681 '403': *29 '404': *6 x-github: @@ -102085,7 +102158,7 @@ paths: parameters: - *357 - *358 - - *679 + - *680 requestBody: required: true content: @@ -102244,10 +102317,10 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *680 - add_credit: *680 + default: *681 + add_credit: *681 '403': *29 '404': *6 '422': @@ -102287,7 +102360,7 @@ paths: parameters: - *357 - *358 - - *679 + - *680 responses: '202': *39 '400': *14 @@ -102316,7 +102389,7 @@ paths: parameters: - *357 - *358 - - *679 + - *680 responses: '202': description: Response @@ -102460,7 +102533,7 @@ paths: application/json: schema: type: array - items: &681 + items: &682 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -102833,7 +102906,7 @@ paths: application/json: schema: type: array - items: *681 + items: *682 examples: default: value: @@ -102921,7 +102994,7 @@ paths: description: Response content: application/json: - schema: *682 + schema: *683 examples: default: value: @@ -103015,7 +103088,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &683 + schema: &684 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -103110,7 +103183,7 @@ paths: description: Response content: application/json: - schema: *683 + schema: *684 examples: default: value: @@ -103317,7 +103390,7 @@ paths: description: Response content: application/json: - schema: &684 + schema: &685 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -103329,7 +103402,7 @@ paths: required: - names examples: - default: &685 + default: &686 value: names: - octocat @@ -103384,9 +103457,9 @@ paths: description: Response content: application/json: - schema: *684 + schema: *685 examples: - default: *685 + default: *686 '404': *6 '422': *7 x-github: @@ -103409,7 +103482,7 @@ paths: parameters: - *357 - *358 - - &686 + - &687 name: per description: The time frame to display results for. in: query @@ -103438,7 +103511,7 @@ paths: example: 128 clones: type: array - items: &687 + items: &688 title: Traffic type: object properties: @@ -103679,7 +103752,7 @@ paths: parameters: - *357 - *358 - - *686 + - *687 responses: '200': description: Response @@ -103698,7 +103771,7 @@ paths: example: 3782 views: type: array - items: *687 + items: *688 required: - uniques - count @@ -104476,7 +104549,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &688 + text_matches: &689 title: Search Result Text Matches type: array items: @@ -104638,7 +104711,7 @@ paths: enum: - author-date - committer-date - - &689 + - &690 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 @@ -104766,7 +104839,7 @@ paths: type: number node_id: type: string - text_matches: *688 + text_matches: *689 required: - sha - node_id @@ -104958,7 +105031,7 @@ paths: - interactions - created - updated - - *689 + - *690 - *17 - *19 - name: advanced_search @@ -105072,8 +105145,8 @@ paths: description: type: string nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -105108,7 +105181,7 @@ paths: type: string format: date-time nullable: true - text_matches: *688 + text_matches: *689 pull_request: type: object properties: @@ -105424,7 +105497,7 @@ paths: enum: - created - updated - - *689 + - *690 - *17 - *19 responses: @@ -105468,7 +105541,7 @@ paths: nullable: true score: type: number - text_matches: *688 + text_matches: *689 required: - id - node_id @@ -105553,7 +105626,7 @@ paths: - forks - help-wanted-issues - updated - - *689 + - *690 - *17 - *19 responses: @@ -105801,7 +105874,7 @@ paths: - admin - pull - push - text_matches: *688 + text_matches: *689 temp_clone_token: type: string allow_merge_commit: @@ -106101,7 +106174,7 @@ paths: type: string format: uri nullable: true - text_matches: *688 + text_matches: *689 related: type: array nullable: true @@ -106292,7 +106365,7 @@ paths: - followers - repositories - joined - - *689 + - *690 - *17 - *19 responses: @@ -106396,7 +106469,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *688 + text_matches: *689 blog: type: string nullable: true @@ -106475,7 +106548,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &692 + - &693 name: team_id description: The unique identifier of the team. in: path @@ -106516,7 +106589,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *692 + - *693 requestBody: required: true content: @@ -106616,7 +106689,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *692 + - *693 responses: '204': description: Response @@ -106645,7 +106718,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *692 + - *693 - *17 - *19 responses: @@ -106683,7 +106756,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *692 + - *693 - name: role description: Filters members returned by their role in the team. in: query @@ -106734,7 +106807,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *692 + - *693 - *74 responses: '204': @@ -106771,7 +106844,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *692 + - *693 - *74 responses: '204': @@ -106811,7 +106884,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *692 + - *693 - *74 responses: '204': @@ -106848,7 +106921,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *692 + - *693 - *74 responses: '200': @@ -106857,7 +106930,7 @@ paths: application/json: schema: *356 examples: - response-if-user-is-a-team-maintainer: *693 + response-if-user-is-a-team-maintainer: *694 '404': *6 x-github: githubCloudOnly: false @@ -106890,7 +106963,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *692 + - *693 - *74 requestBody: required: false @@ -106918,7 +106991,7 @@ paths: application/json: schema: *356 examples: - response-if-users-membership-with-team-is-now-pending: *694 + response-if-users-membership-with-team-is-now-pending: *695 '403': description: Forbidden if team synchronization is set up '422': @@ -106952,7 +107025,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *692 + - *693 - *74 responses: '204': @@ -106980,7 +107053,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *692 + - *693 - *17 - *19 responses: @@ -107022,7 +107095,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *692 + - *693 - *357 - *358 responses: @@ -107030,7 +107103,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *695 + schema: *696 examples: alternative-response-with-extra-repository-information: value: @@ -107187,7 +107260,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *692 + - *693 - *357 - *358 requestBody: @@ -107239,7 +107312,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *692 + - *693 - *357 - *358 responses: @@ -107266,7 +107339,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *692 + - *693 - *17 - *19 responses: @@ -107278,7 +107351,7 @@ paths: type: array items: *208 examples: - response-if-child-teams-exist: *696 + response-if-child-teams-exist: *697 headers: Link: *70 '404': *6 @@ -107311,7 +107384,7 @@ paths: application/json: schema: oneOf: - - &698 + - &699 title: Private User description: Private User type: object @@ -107514,7 +107587,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *697 + - *698 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -107667,7 +107740,7 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: default: value: @@ -108065,7 +108138,7 @@ paths: type: integer secrets: type: array - items: &699 + items: &700 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -108181,7 +108254,7 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: default: value: @@ -108594,7 +108667,7 @@ paths: description: Response content: application/json: - schema: &700 + schema: &701 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -108635,7 +108708,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &701 + default: &702 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -108680,9 +108753,9 @@ paths: description: Response content: application/json: - schema: *700 + schema: *701 examples: - default: *701 + default: *702 '404': *6 x-github: githubCloudOnly: false @@ -108719,9 +108792,9 @@ paths: type: integer machines: type: array - items: *702 + items: *703 examples: - default: *703 + default: *704 '304': *37 '500': *55 '401': *25 @@ -109660,7 +109733,7 @@ paths: type: array items: *274 examples: - default: &714 + default: &715 value: - id: 197 name: hello_docker @@ -109761,7 +109834,7 @@ paths: application/json: schema: type: array - items: &704 + items: &705 title: Email description: Email type: object @@ -109826,9 +109899,9 @@ paths: application/json: schema: type: array - items: *704 + items: *705 examples: - default: &716 + default: &717 value: - email: octocat@github.com verified: true @@ -109903,7 +109976,7 @@ paths: application/json: schema: type: array - items: *704 + items: *705 examples: default: value: @@ -110159,7 +110232,7 @@ paths: application/json: schema: type: array - items: &705 + items: &706 title: GPG Key description: A unique encryption key type: object @@ -110290,7 +110363,7 @@ paths: - subkeys - revoked examples: - default: &733 + default: &734 value: - id: 3 name: Octocat's GPG Key @@ -110375,9 +110448,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *706 examples: - default: &706 + default: &707 value: id: 3 name: Octocat's GPG Key @@ -110434,7 +110507,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &707 + - &708 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -110446,9 +110519,9 @@ paths: description: Response content: application/json: - schema: *705 + schema: *706 examples: - default: *706 + default: *707 '404': *6 '304': *37 '403': *29 @@ -110471,7 +110544,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *707 + - *708 responses: '204': description: Response @@ -110938,7 +111011,7 @@ paths: application/json: schema: type: array - items: &708 + items: &709 title: Key description: Key type: object @@ -111039,9 +111112,9 @@ paths: description: Response content: application/json: - schema: *708 + schema: *709 examples: - default: &709 + default: &710 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -111080,9 +111153,9 @@ paths: description: Response content: application/json: - schema: *708 + schema: *709 examples: - default: *709 + default: *710 '404': *6 '304': *37 '403': *29 @@ -111138,7 +111211,7 @@ paths: application/json: schema: type: array - items: &710 + items: &711 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -111206,7 +111279,7 @@ paths: - account - plan examples: - default: &711 + default: &712 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -111268,9 +111341,9 @@ paths: application/json: schema: type: array - items: *710 + items: *711 examples: - default: *711 + default: *712 headers: Link: *70 '304': *37 @@ -112279,7 +112352,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *268 - - *712 + - *713 responses: '204': description: Response @@ -112412,7 +112485,7 @@ paths: - docker - nuget - container - - *713 + - *714 - *19 - *17 responses: @@ -112424,8 +112497,8 @@ paths: type: array items: *274 examples: - default: *714 - '400': *715 + default: *715 + '400': *716 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -112454,7 +112527,7 @@ paths: application/json: schema: *274 examples: - default: &734 + default: &735 value: id: 40201 name: octo-name @@ -112816,9 +112889,9 @@ paths: application/json: schema: type: array - items: *704 + items: *705 examples: - default: *716 + default: *717 headers: Link: *70 '304': *37 @@ -112931,7 +113004,7 @@ paths: type: array items: *82 examples: - default: &723 + default: &724 summary: Default response value: - id: 1296269 @@ -113283,7 +113356,7 @@ paths: type: array items: *556 examples: - default: *717 + default: *718 headers: Link: *70 '304': *37 @@ -113368,7 +113441,7 @@ paths: application/json: schema: type: array - items: &718 + items: &719 title: Social account description: Social media account type: object @@ -113383,7 +113456,7 @@ paths: - provider - url examples: - default: &719 + default: &720 value: - provider: twitter url: https://twitter.com/github @@ -113445,9 +113518,9 @@ paths: application/json: schema: type: array - items: *718 + items: *719 examples: - default: *719 + default: *720 '422': *15 '304': *37 '404': *6 @@ -113534,7 +113607,7 @@ paths: application/json: schema: type: array - items: &720 + items: &721 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -113554,7 +113627,7 @@ paths: - title - created_at examples: - default: &752 + default: &753 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -113618,9 +113691,9 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: - default: &721 + default: &722 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -113650,7 +113723,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: - - &722 + - &723 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -113662,9 +113735,9 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: - default: *721 + default: *722 '404': *6 '304': *37 '403': *29 @@ -113687,7 +113760,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: - - *722 + - *723 responses: '204': description: Response @@ -113716,7 +113789,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &753 + - &754 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 @@ -113741,11 +113814,11 @@ paths: type: array items: *82 examples: - default-response: *723 + default-response: *724 application/vnd.github.v3.star+json: schema: type: array - items: &754 + items: &755 title: Starred Repository description: Starred Repository type: object @@ -114114,10 +114187,10 @@ paths: application/json: schema: oneOf: + - *699 - *698 - - *697 examples: - default-response: &727 + default-response: &728 summary: Default response value: login: octocat @@ -114152,7 +114225,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &728 + response-with-git-hub-plan-information: &729 summary: Response with GitHub plan information value: login: octocat @@ -114209,7 +114282,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &725 + - &726 name: user_id description: The unique identifier of the user. in: path @@ -114275,7 +114348,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *724 + - *725 - *17 responses: '200': @@ -114310,7 +114383,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *725 + - *726 - *292 requestBody: required: true @@ -114382,7 +114455,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *726 + schema: *727 examples: table_view: summary: Response for creating a table view @@ -114434,11 +114507,11 @@ paths: application/json: schema: oneOf: + - *699 - *698 - - *697 examples: - default-response: *727 - response-with-git-hub-plan-information: *728 + default-response: *728 + response-with-git-hub-plan-information: *729 '404': *6 x-github: githubCloudOnly: false @@ -114488,8 +114561,8 @@ paths: required: - subject_digests examples: - default: *729 - withPredicateType: *730 + default: *730 + withPredicateType: *731 responses: '200': description: Response @@ -114542,7 +114615,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *731 + default: *732 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -115057,7 +115130,7 @@ paths: application/json: schema: *202 examples: - default: &732 + default: &733 summary: Example response for a user copilot space value: id: 42 @@ -115158,7 +115231,7 @@ paths: application/json: schema: *202 examples: - default: *732 + default: *733 '403': *29 '404': *6 x-github: @@ -115281,7 +115354,7 @@ paths: application/json: schema: *202 examples: - default: *732 + default: *733 '403': *29 '404': *6 '422': *15 @@ -116049,7 +116122,7 @@ paths: type: array items: *274 examples: - default: *714 + default: *715 '403': *29 '401': *25 x-github: @@ -116433,9 +116506,9 @@ paths: application/json: schema: type: array - items: *705 + items: *706 examples: - default: *733 + default: *734 headers: Link: *70 x-github: @@ -116663,7 +116736,7 @@ paths: - docker - nuget - container - - *713 + - *714 - *74 - *19 - *17 @@ -116676,10 +116749,10 @@ paths: type: array items: *274 examples: - default: *714 + default: *715 '403': *29 '401': *25 - '400': *715 + '400': *716 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116709,7 +116782,7 @@ paths: application/json: schema: *274 examples: - default: *734 + default: *735 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117058,7 +117131,7 @@ paths: type: array items: *296 examples: - default: *735 + default: *736 headers: Link: *70 '304': *37 @@ -117118,7 +117191,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *736 + items: *737 required: - name - data_type @@ -117134,7 +117207,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *737 + iteration_configuration: *738 required: - name - data_type @@ -117156,8 +117229,8 @@ paths: value: name: Due date data_type: date - single_select_field: *738 - iteration_field: *739 + single_select_field: *739 + iteration_field: *740 responses: '201': description: Response @@ -117165,11 +117238,11 @@ paths: application/json: schema: *296 examples: - text_field: *740 - number_field: *741 - date_field: *742 - single_select_field: *743 - iteration_field: *744 + text_field: *741 + number_field: *742 + date_field: *743 + single_select_field: *744 + iteration_field: *745 '304': *37 '403': *29 '401': *25 @@ -117191,7 +117264,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *292 - - *745 + - *746 - *74 responses: '200': @@ -117200,7 +117273,7 @@ paths: application/json: schema: *296 examples: - default: *746 + default: *747 headers: Link: *70 '304': *37 @@ -117554,7 +117627,7 @@ paths: parameters: - *292 - *74 - - *747 + - *748 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -117829,7 +117902,7 @@ paths: - *124 - *126 - *125 - - *748 + - *749 - *127 responses: '200': @@ -117960,7 +118033,7 @@ paths: parameters: - *74 - *124 - - *749 + - *750 - *125 responses: '200': @@ -118059,9 +118132,9 @@ paths: - *124 - *126 - *125 - - *750 - - *127 - *751 + - *127 + - *752 responses: '200': description: Response when getting a billing usage summary @@ -118195,9 +118268,9 @@ paths: application/json: schema: type: array - items: *718 + items: *719 examples: - default: *719 + default: *720 headers: Link: *70 x-github: @@ -118227,9 +118300,9 @@ paths: application/json: schema: type: array - items: *720 + items: *721 examples: - default: *752 + default: *753 headers: Link: *70 x-github: @@ -118254,7 +118327,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *74 - - *753 + - *754 - *62 - *17 - *19 @@ -118266,11 +118339,11 @@ paths: schema: anyOf: - type: array - items: *754 + items: *755 - type: array items: *82 examples: - default-response: *723 + default-response: *724 headers: Link: *70 x-github: @@ -118429,7 +118502,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &755 + enterprise: &756 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -118487,7 +118560,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &756 + installation: &757 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -118506,7 +118579,7 @@ x-webhooks: required: - id - node_id - organization: &757 + organization: &758 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -118566,13 +118639,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &758 + repository: &759 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &790 + properties: &791 id: description: Unique identifier of the repository example: 42 @@ -119267,7 +119340,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &791 + required: &792 - archive_url - assignees_url - blobs_url @@ -119341,7 +119414,7 @@ x-webhooks: - watchers_count - created_at - updated_at - x-github-breaking-changes: &792 + x-github-breaking-changes: &793 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -119432,10 +119505,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -119511,11 +119584,11 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 - rule: &759 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 + rule: &760 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) @@ -119738,11 +119811,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 - rule: *759 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 + rule: *760 sender: *4 required: - action @@ -119925,11 +119998,11 @@ x-webhooks: - everyone required: - from - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 - rule: *759 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 + rule: *760 sender: *4 required: - action @@ -120013,7 +120086,7 @@ x-webhooks: type: string enum: - completed - check_run: &761 + check_run: &762 title: CheckRun description: A check performed on the code of a given code change type: object @@ -120104,7 +120177,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *760 + deployment: *761 details_url: example: https://example.com type: string @@ -120189,10 +120262,10 @@ x-webhooks: - output - app - pull_requests - installation: *756 - enterprise: *755 - organization: *757 - repository: *758 + installation: *757 + enterprise: *756 + organization: *758 + repository: *759 sender: *4 required: - check_run @@ -120583,11 +120656,11 @@ x-webhooks: type: string enum: - created - check_run: *761 - installation: *756 - enterprise: *755 - organization: *757 - repository: *758 + check_run: *762 + installation: *757 + enterprise: *756 + organization: *758 + repository: *759 sender: *4 required: - check_run @@ -120981,11 +121054,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *761 - installation: *756 - enterprise: *755 - organization: *757 - repository: *758 + check_run: *762 + installation: *757 + enterprise: *756 + organization: *758 + repository: *759 requested_action: description: The action requested by the user. type: object @@ -121388,11 +121461,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *761 - installation: *756 - enterprise: *755 - organization: *757 - repository: *758 + check_run: *762 + installation: *757 + enterprise: *756 + organization: *758 + repository: *759 sender: *4 required: - check_run @@ -122362,10 +122435,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -123059,10 +123132,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -123750,10 +123823,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -124064,20 +124137,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &762 + commit_oid: &763 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: *755 - installation: *756 - organization: *757 - ref: &763 + enterprise: *756 + installation: *757 + organization: *758 + ref: &764 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: *758 + repository: *759 sender: *4 required: - action @@ -124472,12 +124545,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *762 - enterprise: *755 - installation: *756 - organization: *757 - ref: *763 - repository: *758 + commit_oid: *763 + enterprise: *756 + installation: *757 + organization: *758 + ref: *764 + repository: *759 sender: *4 required: - action @@ -124743,12 +124816,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *762 - enterprise: *755 - installation: *756 - organization: *757 - ref: *763 - repository: *758 + commit_oid: *763 + enterprise: *756 + installation: *757 + organization: *758 + ref: *764 + repository: *759 sender: *4 required: - action @@ -125080,12 +125153,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *762 - enterprise: *755 - installation: *756 - organization: *757 - ref: *763 - repository: *758 + commit_oid: *763 + enterprise: *756 + installation: *757 + organization: *758 + ref: *764 + repository: *759 sender: *4 required: - action @@ -125359,16 +125432,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *758 + repository: *759 sender: *4 required: - action @@ -125605,12 +125678,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *762 - enterprise: *755 - installation: *756 - organization: *757 - ref: *763 - repository: *758 + commit_oid: *763 + enterprise: *756 + installation: *757 + organization: *758 + ref: *764 + repository: *759 sender: *4 required: - action @@ -125921,10 +125994,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -126179,10 +126252,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -126262,18 +126335,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *757 - pusher_type: &764 + organization: *758 + pusher_type: &765 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &765 + ref: &766 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -126283,7 +126356,7 @@ x-webhooks: enum: - tag - branch - repository: *758 + repository: *759 sender: *4 required: - ref @@ -126366,9 +126439,9 @@ x-webhooks: enum: - created definition: *304 - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 sender: *4 required: - action @@ -126453,9 +126526,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 sender: *4 required: - action @@ -126533,9 +126606,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *304 - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 sender: *4 required: - action @@ -126613,9 +126686,9 @@ x-webhooks: enum: - updated definition: *304 - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 sender: *4 required: - action @@ -126692,10 +126765,10 @@ x-webhooks: type: string enum: - updated - enterprise: *755 - installation: *756 - repository: *758 - organization: *757 + enterprise: *756 + installation: *757 + repository: *759 + organization: *758 sender: *4 new_property_values: type: array @@ -126780,18 +126853,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *755 - installation: *756 - organization: *757 - pusher_type: *764 - ref: *765 + enterprise: *756 + installation: *757 + organization: *758 + pusher_type: *765 + ref: *766 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *758 + repository: *759 sender: *4 required: - ref @@ -126872,10 +126945,10 @@ x-webhooks: enum: - assignees_changed alert: *513 - installation: *756 - organization: *757 - enterprise: *755 - repository: *758 + installation: *757 + organization: *758 + enterprise: *756 + repository: *759 sender: *4 required: - action @@ -126956,10 +127029,10 @@ x-webhooks: enum: - auto_dismissed alert: *513 - installation: *756 - organization: *757 - enterprise: *755 - repository: *758 + installation: *757 + organization: *758 + enterprise: *756 + repository: *759 sender: *4 required: - action @@ -127041,10 +127114,10 @@ x-webhooks: enum: - auto_reopened alert: *513 - installation: *756 - organization: *757 - enterprise: *755 - repository: *758 + installation: *757 + organization: *758 + enterprise: *756 + repository: *759 sender: *4 required: - action @@ -127126,10 +127199,10 @@ x-webhooks: enum: - created alert: *513 - installation: *756 - organization: *757 - enterprise: *755 - repository: *758 + installation: *757 + organization: *758 + enterprise: *756 + repository: *759 sender: *4 required: - action @@ -127209,10 +127282,10 @@ x-webhooks: enum: - dismissed alert: *513 - installation: *756 - organization: *757 - enterprise: *755 - repository: *758 + installation: *757 + organization: *758 + enterprise: *756 + repository: *759 sender: *4 required: - action @@ -127292,10 +127365,10 @@ x-webhooks: enum: - fixed alert: *513 - installation: *756 - organization: *757 - enterprise: *755 - repository: *758 + installation: *757 + organization: *758 + enterprise: *756 + repository: *759 sender: *4 required: - action @@ -127376,10 +127449,10 @@ x-webhooks: enum: - reintroduced alert: *513 - installation: *756 - organization: *757 - enterprise: *755 - repository: *758 + installation: *757 + organization: *758 + enterprise: *756 + repository: *759 sender: *4 required: - action @@ -127459,10 +127532,10 @@ x-webhooks: enum: - reopened alert: *513 - installation: *756 - organization: *757 - enterprise: *755 - repository: *758 + installation: *757 + organization: *758 + enterprise: *756 + repository: *759 sender: *4 required: - action @@ -127539,9 +127612,9 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - key: &766 + enterprise: *756 + installation: *757 + key: &767 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -127577,8 +127650,8 @@ x-webhooks: - verified - created_at - read_only - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -127655,11 +127728,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - key: *766 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + key: *767 + organization: *758 + repository: *759 sender: *4 required: - action @@ -128215,12 +128288,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 - workflow: &772 + workflow: &773 title: Workflow type: object nullable: true @@ -128961,15 +129034,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *767 - required: *768 + properties: *768 + required: *769 nullable: true pull_requests: type: array items: *609 - repository: *758 - organization: *757 - installation: *756 + repository: *759 + organization: *758 + installation: *757 sender: *4 responses: '200': @@ -129040,7 +129113,7 @@ x-webhooks: type: string enum: - approved - approver: &769 + approver: &770 type: object properties: avatar_url: @@ -129083,11 +129156,11 @@ x-webhooks: type: string comment: type: string - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 - reviewers: &770 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 + reviewers: &771 type: array items: type: object @@ -129166,7 +129239,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &771 + workflow_job_run: &772 type: object properties: conclusion: @@ -129897,18 +129970,18 @@ x-webhooks: type: string enum: - rejected - approver: *769 + approver: *770 comment: type: string - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 - reviewers: *770 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 + reviewers: *771 sender: *4 since: type: string - workflow_job_run: *771 + workflow_job_run: *772 workflow_job_runs: type: array items: @@ -130612,13 +130685,13 @@ x-webhooks: type: string enum: - requested - enterprise: *755 + enterprise: *756 environment: type: string - installation: *756 - organization: *757 - repository: *758 - requestor: &777 + installation: *757 + organization: *758 + repository: *759 + requestor: &778 title: User type: object nullable: true @@ -132507,12 +132580,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 - workflow: *772 + workflow: *773 workflow_run: title: Deployment Workflow Run type: object @@ -133192,7 +133265,7 @@ x-webhooks: type: string enum: - answered - answer: &775 + answer: &776 type: object properties: author_association: @@ -133349,11 +133422,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -133480,11 +133553,11 @@ x-webhooks: - from required: - category - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -133567,11 +133640,11 @@ x-webhooks: type: string enum: - closed - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -133653,7 +133726,7 @@ x-webhooks: type: string enum: - created - comment: &774 + comment: &775 type: object properties: author_association: @@ -133810,11 +133883,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -133897,12 +133970,12 @@ x-webhooks: type: string enum: - deleted - comment: *774 - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + comment: *775 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -133997,12 +134070,12 @@ x-webhooks: - from required: - body - comment: *774 - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + comment: *775 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -134086,11 +134159,11 @@ x-webhooks: type: string enum: - created - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -134172,11 +134245,11 @@ x-webhooks: type: string enum: - deleted - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -134276,11 +134349,11 @@ x-webhooks: type: string required: - from - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -134362,10 +134435,10 @@ x-webhooks: type: string enum: - labeled - discussion: *773 - enterprise: *755 - installation: *756 - label: &776 + discussion: *774 + enterprise: *756 + installation: *757 + label: &777 title: Label type: object properties: @@ -134397,8 +134470,8 @@ x-webhooks: - color - default - description - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -134481,11 +134554,11 @@ x-webhooks: type: string enum: - locked - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -134567,11 +134640,11 @@ x-webhooks: type: string enum: - pinned - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -134653,11 +134726,11 @@ x-webhooks: type: string enum: - reopened - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -134742,16 +134815,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *773 - new_repository: *758 + new_discussion: *774 + new_repository: *759 required: - new_discussion - new_repository - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -134834,10 +134907,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *773 - old_answer: *775 - organization: *757 - repository: *758 + discussion: *774 + old_answer: *776 + organization: *758 + repository: *759 sender: *4 required: - action @@ -134919,12 +134992,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *773 - enterprise: *755 - installation: *756 - label: *776 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + label: *777 + organization: *758 + repository: *759 sender: *4 required: - action @@ -135007,11 +135080,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -135093,11 +135166,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *773 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + discussion: *774 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -135170,7 +135243,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *755 + enterprise: *756 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -135830,9 +135903,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *756 - organization: *757 - repository: *758 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - forkee @@ -135978,9 +136051,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 pages: description: The pages that were updated. type: array @@ -136017,7 +136090,7 @@ x-webhooks: - action - sha - html_url - repository: *758 + repository: *759 sender: *4 required: - pages @@ -136093,10 +136166,10 @@ x-webhooks: type: string enum: - created - enterprise: *755 + enterprise: *756 installation: *22 - organization: *757 - repositories: &778 + organization: *758 + repositories: &779 description: An array of repository objects that the installation can access. type: array @@ -136122,8 +136195,8 @@ x-webhooks: - name - full_name - private - repository: *758 - requester: *777 + repository: *759 + requester: *778 sender: *4 required: - action @@ -136198,11 +136271,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 + enterprise: *756 installation: *22 - organization: *757 - repositories: *778 - repository: *758 + organization: *758 + repositories: *779 + repository: *759 requester: nullable: true sender: *4 @@ -136278,11 +136351,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *755 + enterprise: *756 installation: *22 - organization: *757 - repositories: *778 - repository: *758 + organization: *758 + repositories: *779 + repository: *759 requester: nullable: true sender: *4 @@ -136358,10 +136431,10 @@ x-webhooks: type: string enum: - added - enterprise: *755 + enterprise: *756 installation: *22 - organization: *757 - repositories_added: &779 + organization: *758 + repositories_added: &780 description: An array of repository objects, which were added to the installation. type: array @@ -136407,15 +136480,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *758 - repository_selection: &780 + repository: *759 + repository_selection: &781 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *777 + requester: *778 sender: *4 required: - action @@ -136494,10 +136567,10 @@ x-webhooks: type: string enum: - removed - enterprise: *755 + enterprise: *756 installation: *22 - organization: *757 - repositories_added: *779 + organization: *758 + repositories_added: *780 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -136524,9 +136597,9 @@ x-webhooks: - name - full_name - private - repository: *758 - repository_selection: *780 - requester: *777 + repository: *759 + repository_selection: *781 + requester: *778 sender: *4 required: - action @@ -136605,11 +136678,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *755 + enterprise: *756 installation: *22 - organization: *757 - repositories: *778 - repository: *758 + organization: *758 + repositories: *779 + repository: *759 requester: nullable: true sender: *4 @@ -136787,10 +136860,10 @@ x-webhooks: type: string required: - from - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 target_type: type: string @@ -136869,11 +136942,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *755 + enterprise: *756 installation: *22 - organization: *757 - repositories: *778 - repository: *758 + organization: *758 + repositories: *779 + repository: *759 requester: nullable: true sender: *4 @@ -137133,8 +137206,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -137923,8 +137996,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 state: description: State of the issue; either 'open' or 'closed' type: string @@ -138273,8 +138346,8 @@ x-webhooks: - state - locked - assignee - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -138354,7 +138427,7 @@ x-webhooks: type: string enum: - deleted - comment: &781 + comment: &782 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -138527,8 +138600,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139313,8 +139386,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139665,8 +139738,8 @@ x-webhooks: - state - locked - assignee - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -139746,7 +139819,7 @@ x-webhooks: type: string enum: - edited - changes: &811 + changes: &812 description: The changes to the comment. type: object properties: @@ -139758,9 +139831,9 @@ x-webhooks: type: string required: - from - comment: *781 - enterprise: *755 - installation: *756 + comment: *782 + enterprise: *756 + installation: *757 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140548,8 +140621,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140898,8 +140971,8 @@ x-webhooks: - state - locked - assignee - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -140980,9 +141053,9 @@ x-webhooks: type: string enum: - pinned - comment: *781 - enterprise: *755 - installation: *756 + comment: *782 + enterprise: *756 + installation: *757 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141772,8 +141845,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142124,8 +142197,8 @@ x-webhooks: - state - locked - assignee - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -142205,9 +142278,9 @@ x-webhooks: type: string enum: - unpinned - comment: *781 - enterprise: *755 - installation: *756 + comment: *782 + enterprise: *756 + installation: *757 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142997,8 +143070,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143349,8 +143422,8 @@ x-webhooks: - state - locked - assignee - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -143439,9 +143512,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *756 - organization: *757 - repository: *758 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -143530,9 +143603,9 @@ x-webhooks: type: number blocking_issue: *88 blocking_issue_repo: *82 - installation: *756 - organization: *757 - repository: *758 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -143620,9 +143693,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *756 - organization: *757 - repository: *758 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -143711,9 +143784,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *88 - installation: *756 - organization: *757 - repository: *758 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -143793,10 +143866,10 @@ x-webhooks: type: string enum: - assigned - assignee: *777 - enterprise: *755 - installation: *756 - issue: &782 + assignee: *778 + enterprise: *756 + installation: *757 + issue: &783 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -144588,8 +144661,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -144709,8 +144782,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -144790,8 +144863,8 @@ x-webhooks: type: string enum: - closed - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -145588,8 +145661,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -145844,8 +145917,8 @@ x-webhooks: required: - state - closed_at - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -145924,8 +145997,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -146713,8 +146786,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -146833,8 +146906,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -146913,8 +146986,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -147724,8 +147797,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -147823,7 +147896,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &783 + milestone: &784 title: Milestone description: A collection of related issues and pull requests. type: object @@ -147961,8 +148034,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -148061,8 +148134,8 @@ x-webhooks: type: string required: - from - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148854,8 +148927,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -148975,9 +149048,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *776 - organization: *757 - repository: *758 + label: *777 + organization: *758 + repository: *759 sender: *4 required: - action @@ -149057,9 +149130,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *755 - installation: *756 - issue: *782 + enterprise: *756 + installation: *757 + issue: *783 issue_field: type: object description: The issue field whose value was set or updated on the @@ -149168,8 +149241,8 @@ x-webhooks: - id required: - from - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -149249,9 +149322,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *755 - installation: *756 - issue: *782 + enterprise: *756 + installation: *757 + issue: *783 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -149309,8 +149382,8 @@ x-webhooks: nullable: true required: - id - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -149390,8 +149463,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150182,8 +150255,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -150303,9 +150376,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *776 - organization: *757 - repository: *758 + label: *777 + organization: *758 + repository: *759 sender: *4 required: - action @@ -150385,8 +150458,8 @@ x-webhooks: type: string enum: - locked - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151201,8 +151274,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -151299,8 +151372,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -151379,8 +151452,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152189,8 +152262,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -152287,9 +152360,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *783 - organization: *757 - repository: *758 + milestone: *784 + organization: *758 + repository: *759 sender: *4 required: - action @@ -153152,8 +153225,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -153737,8 +153810,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154522,8 +154595,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -154650,8 +154723,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -154731,9 +154804,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *755 - installation: *756 - issue: &784 + enterprise: *756 + installation: *757 + issue: &785 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -155519,8 +155592,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -155639,8 +155712,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -155719,8 +155792,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156533,8 +156606,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -156632,8 +156705,8 @@ x-webhooks: user_view_type: type: string type: *256 - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -157502,8 +157575,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -158101,11 +158174,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *755 - installation: *756 - issue: *784 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + issue: *785 + organization: *758 + repository: *759 sender: *4 required: - action @@ -158185,12 +158258,12 @@ x-webhooks: type: string enum: - typed - enterprise: *755 - installation: *756 - issue: *782 + enterprise: *756 + installation: *757 + issue: *783 type: *256 - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -158271,7 +158344,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &814 + assignee: &815 title: User type: object nullable: true @@ -158341,11 +158414,11 @@ x-webhooks: required: - login - id - enterprise: *755 - installation: *756 - issue: *782 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + issue: *783 + organization: *758 + repository: *759 sender: *4 required: - action @@ -158424,12 +158497,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *755 - installation: *756 - issue: *782 - label: *776 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + issue: *783 + label: *777 + organization: *758 + repository: *759 sender: *4 required: - action @@ -158509,8 +158582,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159323,8 +159396,8 @@ x-webhooks: properties: *89 required: *90 nullable: true - sub_issues_summary: *690 - issue_dependencies_summary: *691 + sub_issues_summary: *691 + issue_dependencies_summary: *692 issue_field_values: type: array items: *570 @@ -159421,8 +159494,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -159502,11 +159575,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *755 - installation: *756 - issue: *784 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + issue: *785 + organization: *758 + repository: *759 sender: *4 required: - action @@ -159585,12 +159658,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *755 - installation: *756 - issue: *782 + enterprise: *756 + installation: *757 + issue: *783 type: *256 - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -159670,11 +159743,11 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - label: *776 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + label: *777 + organization: *758 + repository: *759 sender: *4 required: - action @@ -159752,11 +159825,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - label: *776 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + label: *777 + organization: *758 + repository: *759 sender: *4 required: - action @@ -159866,11 +159939,11 @@ x-webhooks: type: string required: - from - enterprise: *755 - installation: *756 - label: *776 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + label: *777 + organization: *758 + repository: *759 sender: *4 required: - action @@ -159952,9 +160025,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *755 - installation: *756 - marketplace_purchase: &785 + enterprise: *756 + installation: *757 + marketplace_purchase: &786 title: Marketplace Purchase type: object required: @@ -160037,8 +160110,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *757 - previous_marketplace_purchase: &786 + organization: *758 + previous_marketplace_purchase: &787 title: Marketplace Purchase type: object properties: @@ -160118,7 +160191,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *758 + repository: *759 sender: *4 required: - action @@ -160198,10 +160271,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *755 - installation: *756 - marketplace_purchase: *785 - organization: *757 + enterprise: *756 + installation: *757 + marketplace_purchase: *786 + organization: *758 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -160284,7 +160357,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *758 + repository: *759 sender: *4 required: - action @@ -160366,10 +160439,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *755 - installation: *756 - marketplace_purchase: *785 - organization: *757 + enterprise: *756 + installation: *757 + marketplace_purchase: *786 + organization: *758 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -160451,7 +160524,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *758 + repository: *759 sender: *4 required: - action @@ -160532,8 +160605,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 marketplace_purchase: title: Marketplace Purchase type: object @@ -160615,9 +160688,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *757 - previous_marketplace_purchase: *786 - repository: *758 + organization: *758 + previous_marketplace_purchase: *787 + repository: *759 sender: *4 required: - action @@ -160697,12 +160770,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *755 - installation: *756 - marketplace_purchase: *785 - organization: *757 - previous_marketplace_purchase: *786 - repository: *758 + enterprise: *756 + installation: *757 + marketplace_purchase: *786 + organization: *758 + previous_marketplace_purchase: *787 + repository: *759 sender: *4 required: - action @@ -160804,11 +160877,11 @@ x-webhooks: type: string required: - to - enterprise: *755 - installation: *756 - member: *777 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + member: *778 + organization: *758 + repository: *759 sender: *4 required: - action @@ -160908,11 +160981,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *755 - installation: *756 - member: *777 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + member: *778 + organization: *758 + repository: *759 sender: *4 required: - action @@ -160991,11 +161064,11 @@ x-webhooks: type: string enum: - removed - enterprise: *755 - installation: *756 - member: *777 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + member: *778 + organization: *758 + repository: *759 sender: *4 required: - action @@ -161073,11 +161146,11 @@ x-webhooks: type: string enum: - added - enterprise: *755 - installation: *756 - member: *777 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + member: *778 + organization: *758 + repository: *759 scope: description: The scope of the membership. Currently, can only be `team`. @@ -161153,7 +161226,7 @@ x-webhooks: required: - login - id - team: &787 + team: &788 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -161376,11 +161449,11 @@ x-webhooks: type: string enum: - removed - enterprise: *755 - installation: *756 - member: *777 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + member: *778 + organization: *758 + repository: *759 scope: description: The scope of the membership. Currently, can only be `team`. @@ -161457,7 +161530,7 @@ x-webhooks: required: - login - id - team: *787 + team: *788 required: - action - scope @@ -161539,8 +161612,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *756 - merge_group: &789 + installation: *757 + merge_group: &790 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -161559,15 +161632,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *788 + head_commit: *789 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -161653,10 +161726,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *756 - merge_group: *789 - organization: *757 - repository: *758 + installation: *757 + merge_group: *790 + organization: *758 + repository: *759 sender: *4 required: - action @@ -161729,7 +161802,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 + enterprise: *756 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -161838,17 +161911,17 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *756 - organization: *757 + installation: *757 + organization: *758 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *790 - required: *791 - x-github-breaking-changes: *792 + properties: *791 + required: *792 + x-github-breaking-changes: *793 nullable: true sender: *4 required: @@ -161929,11 +162002,11 @@ x-webhooks: type: string enum: - closed - enterprise: *755 - installation: *756 - milestone: *783 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + milestone: *784 + organization: *758 + repository: *759 sender: *4 required: - action @@ -162012,9 +162085,9 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - milestone: &793 + enterprise: *756 + installation: *757 + milestone: &794 title: Milestone description: A collection of related issues and pull requests. type: object @@ -162151,8 +162224,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -162231,11 +162304,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - milestone: *783 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + milestone: *784 + organization: *758 + repository: *759 sender: *4 required: - action @@ -162345,11 +162418,11 @@ x-webhooks: type: string required: - from - enterprise: *755 - installation: *756 - milestone: *783 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + milestone: *784 + organization: *758 + repository: *759 sender: *4 required: - action @@ -162429,11 +162502,11 @@ x-webhooks: type: string enum: - opened - enterprise: *755 - installation: *756 - milestone: *793 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + milestone: *794 + organization: *758 + repository: *759 sender: *4 required: - action @@ -162512,11 +162585,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *777 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + blocked_user: *778 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -162595,11 +162668,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *777 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + blocked_user: *778 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -162678,9 +162751,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - membership: &794 + enterprise: *756 + installation: *757 + membership: &795 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -162787,8 +162860,8 @@ x-webhooks: - role - organization_url - user - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 required: - action @@ -162866,11 +162939,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *755 - installation: *756 - membership: *794 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + membership: *795 + organization: *758 + repository: *759 sender: *4 required: - action @@ -162949,8 +163022,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -163066,10 +163139,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 - user: *777 + user: *778 required: - action - invitation @@ -163147,11 +163220,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *755 - installation: *756 - membership: *794 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + membership: *795 + organization: *758 + repository: *759 sender: *4 required: - action @@ -163238,11 +163311,11 @@ x-webhooks: properties: from: type: string - enterprise: *755 - installation: *756 - membership: *794 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + membership: *795 + organization: *758 + repository: *759 sender: *4 required: - action @@ -163319,9 +163392,9 @@ x-webhooks: type: string enum: - published - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 package: description: Information about the package. type: object @@ -163820,7 +163893,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &795 + items: &796 title: Ruby Gems metadata type: object properties: @@ -163915,7 +163988,7 @@ x-webhooks: - owner - package_version - registry - repository: *758 + repository: *759 sender: *4 required: - action @@ -163991,9 +164064,9 @@ x-webhooks: type: string enum: - updated - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 package: description: Information about the package. type: object @@ -164346,7 +164419,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *795 + items: *796 source_url: type: string format: uri @@ -164416,7 +164489,7 @@ x-webhooks: - owner - package_version - registry - repository: *758 + repository: *759 sender: *4 required: - action @@ -164592,12 +164665,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *755 + enterprise: *756 id: type: integer - installation: *756 - organization: *757 - repository: *758 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - id @@ -164674,7 +164747,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &796 + personal_access_token_request: &797 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -164820,10 +164893,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *755 - organization: *757 + enterprise: *756 + organization: *758 sender: *4 - installation: *756 + installation: *757 required: - action - personal_access_token_request @@ -164900,11 +164973,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *796 - enterprise: *755 - organization: *757 + personal_access_token_request: *797 + enterprise: *756 + organization: *758 sender: *4 - installation: *756 + installation: *757 required: - action - personal_access_token_request @@ -164980,11 +165053,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *796 - enterprise: *755 - organization: *757 + personal_access_token_request: *797 + enterprise: *756 + organization: *758 sender: *4 - installation: *756 + installation: *757 required: - action - personal_access_token_request @@ -165059,11 +165132,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *796 - organization: *757 - enterprise: *755 + personal_access_token_request: *797 + organization: *758 + enterprise: *756 sender: *4 - installation: *756 + installation: *757 required: - action - personal_access_token_request @@ -165168,7 +165241,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *797 + last_response: *798 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -165200,8 +165273,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 zen: description: Random string of GitHub zen. @@ -165446,10 +165519,10 @@ x-webhooks: - from required: - note - enterprise: *755 - installation: *756 - organization: *757 - project_card: &798 + enterprise: *756 + installation: *757 + organization: *758 + project_card: &799 title: Project Card type: object properties: @@ -165568,7 +165641,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *758 + repository: *759 sender: *4 required: - action @@ -165649,11 +165722,11 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - organization: *757 - project_card: *798 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + project_card: *799 + repository: *759 sender: *4 required: - action @@ -165733,9 +165806,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 project_card: title: Project Card type: object @@ -165863,9 +165936,9 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *790 - required: *791 - x-github-breaking-changes: *792 + properties: *791 + required: *792 + x-github-breaking-changes: *793 nullable: true sender: *4 required: @@ -165959,11 +166032,11 @@ x-webhooks: - from required: - note - enterprise: *755 - installation: *756 - organization: *757 - project_card: *798 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + project_card: *799 + repository: *759 sender: *4 required: - action @@ -166057,9 +166130,9 @@ x-webhooks: - from required: - column_id - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 project_card: allOf: - title: Project Card @@ -166249,7 +166322,7 @@ x-webhooks: type: string required: - after_id - repository: *758 + repository: *759 sender: *4 required: - action @@ -166329,10 +166402,10 @@ x-webhooks: type: string enum: - closed - enterprise: *755 - installation: *756 - organization: *757 - project: &800 + enterprise: *756 + installation: *757 + organization: *758 + project: &801 title: Project type: object properties: @@ -166456,7 +166529,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *758 + repository: *759 sender: *4 required: - action @@ -166536,10 +166609,10 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - organization: *757 - project_column: &799 + enterprise: *756 + installation: *757 + organization: *758 + project_column: &800 title: Project Column type: object properties: @@ -166578,7 +166651,7 @@ x-webhooks: - name - created_at - updated_at - repository: *758 + repository: *759 sender: *4 required: - action @@ -166657,19 +166730,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - organization: *757 - project_column: *799 + enterprise: *756 + installation: *757 + organization: *758 + project_column: *800 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *790 - required: *791 - x-github-breaking-changes: *792 + properties: *791 + required: *792 + x-github-breaking-changes: *793 nullable: true sender: *4 required: @@ -166759,11 +166832,11 @@ x-webhooks: type: string required: - from - enterprise: *755 - installation: *756 - organization: *757 - project_column: *799 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + project_column: *800 + repository: *759 sender: *4 required: - action @@ -166843,11 +166916,11 @@ x-webhooks: type: string enum: - moved - enterprise: *755 - installation: *756 - organization: *757 - project_column: *799 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + project_column: *800 + repository: *759 sender: *4 required: - action @@ -166927,11 +167000,11 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - organization: *757 - project: *800 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + project: *801 + repository: *759 sender: *4 required: - action @@ -167011,19 +167084,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - organization: *757 - project: *800 + enterprise: *756 + installation: *757 + organization: *758 + project: *801 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *790 - required: *791 - x-github-breaking-changes: *792 + properties: *791 + required: *792 + x-github-breaking-changes: *793 nullable: true sender: *4 required: @@ -167125,11 +167198,11 @@ x-webhooks: type: string required: - from - enterprise: *755 - installation: *756 - organization: *757 - project: *800 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + project: *801 + repository: *759 sender: *4 required: - action @@ -167208,11 +167281,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *755 - installation: *756 - organization: *757 - project: *800 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + project: *801 + repository: *759 sender: *4 required: - action @@ -167293,8 +167366,8 @@ x-webhooks: type: string enum: - closed - installation: *756 - organization: *757 + installation: *757 + organization: *758 projects_v2: *290 sender: *4 required: @@ -167376,8 +167449,8 @@ x-webhooks: type: string enum: - created - installation: *756 - organization: *757 + installation: *757 + organization: *758 projects_v2: *290 sender: *4 required: @@ -167459,8 +167532,8 @@ x-webhooks: type: string enum: - deleted - installation: *756 - organization: *757 + installation: *757 + organization: *758 projects_v2: *290 sender: *4 required: @@ -167578,8 +167651,8 @@ x-webhooks: type: string to: type: string - installation: *756 - organization: *757 + installation: *757 + organization: *758 projects_v2: *290 sender: *4 required: @@ -167663,7 +167736,7 @@ x-webhooks: type: string enum: - archived - changes: &804 + changes: &805 type: object properties: archived_at: @@ -167677,9 +167750,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *756 - organization: *757 - projects_v2_item: &801 + installation: *757 + organization: *758 + projects_v2_item: &802 title: Projects v2 Item description: An item belonging to a project type: object @@ -167814,9 +167887,9 @@ x-webhooks: nullable: true to: type: string - installation: *756 - organization: *757 - projects_v2_item: *801 + installation: *757 + organization: *758 + projects_v2_item: *802 sender: *4 required: - action @@ -167898,9 +167971,9 @@ x-webhooks: type: string enum: - created - installation: *756 - organization: *757 - projects_v2_item: *801 + installation: *757 + organization: *758 + projects_v2_item: *802 sender: *4 required: - action @@ -167981,9 +168054,9 @@ x-webhooks: type: string enum: - deleted - installation: *756 - organization: *757 - projects_v2_item: *801 + installation: *757 + organization: *758 + projects_v2_item: *802 sender: *4 required: - action @@ -168089,7 +168162,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &802 + - &803 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -168111,7 +168184,7 @@ x-webhooks: required: - id - name - - &803 + - &804 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -168145,8 +168218,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *802 - *803 + - *804 required: - field_value - type: object @@ -168162,9 +168235,9 @@ x-webhooks: nullable: true required: - body - installation: *756 - organization: *757 - projects_v2_item: *801 + installation: *757 + organization: *758 + projects_v2_item: *802 sender: *4 required: - action @@ -168259,9 +168332,9 @@ x-webhooks: to: type: string nullable: true - installation: *756 - organization: *757 - projects_v2_item: *801 + installation: *757 + organization: *758 + projects_v2_item: *802 sender: *4 required: - action @@ -168344,10 +168417,10 @@ x-webhooks: type: string enum: - restored - changes: *804 - installation: *756 - organization: *757 - projects_v2_item: *801 + changes: *805 + installation: *757 + organization: *758 + projects_v2_item: *802 sender: *4 required: - action @@ -168429,8 +168502,8 @@ x-webhooks: type: string enum: - reopened - installation: *756 - organization: *757 + installation: *757 + organization: *758 projects_v2: *290 sender: *4 required: @@ -168512,14 +168585,14 @@ x-webhooks: type: string enum: - created - installation: *756 - organization: *757 - projects_v2_status_update: &807 + installation: *757 + organization: *758 + projects_v2_status_update: &808 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *805 - required: *806 + properties: *806 + required: *807 sender: *4 required: - action @@ -168600,9 +168673,9 @@ x-webhooks: type: string enum: - deleted - installation: *756 - organization: *757 - projects_v2_status_update: *807 + installation: *757 + organization: *758 + projects_v2_status_update: *808 sender: *4 required: - action @@ -168738,9 +168811,9 @@ x-webhooks: type: string format: date nullable: true - installation: *756 - organization: *757 - projects_v2_status_update: *807 + installation: *757 + organization: *758 + projects_v2_status_update: *808 sender: *4 required: - action @@ -168811,10 +168884,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - repository @@ -168891,13 +168964,13 @@ x-webhooks: type: string enum: - assigned - assignee: *777 - enterprise: *755 - installation: *756 - number: &808 + assignee: *778 + enterprise: *756 + installation: *757 + number: &809 description: The pull request number. type: integer - organization: *757 + organization: *758 pull_request: title: Pull Request type: object @@ -171202,7 +171275,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *758 + repository: *759 sender: *4 required: - action @@ -171299,11 +171372,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 number: type: integer - organization: *757 + organization: *758 pull_request: title: Pull Request type: object @@ -173603,7 +173676,7 @@ x-webhooks: - draft reason: type: string - repository: *758 + repository: *759 sender: *4 required: - action @@ -173700,11 +173773,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 number: type: integer - organization: *757 + organization: *758 pull_request: title: Pull Request type: object @@ -176004,7 +176077,7 @@ x-webhooks: - draft reason: type: string - repository: *758 + repository: *759 sender: *4 required: - action @@ -176101,11 +176174,11 @@ x-webhooks: type: string enum: - closed - enterprise: *755 - installation: *756 - number: *808 - organization: *757 - pull_request: &809 + enterprise: *756 + installation: *757 + number: *809 + organization: *758 + pull_request: &810 allOf: - *609 - type: object @@ -176169,7 +176242,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *758 + repository: *759 sender: *4 required: - action @@ -176250,12 +176323,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *755 - installation: *756 - number: *808 - organization: *757 - pull_request: *809 - repository: *758 + enterprise: *756 + installation: *757 + number: *809 + organization: *758 + pull_request: *810 + repository: *759 sender: *4 required: - action @@ -176335,11 +176408,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *755 + enterprise: *756 milestone: *593 - number: *808 - organization: *757 - pull_request: &810 + number: *809 + organization: *758 + pull_request: &811 title: Pull Request type: object properties: @@ -178666,7 +178739,7 @@ x-webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *758 + repository: *759 sender: *4 required: - action @@ -178745,11 +178818,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 number: type: integer - organization: *757 + organization: *758 pull_request: title: Pull Request type: object @@ -181053,7 +181126,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *758 + repository: *759 sender: *4 required: - action @@ -181185,12 +181258,12 @@ x-webhooks: type: string required: - from - enterprise: *755 - installation: *756 - number: *808 - organization: *757 - pull_request: *809 - repository: *758 + enterprise: *756 + installation: *757 + number: *809 + organization: *758 + pull_request: *810 + repository: *759 sender: *4 required: - action @@ -181270,11 +181343,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 number: type: integer - organization: *757 + organization: *758 pull_request: title: Pull Request type: object @@ -183563,7 +183636,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *758 + repository: *759 sender: *4 required: - action @@ -183651,11 +183724,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *755 - installation: *756 - label: *776 - number: *808 - organization: *757 + enterprise: *756 + installation: *757 + label: *777 + number: *809 + organization: *758 pull_request: title: Pull Request type: object @@ -185959,7 +186032,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *758 + repository: *759 sender: *4 required: - action @@ -186055,10 +186128,10 @@ x-webhooks: type: string enum: - locked - enterprise: *755 - installation: *756 - number: *808 - organization: *757 + enterprise: *756 + installation: *757 + number: *809 + organization: *758 pull_request: title: Pull Request type: object @@ -188360,7 +188433,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *758 + repository: *759 sender: *4 required: - action @@ -188455,12 +188528,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *755 + enterprise: *756 milestone: *593 - number: *808 - organization: *757 - pull_request: *810 - repository: *758 + number: *809 + organization: *758 + pull_request: *811 + repository: *759 sender: *4 required: - action @@ -188539,12 +188612,12 @@ x-webhooks: type: string enum: - opened - enterprise: *755 - installation: *756 - number: *808 - organization: *757 - pull_request: *809 - repository: *758 + enterprise: *756 + installation: *757 + number: *809 + organization: *758 + pull_request: *810 + repository: *759 sender: *4 required: - action @@ -188625,12 +188698,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *755 - installation: *756 - number: *808 - organization: *757 - pull_request: *809 - repository: *758 + enterprise: *756 + installation: *757 + number: *809 + organization: *758 + pull_request: *810 + repository: *759 sender: *4 required: - action @@ -188710,12 +188783,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *755 - installation: *756 - number: *808 - organization: *757 - pull_request: *809 - repository: *758 + enterprise: *756 + installation: *757 + number: *809 + organization: *758 + pull_request: *810 + repository: *759 sender: *4 required: - action @@ -189081,9 +189154,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 pull_request: type: object properties: @@ -191275,7 +191348,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *758 + repository: *759 sender: *4 required: - action @@ -191370,7 +191443,7 @@ x-webhooks: type: string enum: - deleted - comment: &812 + comment: &813 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -191655,9 +191728,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 pull_request: type: object properties: @@ -193837,7 +193910,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *758 + repository: *759 sender: *4 required: - action @@ -193932,11 +194005,11 @@ x-webhooks: type: string enum: - edited - changes: *811 - comment: *812 - enterprise: *755 - installation: *756 - organization: *757 + changes: *812 + comment: *813 + enterprise: *756 + installation: *757 + organization: *758 pull_request: type: object properties: @@ -196119,7 +196192,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *758 + repository: *759 sender: *4 required: - action @@ -196215,9 +196288,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 pull_request: title: Simple Pull Request type: object @@ -198412,7 +198485,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *758 + repository: *759 review: description: The review that was affected. type: object @@ -198674,9 +198747,9 @@ x-webhooks: type: string required: - from - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 pull_request: title: Simple Pull Request type: object @@ -200730,8 +200803,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *758 - review: &813 + repository: *759 + review: &814 description: The review that was affected. type: object properties: @@ -200972,12 +201045,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 number: description: The pull request number. type: integer - organization: *757 + organization: *758 pull_request: title: Pull Request type: object @@ -203282,7 +203355,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *758 + repository: *759 requested_reviewer: title: User type: object @@ -203366,12 +203439,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 number: description: The pull request number. type: integer - organization: *757 + organization: *758 pull_request: title: Pull Request type: object @@ -205683,7 +205756,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *758 + repository: *759 requested_team: title: Team description: Groups of organization members that gives permissions @@ -205898,12 +205971,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 number: description: The pull request number. type: integer - organization: *757 + organization: *758 pull_request: title: Pull Request type: object @@ -208210,7 +208283,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *758 + repository: *759 requested_reviewer: title: User type: object @@ -208295,12 +208368,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *755 - installation: *756 + enterprise: *756 + installation: *757 number: description: The pull request number. type: integer - organization: *757 + organization: *758 pull_request: title: Pull Request type: object @@ -210598,7 +210671,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *758 + repository: *759 requested_team: title: Team description: Groups of organization members that gives permissions @@ -210802,9 +210875,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 pull_request: title: Simple Pull Request type: object @@ -213001,8 +213074,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *758 - review: *813 + repository: *759 + review: *814 sender: *4 required: - action @@ -213097,9 +213170,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 pull_request: title: Simple Pull Request type: object @@ -215191,7 +215264,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *758 + repository: *759 sender: *4 thread: type: object @@ -215586,9 +215659,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 pull_request: title: Simple Pull Request type: object @@ -217666,7 +217739,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *758 + repository: *759 sender: *4 thread: type: object @@ -218064,10 +218137,10 @@ x-webhooks: type: string before: type: string - enterprise: *755 - installation: *756 - number: *808 - organization: *757 + enterprise: *756 + installation: *757 + number: *809 + organization: *758 pull_request: title: Pull Request type: object @@ -220360,7 +220433,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *758 + repository: *759 sender: *4 required: - action @@ -220457,11 +220530,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *814 - enterprise: *755 - installation: *756 - number: *808 - organization: *757 + assignee: *815 + enterprise: *756 + installation: *757 + number: *809 + organization: *758 pull_request: title: Pull Request type: object @@ -222766,7 +222839,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *758 + repository: *759 sender: *4 required: - action @@ -222860,11 +222933,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *755 - installation: *756 - label: *776 - number: *808 - organization: *757 + enterprise: *756 + installation: *757 + label: *777 + number: *809 + organization: *758 pull_request: title: Pull Request type: object @@ -225159,7 +225232,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *758 + repository: *759 sender: *4 required: - action @@ -225255,10 +225328,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *755 - installation: *756 - number: *808 - organization: *757 + enterprise: *756 + installation: *757 + number: *809 + organization: *758 pull_request: title: Pull Request type: object @@ -227545,7 +227618,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *758 + repository: *759 sender: *4 required: - action @@ -227760,7 +227833,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *755 + enterprise: *756 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -227852,8 +227925,8 @@ x-webhooks: - url - author - committer - installation: *756 - organization: *757 + installation: *757 + organization: *758 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -228439,9 +228512,9 @@ x-webhooks: type: string enum: - published - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 registry_package: type: object properties: @@ -228887,7 +228960,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *795 + items: *796 summary: type: string tag_name: @@ -228941,7 +229014,7 @@ x-webhooks: - owner - package_version - registry - repository: *758 + repository: *759 sender: *4 required: - action @@ -229019,9 +229092,9 @@ x-webhooks: type: string enum: - updated - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 registry_package: type: object properties: @@ -229329,7 +229402,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *795 + items: *796 summary: type: string tag_name: @@ -229378,7 +229451,7 @@ x-webhooks: - owner - package_version - registry - repository: *758 + repository: *759 sender: *4 required: - action @@ -229455,10 +229528,10 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - organization: *757 - release: &815 + enterprise: *756 + installation: *757 + organization: *758 + release: &816 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -229776,7 +229849,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *758 + repository: *759 sender: *4 required: - action @@ -229853,11 +229926,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - organization: *757 - release: *815 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + release: *816 + repository: *759 sender: *4 required: - action @@ -229974,11 +230047,11 @@ x-webhooks: type: boolean required: - to - enterprise: *755 - installation: *756 - organization: *757 - release: *815 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + release: *816 + repository: *759 sender: *4 required: - action @@ -230056,9 +230129,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -230380,7 +230453,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *758 + repository: *759 sender: *4 required: - action @@ -230456,10 +230529,10 @@ x-webhooks: type: string enum: - published - enterprise: *755 - installation: *756 - organization: *757 - release: &816 + enterprise: *756 + installation: *757 + organization: *758 + release: &817 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -230778,7 +230851,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *758 + repository: *759 sender: *4 required: - action @@ -230854,11 +230927,11 @@ x-webhooks: type: string enum: - released - enterprise: *755 - installation: *756 - organization: *757 - release: *815 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + release: *816 + repository: *759 sender: *4 required: - action @@ -230934,11 +231007,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *755 - installation: *756 - organization: *757 - release: *816 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + release: *817 + repository: *759 sender: *4 required: - action @@ -231014,11 +231087,11 @@ x-webhooks: type: string enum: - published - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 - repository_advisory: *677 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 + repository_advisory: *678 sender: *4 required: - action @@ -231094,11 +231167,11 @@ x-webhooks: type: string enum: - reported - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 - repository_advisory: *677 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 + repository_advisory: *678 sender: *4 required: - action @@ -231174,10 +231247,10 @@ x-webhooks: type: string enum: - archived - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -231254,10 +231327,10 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -231335,10 +231408,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -231422,10 +231495,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -231537,10 +231610,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -231612,10 +231685,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 status: type: string @@ -231696,10 +231769,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -231776,10 +231849,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -231873,10 +231946,10 @@ x-webhooks: - name required: - repository - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -231956,10 +232029,10 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 repository_ruleset: *339 sender: *4 required: @@ -232038,10 +232111,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 repository_ruleset: *339 sender: *4 required: @@ -232120,10 +232193,10 @@ x-webhooks: type: string enum: - edited - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 repository_ruleset: *339 changes: type: object @@ -232428,10 +232501,10 @@ x-webhooks: - from required: - owner - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -232509,10 +232582,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -232590,7 +232663,7 @@ x-webhooks: type: string enum: - create - alert: &817 + alert: &818 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -232712,10 +232785,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -232921,10 +232994,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -233002,11 +233075,11 @@ x-webhooks: type: string enum: - reopen - alert: *817 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + alert: *818 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -233205,10 +233278,10 @@ x-webhooks: enum: - fixed - open - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -233286,7 +233359,7 @@ x-webhooks: type: string enum: - assigned - alert: &818 + alert: &819 type: object properties: number: *186 @@ -233429,10 +233502,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -233510,11 +233583,11 @@ x-webhooks: type: string enum: - created - alert: *818 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + alert: *819 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -233595,11 +233668,11 @@ x-webhooks: type: string enum: - created - alert: *818 - installation: *756 - location: *819 - organization: *757 - repository: *758 + alert: *819 + installation: *757 + location: *820 + organization: *758 + repository: *759 sender: *4 required: - location @@ -233837,11 +233910,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *818 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + alert: *819 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -233919,11 +233992,11 @@ x-webhooks: type: string enum: - reopened - alert: *818 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + alert: *819 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -234001,11 +234074,11 @@ x-webhooks: type: string enum: - resolved - alert: *818 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + alert: *819 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -234083,12 +234156,12 @@ x-webhooks: type: string enum: - unassigned - alert: *818 + alert: *819 assignee: *4 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -234166,11 +234239,11 @@ x-webhooks: type: string enum: - validated - alert: *818 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + alert: *819 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -234296,10 +234369,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *758 - enterprise: *755 - installation: *756 - organization: *757 + repository: *759 + enterprise: *756 + installation: *757 + organization: *758 sender: *4 required: - action @@ -234377,11 +234450,11 @@ x-webhooks: type: string enum: - published - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 - security_advisory: &820 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 + security_advisory: &821 description: The details of the security advisory, including summary, description, and severity. type: object @@ -234582,11 +234655,11 @@ x-webhooks: type: string enum: - updated - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 - security_advisory: *820 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 + security_advisory: *821 sender: *4 required: - action @@ -234659,10 +234732,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -234855,9 +234928,9 @@ x-webhooks: type: object properties: security_and_analysis: *312 - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 repository: *360 sender: *4 required: @@ -234936,12 +235009,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 - sponsorship: &821 + sponsorship: &822 type: object properties: created_at: @@ -235242,12 +235315,12 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 - sponsorship: *821 + sponsorship: *822 required: - action - sponsorship @@ -235335,12 +235408,12 @@ x-webhooks: type: string required: - from - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 - sponsorship: *821 + sponsorship: *822 required: - action - changes @@ -235417,17 +235490,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &822 + effective_date: &823 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: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 - sponsorship: *821 + sponsorship: *822 required: - action - sponsorship @@ -235501,7 +235574,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &823 + changes: &824 type: object properties: tier: @@ -235545,13 +235618,13 @@ x-webhooks: - from required: - tier - effective_date: *822 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + effective_date: *823 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 - sponsorship: *821 + sponsorship: *822 required: - action - changes @@ -235628,13 +235701,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *823 - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + changes: *824 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 - sponsorship: *821 + sponsorship: *822 required: - action - changes @@ -235708,10 +235781,10 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -235794,10 +235867,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -236217,15 +236290,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *755 + enterprise: *756 id: description: The unique identifier of the status. type: integer - installation: *756 + installation: *757 name: type: string - organization: *757 - repository: *758 + organization: *758 + repository: *759 sender: *4 sha: description: The Commit SHA. @@ -236340,9 +236413,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *756 - organization: *757 - repository: *758 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -236431,9 +236504,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *88 - installation: *756 - organization: *757 - repository: *758 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -236522,9 +236595,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *756 - organization: *757 - repository: *758 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -236613,9 +236686,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *88 - installation: *756 - organization: *757 - repository: *758 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -236691,12 +236764,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 - team: &824 + team: &825 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -236919,9 +236992,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 repository: title: Repository description: A git repository @@ -237379,7 +237452,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *824 + team: *825 required: - action - team @@ -237455,9 +237528,9 @@ x-webhooks: type: string enum: - created - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 repository: title: Repository description: A git repository @@ -237915,7 +237988,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *824 + team: *825 required: - action - team @@ -237992,9 +238065,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 repository: title: Repository description: A git repository @@ -238452,7 +238525,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *824 + team: *825 required: - action - team @@ -238596,9 +238669,9 @@ x-webhooks: - from required: - permissions - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 repository: title: Repository description: A git repository @@ -239056,7 +239129,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *824 + team: *825 required: - action - changes @@ -239134,9 +239207,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *755 - installation: *756 - organization: *757 + enterprise: *756 + installation: *757 + organization: *758 repository: title: Repository description: A git repository @@ -239594,7 +239667,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *824 + team: *825 required: - action - team @@ -239670,10 +239743,10 @@ x-webhooks: type: string enum: - started - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 required: - action @@ -239746,16 +239819,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *755 + enterprise: *756 inputs: type: object nullable: true additionalProperties: true - installation: *756 - organization: *757 + installation: *757 + organization: *758 ref: type: string - repository: *758 + repository: *759 sender: *4 workflow: type: string @@ -239837,10 +239910,10 @@ x-webhooks: type: string enum: - completed - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 workflow_job: allOf: @@ -240156,10 +240229,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 workflow_job: allOf: @@ -240498,10 +240571,10 @@ x-webhooks: type: string enum: - queued - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 workflow_job: type: object @@ -240715,10 +240788,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 workflow_job: type: object @@ -240934,12 +241007,12 @@ x-webhooks: type: string enum: - completed - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 - workflow: *772 + workflow: *773 workflow_run: title: Workflow Run type: object @@ -241938,12 +242011,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 - workflow: *772 + workflow: *773 workflow_run: title: Workflow Run type: object @@ -242927,12 +243000,12 @@ x-webhooks: type: string enum: - requested - enterprise: *755 - installation: *756 - organization: *757 - repository: *758 + enterprise: *756 + installation: *757 + organization: *758 + repository: *759 sender: *4 - workflow: *772 + workflow: *773 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index 12e9f87ea..4d46ed485 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -27472,6 +27472,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -27502,6 +27508,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -27527,6 +27534,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -27882,6 +27890,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -27908,6 +27922,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -27933,6 +27948,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -28244,6 +28260,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -30168,6 +30190,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -30188,6 +30216,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -75803,7 +75832,8 @@ "enum": [ "detailed", "summarized", - "premium_request" + "premium_request", + "ai_credit" ], "example": "detailed" }, @@ -76078,7 +76108,8 @@ "enum": [ "detailed", "summarized", - "premium_request" + "premium_request", + "ai_credit" ] }, "start_date": { @@ -76132,7 +76163,8 @@ "enum": [ "detailed", "summarized", - "premium_request" + "premium_request", + "ai_credit" ], "example": "detailed" }, @@ -76454,7 +76486,8 @@ "enum": [ "detailed", "summarized", - "premium_request" + "premium_request", + "ai_credit" ], "example": "detailed" }, @@ -136170,6 +136203,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -136196,6 +136235,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -136221,6 +136261,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -136580,6 +136621,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -136606,6 +136653,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -136631,6 +136679,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -136942,6 +136991,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -138866,6 +138921,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -138886,6 +138947,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -269587,6 +269649,21 @@ "default": "all" } }, + { + "name": "evaluate_status", + "description": "The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned.\n - `all` - all rule suites will be returned.\n - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned.\n - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "all", + "active", + "evaluate" + ], + "default": "all" + } + }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", @@ -303828,6 +303905,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -303854,6 +303937,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -303879,6 +303963,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -304208,6 +304293,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -306159,6 +306250,12 @@ }, "ephemeral": { "type": "boolean" + }, + "version": { + "description": "The version of the GitHub Actions Runner software. This is only set if the runner has connected to the service at least once.", + "nullable": true, + "type": "string", + "example": "2.323.0" } }, "required": [ @@ -306179,6 +306276,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -439026,6 +439124,133 @@ } } }, + "/repos/{owner}/{repo}/hash-algorithm": { + "get": { + "summary": "Get the hash algorithm for a repository", + "description": "Returns the hash algorithm used to store repository objects.", + "tags": [ + "repos" + ], + "operationId": "repos/get-hash-algorithm", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-the-hash-algorithm-for-a-repository" + }, + "parameters": [ + { + "name": "owner", + "description": "The account owner of the repository. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "repo", + "description": "The name of the repository without the `.git` extension. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Repository hash algorithm", + "description": "Repository hash algorithm", + "type": "object", + "properties": { + "hash_algorithm": { + "type": "string", + "description": "The Git hash algorithm used by this repository.", + "enum": [ + "sha1", + "sha256" + ], + "example": "sha1" + } + }, + "required": [ + "hash_algorithm" + ] + }, + "examples": { + "default": { + "value": { + "hash_algorithm": "sha1" + } + } + } + } + } + }, + "403": { + "description": "Forbidden", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "repos", + "subcategory": "repos" + } + } + }, "/repos/{owner}/{repo}/hooks": { "get": { "summary": "List repository webhooks", @@ -600857,6 +601082,21 @@ "default": "all" } }, + { + "name": "evaluate_status", + "description": "The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned.\n - `all` - all rule suites will be returned.\n - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned.\n - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned.", + "in": "query", + "required": false, + "schema": { + "type": "string", + "enum": [ + "all", + "active", + "evaluate" + ], + "default": "all" + } + }, { "name": "per_page", "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index d1205df39..c022ed2f0 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -1038,7 +1038,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &789 + - &790 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4261,7 +4261,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &798 + schema: &799 title: Scim Error description: Scim Error type: object @@ -11645,7 +11645,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &799 + '401': &800 description: Authorization failure '404': *6 x-github: @@ -12919,6 +12919,13 @@ paths: - name ephemeral: type: boolean + version: + description: The version of the GitHub Actions Runner software. + This is only set if the runner has connected to the service + at least once. + nullable: true + type: string + example: 2.323.0 required: - id - name @@ -12940,6 +12947,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -12956,6 +12964,7 @@ paths: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -13445,6 +13454,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -25721,14 +25731,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &767 + state: &768 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: &768 + resolution: &769 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -25845,8 +25855,8 @@ paths: pull request. ' - oneOf: &769 - - &771 + oneOf: &770 + - &772 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -25904,7 +25914,7 @@ paths: - blob_url - commit_sha - commit_url - - &772 + - &773 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. @@ -25959,7 +25969,7 @@ paths: - page_url - commit_sha - commit_url - - &773 + - &774 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -25979,7 +25989,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &774 + - &775 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -25999,7 +26009,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &775 + - &776 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -26019,7 +26029,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &776 + - &777 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -26033,7 +26043,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &777 + - &778 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -26047,7 +26057,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &778 + - &779 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -26061,7 +26071,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &779 + - &780 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. @@ -26081,7 +26091,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &780 + - &781 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. @@ -26101,7 +26111,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &781 + - &782 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. @@ -26121,7 +26131,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &782 + - &783 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. @@ -26141,7 +26151,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &783 + - &784 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -28333,6 +28343,7 @@ paths: - detailed - summarized - premium_request + - ai_credit example: detailed start_date: type: string @@ -28447,6 +28458,7 @@ paths: - detailed - summarized - premium_request + - ai_credit start_date: type: string format: date @@ -29826,7 +29838,7 @@ paths: properties: action: type: string - discussion: &907 + discussion: &908 title: Discussion description: A Discussion in a repository. type: object @@ -30571,7 +30583,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &826 + sub_issues_summary: &827 title: Sub-issues Summary type: object properties: @@ -30684,7 +30696,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &827 + issue_dependencies_summary: &828 title: Issue Dependencies Summary type: object properties: @@ -32116,7 +32128,7 @@ paths: url: type: string format: uri - user: &833 + user: &834 title: Public User description: Public User type: object @@ -43612,12 +43624,12 @@ paths: required: - subject_digests examples: - default: &865 + default: &866 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &866 + withPredicateType: &867 value: subject_digests: - sha256:abc123 @@ -43675,7 +43687,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &867 + default: &868 value: attestations_subject_digests: - sha256:abc: @@ -56538,7 +56550,7 @@ paths: parameters: - *89 - *412 - - &848 + - &849 name: repo_name description: repo_name parameter in: path @@ -57866,7 +57878,7 @@ paths: - nuget - container - *89 - - &849 + - &850 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -57907,7 +57919,7 @@ paths: default: *418 '403': *29 '401': *25 - '400': &851 + '400': &852 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -60004,7 +60016,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &943 + properties: &944 id: type: number description: The unique identifier of the status update. @@ -60052,7 +60064,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &944 + required: &945 - id - node_id - created_at @@ -60870,7 +60882,7 @@ paths: - updated_at - project_url examples: - default: &871 + default: &872 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -61047,7 +61059,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &872 + items: &873 type: object properties: name: @@ -61084,7 +61096,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &873 + iteration_configuration: &874 type: object description: The configuration for iteration fields. properties: @@ -61134,7 +61146,7 @@ paths: value: name: Due date data_type: date - single_select_field: &874 + single_select_field: &875 summary: Create a single select field value: name: Priority @@ -61161,7 +61173,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &875 + iteration_field: &876 summary: Create an iteration field value: name: Sprint @@ -61187,7 +61199,7 @@ paths: application/json: schema: *439 examples: - text_field: &876 + text_field: &877 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -61196,7 +61208,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: &877 + number_field: &878 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -61205,7 +61217,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: &878 + date_field: &879 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -61214,7 +61226,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: &879 + single_select_field: &880 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -61248,7 +61260,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &880 + iteration_field: &881 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -61294,7 +61306,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - *435 - - &881 + - &882 name: field_id description: The unique identifier of the field. in: path @@ -61309,7 +61321,7 @@ paths: application/json: schema: *439 examples: - default: &882 + default: &883 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62506,7 +62518,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &862 + schema: &863 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -62683,7 +62695,7 @@ paths: parameters: - *435 - *89 - - &883 + - &884 name: view_number description: The number that identifies the project view. in: path @@ -64759,6 +64771,22 @@ paths: - bypass - all default: all + - &759 + name: evaluate_status + description: |- + The evaluate status to filter on. When specified, only rule suites resulting from rulesets with the specified evaluate status will be returned. + - `all` - all rule suites will be returned. + - `active` - only rule suites resulting from rulesets in active (non-evaluate) mode will be returned. + - `evaluate` - only rule suites resulting from rulesets in evaluate mode will be returned. + in: query + required: false + schema: + type: string + enum: + - all + - active + - evaluate + default: all - *17 - *19 responses: @@ -64766,7 +64794,7 @@ paths: description: Response content: application/json: - schema: &759 + schema: &760 title: Rule Suites description: Response type: array @@ -64821,7 +64849,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &760 + default: &761 value: - id: 21 actor_id: 12 @@ -64865,7 +64893,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *89 - - &761 + - &762 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -64881,7 +64909,7 @@ paths: description: Response content: application/json: - schema: &762 + schema: &763 title: Rule Suite description: Response type: object @@ -64980,7 +65008,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &763 + default: &764 value: id: 21 actor_id: 12 @@ -65316,7 +65344,7 @@ paths: - *112 - *19 - *17 - - &765 + - &766 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -65326,7 +65354,7 @@ paths: required: false schema: type: string - - &766 + - &767 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -65540,7 +65568,7 @@ paths: application/json: schema: type: array - items: &787 + items: &788 description: A repository security advisory. type: object properties: @@ -65831,7 +65859,7 @@ paths: - private_fork additionalProperties: false examples: - default: &788 + default: &789 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -67926,7 +67954,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &829 + response-if-user-is-a-team-maintainer: &830 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -67991,7 +68019,7 @@ paths: application/json: schema: *491 examples: - response-if-users-membership-with-team-is-now-pending: &830 + response-if-users-membership-with-team-is-now-pending: &831 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -68105,7 +68133,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &831 + schema: &832 title: Team Repository description: A team's access to a repository. type: object @@ -68873,7 +68901,7 @@ paths: type: array items: *326 examples: - response-if-child-teams-exist: &832 + response-if-child-teams-exist: &833 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -74543,7 +74571,7 @@ paths: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &901 + properties: &902 url: type: string format: uri @@ -74628,7 +74656,7 @@ paths: nullable: true properties: *224 required: *225 - required: &902 + required: &903 - id - node_id - sha @@ -81052,7 +81080,7 @@ paths: check. type: array items: *234 - deployment: &894 + deployment: &895 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -81964,7 +81992,7 @@ paths: type: string format: date-time nullable: true - head_commit: &927 + head_commit: &928 title: Simple Commit description: A commit. type: object @@ -86235,14 +86263,14 @@ paths: type: integer machines: type: array - items: &838 + items: &839 type: object title: Codespace machine description: A description of the machine powering a codespace. properties: *596 required: *597 examples: - default: &839 + default: &840 value: total_count: 2 machines: @@ -89388,7 +89416,7 @@ paths: application/json: schema: type: array - items: &792 + items: &793 title: Status description: The status of a commit. type: object @@ -90971,7 +90999,7 @@ paths: items: type: object properties: - placeholder_id: &784 + placeholder_id: &785 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -97550,6 +97578,49 @@ paths: enabledForGitHubApps: true category: git subcategory: trees + "/repos/{owner}/{repo}/hash-algorithm": + get: + summary: Get the hash algorithm for a repository + description: Returns the hash algorithm used to store repository objects. + tags: + - repos + operationId: repos/get-hash-algorithm + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-the-hash-algorithm-for-a-repository + parameters: + - *492 + - *493 + responses: + '200': + description: Response + content: + application/json: + schema: + title: Repository hash algorithm + description: Repository hash algorithm + type: object + properties: + hash_algorithm: + type: string + description: The Git hash algorithm used by this repository. + enum: + - sha1 + - sha256 + example: sha1 + required: + - hash_algorithm + examples: + default: + value: + hash_algorithm: sha1 + '403': *29 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/hooks": get: summary: List repository webhooks @@ -97627,7 +97698,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &935 + last_response: &936 title: Hook Response type: object properties: @@ -98679,7 +98750,7 @@ paths: parameters: - *492 - *493 - - &860 + - &861 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -99113,7 +99184,7 @@ paths: type: array items: *681 examples: - default: &853 + default: &854 value: - id: 1 repository: @@ -113027,7 +113098,7 @@ paths: application/json: schema: *195 examples: - default: &764 + default: &765 value: id: 42 name: super cool ruleset @@ -113081,6 +113152,7 @@ paths: - *107 - *757 - *758 + - *759 - *17 - *19 responses: @@ -113088,9 +113160,9 @@ paths: description: Response content: application/json: - schema: *759 + schema: *760 examples: - default: *760 + default: *761 '404': *6 '500': *40 x-github: @@ -113113,15 +113185,15 @@ paths: parameters: - *492 - *493 - - *761 + - *762 responses: '200': description: Response content: application/json: - schema: *762 + schema: *763 examples: - default: *763 + default: *764 '404': *6 '500': *40 x-github: @@ -113172,7 +113244,7 @@ paths: application/json: schema: *195 examples: - default: *764 + default: *765 '404': *6 '500': *40 put: @@ -113255,7 +113327,7 @@ paths: application/json: schema: *195 examples: - default: *764 + default: *765 '404': *6 '422': *15 '500': *40 @@ -113423,8 +113495,8 @@ paths: - *112 - *19 - *17 - - *765 - *766 + - *767 - *466 - *467 - *468 @@ -113437,7 +113509,7 @@ paths: application/json: schema: type: array - items: &770 + items: &771 type: object properties: number: *131 @@ -113456,8 +113528,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *767 - resolution: *768 + state: *768 + resolution: *769 resolved_at: type: string format: date-time @@ -113563,7 +113635,7 @@ paths: pull request. ' - oneOf: *769 + oneOf: *770 nullable: true has_more_locations: type: boolean @@ -113736,7 +113808,7 @@ paths: description: Response content: application/json: - schema: *770 + schema: *771 examples: default: value: @@ -113800,8 +113872,8 @@ paths: schema: type: object properties: - state: *767 - resolution: *768 + state: *768 + resolution: *769 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -113845,7 +113917,7 @@ paths: description: Response content: application/json: - schema: *770 + schema: *771 examples: default: value: @@ -113957,7 +114029,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &957 + items: &958 type: object properties: type: @@ -113983,7 +114055,6 @@ paths: example: commit details: oneOf: - - *771 - *772 - *773 - *774 @@ -113996,6 +114067,7 @@ paths: - *781 - *782 - *783 + - *784 examples: default: value: @@ -114090,14 +114162,14 @@ paths: schema: type: object properties: - reason: &785 + reason: &786 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *784 + placeholder_id: *785 required: - reason - placeholder_id @@ -114114,7 +114186,7 @@ paths: schema: type: object properties: - reason: *785 + reason: *786 expire_at: type: string format: date-time @@ -114176,7 +114248,7 @@ paths: properties: incremental_scans: type: array - items: &786 + items: &787 description: Information on a single scan performed by secret scanning on the repository type: object @@ -114207,15 +114279,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *786 + items: *787 backfill_scans: type: array - items: *786 + items: *787 custom_pattern_backfill_scans: type: array items: allOf: - - *786 + - *787 - type: object properties: pattern_name: @@ -114228,7 +114300,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *786 + items: *787 examples: default: value: @@ -114338,9 +114410,9 @@ paths: application/json: schema: type: array - items: *787 + items: *788 examples: - default: *788 + default: *789 '400': *14 '404': *6 x-github: @@ -114524,9 +114596,9 @@ paths: description: Response content: application/json: - schema: *787 + schema: *788 examples: - default: &790 + default: &791 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -114864,7 +114936,7 @@ paths: description: Response content: application/json: - schema: *787 + schema: *788 examples: default: value: @@ -115013,15 +115085,15 @@ paths: parameters: - *492 - *493 - - *789 + - *790 responses: '200': description: Response content: application/json: - schema: *787 + schema: *788 examples: - default: *790 + default: *791 '403': *29 '404': *6 x-github: @@ -115047,7 +115119,7 @@ paths: parameters: - *492 - *493 - - *789 + - *790 requestBody: required: true content: @@ -115206,10 +115278,10 @@ paths: description: Response content: application/json: - schema: *787 + schema: *788 examples: - default: *790 - add_credit: *790 + default: *791 + add_credit: *791 '403': *29 '404': *6 '422': @@ -115249,7 +115321,7 @@ paths: parameters: - *492 - *493 - - *789 + - *790 responses: '202': *39 '400': *14 @@ -115278,7 +115350,7 @@ paths: parameters: - *492 - *493 - - *789 + - *790 responses: '202': description: Response @@ -115422,7 +115494,7 @@ paths: application/json: schema: type: array - items: &791 + items: &792 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -115795,7 +115867,7 @@ paths: application/json: schema: type: array - items: *791 + items: *792 examples: default: value: @@ -115883,7 +115955,7 @@ paths: description: Response content: application/json: - schema: *792 + schema: *793 examples: default: value: @@ -115977,7 +116049,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &793 + schema: &794 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -116072,7 +116144,7 @@ paths: description: Response content: application/json: - schema: *793 + schema: *794 examples: default: value: @@ -116279,7 +116351,7 @@ paths: description: Response content: application/json: - schema: &794 + schema: &795 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -116291,7 +116363,7 @@ paths: required: - names examples: - default: &795 + default: &796 value: names: - octocat @@ -116346,9 +116418,9 @@ paths: description: Response content: application/json: - schema: *794 + schema: *795 examples: - default: *795 + default: *796 '404': *6 '422': *7 x-github: @@ -116371,7 +116443,7 @@ paths: parameters: - *492 - *493 - - &796 + - &797 name: per description: The time frame to display results for. in: query @@ -116400,7 +116472,7 @@ paths: example: 128 clones: type: array - items: &797 + items: &798 title: Traffic type: object properties: @@ -116641,7 +116713,7 @@ paths: parameters: - *492 - *493 - - *796 + - *797 responses: '200': description: Response @@ -116660,7 +116732,7 @@ paths: example: 3782 views: type: array - items: *797 + items: *798 required: - uniques - count @@ -117332,7 +117404,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &805 + - &806 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -117341,7 +117413,7 @@ paths: schema: type: string example: members - - &810 + - &811 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -117352,7 +117424,7 @@ paths: default: 1 format: int32 example: 1 - - &811 + - &812 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -117394,7 +117466,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &800 + items: &801 allOf: - type: object required: @@ -117469,7 +117541,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &812 + meta: &813 type: object description: The metadata associated with the creation/updates to the user. @@ -117529,30 +117601,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &801 + '400': &802 description: Bad request content: application/json: - schema: *798 + schema: *799 application/scim+json: - schema: *798 - '401': *799 - '403': &802 + schema: *799 + '401': *800 + '403': &803 description: Permission denied - '429': &803 + '429': &804 description: Too many requests content: application/json: - schema: *798 + schema: *799 application/scim+json: - schema: *798 - '500': &804 + schema: *799 + '500': &805 description: Internal server error content: application/json: - schema: *798 + schema: *799 application/scim+json: - schema: *798 + schema: *799 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117576,7 +117648,7 @@ paths: required: true content: application/json: - schema: &808 + schema: &809 type: object required: - schemas @@ -117636,9 +117708,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *800 + schema: *801 examples: - group: &806 + group: &807 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -117657,13 +117729,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *801 - '401': *799 - '403': *802 - '409': &809 + '400': *802 + '401': *800 + '403': *803 + '409': &810 description: Duplicate record detected - '429': *803 - '500': *804 + '429': *804 + '500': *805 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117680,7 +117752,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &807 + - &808 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -117688,22 +117760,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *805 + - *806 - *41 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *800 + schema: *801 examples: - default: *806 - '400': *801 - '401': *799 - '403': *802 + default: *807 + '400': *802 + '401': *800 + '403': *803 '404': *6 - '429': *803 - '500': *804 + '429': *804 + '500': *805 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117722,13 +117794,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *807 + - *808 - *41 requestBody: required: true content: application/json: - schema: *808 + schema: *809 examples: group: summary: Group @@ -117754,17 +117826,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *800 + schema: *801 examples: - group: *806 - groupWithMembers: *806 - '400': *801 - '401': *799 - '403': *802 + group: *807 + groupWithMembers: *807 + '400': *802 + '401': *800 + '403': *803 '404': *6 - '409': *809 - '429': *803 - '500': *804 + '409': *810 + '429': *804 + '500': *805 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117788,13 +117860,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *807 + - *808 - *41 requestBody: required: true content: application/json: - schema: &819 + schema: &820 type: object required: - Operations @@ -117854,17 +117926,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *800 + schema: *801 examples: - updateGroup: *806 - addMembers: *806 - '400': *801 - '401': *799 - '403': *802 + updateGroup: *807 + addMembers: *807 + '400': *802 + '401': *800 + '403': *803 '404': *6 - '409': *809 - '429': *803 - '500': *804 + '409': *810 + '429': *804 + '500': *805 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117880,17 +117952,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *807 + - *808 - *41 responses: '204': description: Group was deleted, no content - '400': *801 - '401': *799 - '403': *802 + '400': *802 + '401': *800 + '403': *803 '404': *6 - '429': *803 - '500': *804 + '429': *804 + '500': *805 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -117924,8 +117996,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *810 - *811 + - *812 - *41 responses: '200': @@ -117958,7 +118030,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &814 + items: &815 allOf: - type: object required: @@ -118037,7 +118109,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &813 + roles: &814 type: array description: The roles assigned to the user. items: @@ -118093,7 +118165,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *812 + meta: *813 startIndex: type: integer description: A starting index for the returned page @@ -118130,11 +118202,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *801 - '401': *799 - '403': *802 - '429': *803 - '500': *804 + '400': *802 + '401': *800 + '403': *803 + '429': *804 + '500': *805 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118158,7 +118230,7 @@ paths: required: true content: application/json: - schema: &817 + schema: &818 type: object required: - schemas @@ -118240,9 +118312,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *813 + roles: *814 examples: - user: &818 + user: &819 summary: User value: schemas: @@ -118289,9 +118361,9 @@ paths: description: User has been created content: application/scim+json: - schema: *814 + schema: *815 examples: - user: &815 + user: &816 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -118317,13 +118389,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *815 - '400': *801 - '401': *799 - '403': *802 - '409': *809 - '429': *803 - '500': *804 + enterpriseOwner: *816 + '400': *802 + '401': *800 + '403': *803 + '409': *810 + '429': *804 + '500': *805 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118340,7 +118412,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &816 + - &817 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -118353,15 +118425,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *814 + schema: *815 examples: - default: *815 - '400': *801 - '401': *799 - '403': *802 + default: *816 + '400': *802 + '401': *800 + '403': *803 '404': *6 - '429': *803 - '500': *804 + '429': *804 + '500': *805 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118412,30 +118484,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *816 + - *817 - *41 requestBody: required: true content: application/json: - schema: *817 + schema: *818 examples: - user: *818 + user: *819 responses: '200': description: User was updated content: application/scim+json: - schema: *814 + schema: *815 examples: - user: *815 - '400': *801 - '401': *799 - '403': *802 + user: *816 + '400': *802 + '401': *800 + '403': *803 '404': *6 - '409': *809 - '429': *803 - '500': *804 + '409': *810 + '429': *804 + '500': *805 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118476,13 +118548,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *816 + - *817 - *41 requestBody: required: true content: application/json: - schema: *819 + schema: *820 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -118522,18 +118594,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *814 + schema: *815 examples: - userMultiValuedProperties: *815 - userSingleValuedProperties: *815 - disableUser: *815 - '400': *801 - '401': *799 - '403': *802 + userMultiValuedProperties: *816 + userSingleValuedProperties: *816 + disableUser: *816 + '400': *802 + '401': *800 + '403': *803 '404': *6 - '409': *809 - '429': *803 - '500': *804 + '409': *810 + '429': *804 + '500': *805 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118553,17 +118625,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *816 + - *817 - *41 responses: '204': description: User was deleted, no content - '400': *801 - '401': *799 - '403': *802 + '400': *802 + '401': *800 + '403': *803 '404': *6 - '429': *803 - '500': *804 + '429': *804 + '500': *805 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -118650,7 +118722,7 @@ paths: example: 1 Resources: type: array - items: &820 + items: &821 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -118881,22 +118953,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *37 - '404': &821 + '404': &822 description: Resource not found content: application/json: - schema: *798 + schema: *799 application/scim+json: - schema: *798 - '403': &822 + schema: *799 + '403': &823 description: Forbidden content: application/json: - schema: *798 + schema: *799 application/scim+json: - schema: *798 - '400': *801 - '429': *803 + schema: *799 + '400': *802 + '429': *804 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -118922,9 +118994,9 @@ paths: description: Response content: application/scim+json: - schema: *820 + schema: *821 examples: - default: &823 + default: &824 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -118947,17 +119019,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *37 - '404': *821 - '403': *822 - '500': *804 + '404': *822 + '403': *823 + '500': *805 '409': description: Conflict content: application/json: - schema: *798 + schema: *799 application/scim+json: - schema: *798 - '400': *801 + schema: *799 + '400': *802 requestBody: required: true content: @@ -119055,17 +119127,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *89 - - *816 + - *817 responses: '200': description: Response content: application/scim+json: - schema: *820 + schema: *821 examples: - default: *823 - '404': *821 - '403': *822 + default: *824 + '404': *822 + '403': *823 '304': *37 x-github: githubCloudOnly: true @@ -119089,18 +119161,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *89 - - *816 + - *817 responses: '200': description: Response content: application/scim+json: - schema: *820 + schema: *821 examples: - default: *823 + default: *824 '304': *37 - '404': *821 - '403': *822 + '404': *822 + '403': *823 requestBody: required: true content: @@ -119213,19 +119285,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *89 - - *816 + - *817 responses: '200': description: Response content: application/scim+json: - schema: *820 + schema: *821 examples: - default: *823 + default: *824 '304': *37 - '404': *821 - '403': *822 - '400': *801 + '404': *822 + '403': *823 + '400': *802 '429': description: Response content: @@ -119316,12 +119388,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *89 - - *816 + - *817 responses: '204': description: Response - '404': *821 - '403': *822 + '404': *822 + '403': *823 '304': *37 x-github: githubCloudOnly: true @@ -119457,7 +119529,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &824 + text_matches: &825 title: Search Result Text Matches type: array items: @@ -119620,7 +119692,7 @@ paths: enum: - author-date - committer-date - - &825 + - &826 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 @@ -119748,7 +119820,7 @@ paths: type: number node_id: type: string - text_matches: *824 + text_matches: *825 required: - sha - node_id @@ -119941,7 +120013,7 @@ paths: - interactions - created - updated - - *825 + - *826 - *17 - *19 - name: advanced_search @@ -120055,8 +120127,8 @@ paths: description: type: string nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -120091,7 +120163,7 @@ paths: type: string format: date-time nullable: true - text_matches: *824 + text_matches: *825 pull_request: type: object properties: @@ -120373,7 +120445,7 @@ paths: enum: - created - updated - - *825 + - *826 - *17 - *19 responses: @@ -120417,7 +120489,7 @@ paths: nullable: true score: type: number - text_matches: *824 + text_matches: *825 required: - id - node_id @@ -120503,7 +120575,7 @@ paths: - forks - help-wanted-issues - updated - - *825 + - *826 - *17 - *19 responses: @@ -120751,7 +120823,7 @@ paths: - admin - pull - push - text_matches: *824 + text_matches: *825 temp_clone_token: type: string allow_merge_commit: @@ -121052,7 +121124,7 @@ paths: type: string format: uri nullable: true - text_matches: *824 + text_matches: *825 related: type: array nullable: true @@ -121245,7 +121317,7 @@ paths: - followers - repositories - joined - - *825 + - *826 - *17 - *19 responses: @@ -121349,7 +121421,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *824 + text_matches: *825 blog: type: string nullable: true @@ -121428,7 +121500,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &828 + - &829 name: team_id description: The unique identifier of the team. in: path @@ -121469,7 +121541,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *828 + - *829 requestBody: required: true content: @@ -121569,7 +121641,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *828 + - *829 responses: '204': description: Response @@ -121598,7 +121670,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *828 + - *829 - *17 - *19 responses: @@ -121636,7 +121708,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *828 + - *829 - name: role description: Filters members returned by their role in the team. in: query @@ -121687,7 +121759,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *828 + - *829 - *148 responses: '204': @@ -121724,7 +121796,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *828 + - *829 - *148 responses: '204': @@ -121764,7 +121836,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *828 + - *829 - *148 responses: '204': @@ -121801,7 +121873,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *828 + - *829 - *148 responses: '200': @@ -121810,7 +121882,7 @@ paths: application/json: schema: *491 examples: - response-if-user-is-a-team-maintainer: *829 + response-if-user-is-a-team-maintainer: *830 '404': *6 x-github: githubCloudOnly: false @@ -121843,7 +121915,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *828 + - *829 - *148 requestBody: required: false @@ -121871,7 +121943,7 @@ paths: application/json: schema: *491 examples: - response-if-users-membership-with-team-is-now-pending: *830 + response-if-users-membership-with-team-is-now-pending: *831 '403': description: Forbidden if team synchronization is set up '422': @@ -121905,7 +121977,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *828 + - *829 - *148 responses: '204': @@ -121933,7 +122005,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *828 + - *829 - *17 - *19 responses: @@ -121975,7 +122047,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *828 + - *829 - *492 - *493 responses: @@ -121983,7 +122055,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *831 + schema: *832 examples: alternative-response-with-extra-repository-information: value: @@ -122134,7 +122206,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *828 + - *829 - *492 - *493 requestBody: @@ -122186,7 +122258,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *828 + - *829 - *492 - *493 responses: @@ -122217,7 +122289,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *828 + - *829 responses: '200': description: Response @@ -122252,7 +122324,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *828 + - *829 requestBody: required: true content: @@ -122340,7 +122412,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *828 + - *829 - *17 - *19 responses: @@ -122352,7 +122424,7 @@ paths: type: array items: *326 examples: - response-if-child-teams-exist: *832 + response-if-child-teams-exist: *833 headers: Link: *47 '404': *6 @@ -122385,7 +122457,7 @@ paths: application/json: schema: oneOf: - - &834 + - &835 title: Private User description: Private User type: object @@ -122588,7 +122660,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *833 + - *834 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -122741,7 +122813,7 @@ paths: description: Response content: application/json: - schema: *834 + schema: *835 examples: default: value: @@ -123139,7 +123211,7 @@ paths: type: integer secrets: type: array - items: &835 + items: &836 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -123255,7 +123327,7 @@ paths: description: Response content: application/json: - schema: *835 + schema: *836 examples: default: value: @@ -123668,7 +123740,7 @@ paths: description: Response content: application/json: - schema: &836 + schema: &837 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -123709,7 +123781,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &837 + default: &838 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -123754,9 +123826,9 @@ paths: description: Response content: application/json: - schema: *836 + schema: *837 examples: - default: *837 + default: *838 '404': *6 x-github: githubCloudOnly: false @@ -123793,9 +123865,9 @@ paths: type: integer machines: type: array - items: *838 + items: *839 examples: - default: *839 + default: *840 '304': *37 '500': *40 '401': *25 @@ -124734,7 +124806,7 @@ paths: type: array items: *417 examples: - default: &850 + default: &851 value: - id: 197 name: hello_docker @@ -124835,7 +124907,7 @@ paths: application/json: schema: type: array - items: &840 + items: &841 title: Email description: Email type: object @@ -124900,9 +124972,9 @@ paths: application/json: schema: type: array - items: *840 + items: *841 examples: - default: &852 + default: &853 value: - email: octocat@github.com verified: true @@ -124977,7 +125049,7 @@ paths: application/json: schema: type: array - items: *840 + items: *841 examples: default: value: @@ -125233,7 +125305,7 @@ paths: application/json: schema: type: array - items: &841 + items: &842 title: GPG Key description: A unique encryption key type: object @@ -125364,7 +125436,7 @@ paths: - subkeys - revoked examples: - default: &869 + default: &870 value: - id: 3 name: Octocat's GPG Key @@ -125449,9 +125521,9 @@ paths: description: Response content: application/json: - schema: *841 + schema: *842 examples: - default: &842 + default: &843 value: id: 3 name: Octocat's GPG Key @@ -125508,7 +125580,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &843 + - &844 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -125520,9 +125592,9 @@ paths: description: Response content: application/json: - schema: *841 + schema: *842 examples: - default: *842 + default: *843 '404': *6 '304': *37 '403': *29 @@ -125545,7 +125617,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *843 + - *844 responses: '204': description: Response @@ -126012,7 +126084,7 @@ paths: application/json: schema: type: array - items: &844 + items: &845 title: Key description: Key type: object @@ -126113,9 +126185,9 @@ paths: description: Response content: application/json: - schema: *844 + schema: *845 examples: - default: &845 + default: &846 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -126154,9 +126226,9 @@ paths: description: Response content: application/json: - schema: *844 + schema: *845 examples: - default: *845 + default: *846 '404': *6 '304': *37 '403': *29 @@ -126212,7 +126284,7 @@ paths: application/json: schema: type: array - items: &846 + items: &847 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -126280,7 +126352,7 @@ paths: - account - plan examples: - default: &847 + default: &848 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -126342,9 +126414,9 @@ paths: application/json: schema: type: array - items: *846 + items: *847 examples: - default: *847 + default: *848 headers: Link: *47 '304': *37 @@ -127353,7 +127425,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - *412 - - *848 + - *849 responses: '204': description: Response @@ -127468,7 +127540,7 @@ paths: - docker - nuget - container - - *849 + - *850 - *19 - *17 responses: @@ -127480,8 +127552,8 @@ paths: type: array items: *417 examples: - default: *850 - '400': *851 + default: *851 + '400': *852 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -127510,7 +127582,7 @@ paths: application/json: schema: *417 examples: - default: &870 + default: &871 value: id: 40201 name: octo-name @@ -127872,9 +127944,9 @@ paths: application/json: schema: type: array - items: *840 + items: *841 examples: - default: *852 + default: *853 headers: Link: *47 '304': *37 @@ -127987,7 +128059,7 @@ paths: type: array items: *80 examples: - default: &859 + default: &860 summary: Default response value: - id: 1296269 @@ -128333,7 +128405,7 @@ paths: type: array items: *681 examples: - default: *853 + default: *854 headers: Link: *47 '304': *37 @@ -128412,7 +128484,7 @@ paths: application/json: schema: type: array - items: &854 + items: &855 title: Social account description: Social media account type: object @@ -128427,7 +128499,7 @@ paths: - provider - url examples: - default: &855 + default: &856 value: - provider: twitter url: https://twitter.com/github @@ -128489,9 +128561,9 @@ paths: application/json: schema: type: array - items: *854 + items: *855 examples: - default: *855 + default: *856 '422': *15 '304': *37 '404': *6 @@ -128578,7 +128650,7 @@ paths: application/json: schema: type: array - items: &856 + items: &857 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -128598,7 +128670,7 @@ paths: - title - created_at examples: - default: &884 + default: &885 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -128662,9 +128734,9 @@ paths: description: Response content: application/json: - schema: *856 + schema: *857 examples: - default: &857 + default: &858 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -128694,7 +128766,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &858 + - &859 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -128706,9 +128778,9 @@ paths: description: Response content: application/json: - schema: *856 + schema: *857 examples: - default: *857 + default: *858 '404': *6 '304': *37 '403': *29 @@ -128731,7 +128803,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *858 + - *859 responses: '204': description: Response @@ -128760,7 +128832,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &885 + - &886 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 @@ -128785,11 +128857,11 @@ paths: type: array items: *80 examples: - default-response: *859 + default-response: *860 application/vnd.github.v3.star+json: schema: type: array - items: &886 + items: &887 title: Starred Repository description: Starred Repository type: object @@ -129158,10 +129230,10 @@ paths: application/json: schema: oneOf: + - *835 - *834 - - *833 examples: - default-response: &863 + default-response: &864 summary: Default response value: login: octocat @@ -129196,7 +129268,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &864 + response-with-git-hub-plan-information: &865 summary: Response with GitHub plan information value: login: octocat @@ -129253,7 +129325,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &861 + - &862 name: user_id description: The unique identifier of the user. in: path @@ -129319,7 +129391,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *860 + - *861 - *17 responses: '200': @@ -129354,7 +129426,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *861 + - *862 - *435 requestBody: required: true @@ -129426,7 +129498,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *862 + schema: *863 examples: table_view: summary: Response for creating a table view @@ -129478,11 +129550,11 @@ paths: application/json: schema: oneOf: + - *835 - *834 - - *833 examples: - default-response: *863 - response-with-git-hub-plan-information: *864 + default-response: *864 + response-with-git-hub-plan-information: *865 '404': *6 x-github: githubCloudOnly: false @@ -129532,8 +129604,8 @@ paths: required: - subject_digests examples: - default: *865 - withPredicateType: *866 + default: *866 + withPredicateType: *867 responses: '200': description: Response @@ -129586,7 +129658,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *867 + default: *868 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -130072,7 +130144,7 @@ paths: application/json: schema: *341 examples: - default: &868 + default: &869 summary: Example response for a user copilot space value: id: 42 @@ -130173,7 +130245,7 @@ paths: application/json: schema: *341 examples: - default: *868 + default: *869 '403': *29 '404': *6 x-github: @@ -130296,7 +130368,7 @@ paths: application/json: schema: *341 examples: - default: *868 + default: *869 '403': *29 '404': *6 '422': *15 @@ -131064,7 +131136,7 @@ paths: type: array items: *417 examples: - default: *850 + default: *851 '403': *29 '401': *25 x-github: @@ -131448,9 +131520,9 @@ paths: application/json: schema: type: array - items: *841 + items: *842 examples: - default: *869 + default: *870 headers: Link: *47 x-github: @@ -131678,7 +131750,7 @@ paths: - docker - nuget - container - - *849 + - *850 - *148 - *19 - *17 @@ -131691,10 +131763,10 @@ paths: type: array items: *417 examples: - default: *850 + default: *851 '403': *29 '401': *25 - '400': *851 + '400': *852 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -131724,7 +131796,7 @@ paths: application/json: schema: *417 examples: - default: *870 + default: *871 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -132073,7 +132145,7 @@ paths: type: array items: *439 examples: - default: *871 + default: *872 headers: Link: *47 '304': *37 @@ -132133,7 +132205,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *872 + items: *873 required: - name - data_type @@ -132149,7 +132221,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *873 + iteration_configuration: *874 required: - name - data_type @@ -132171,8 +132243,8 @@ paths: value: name: Due date data_type: date - single_select_field: *874 - iteration_field: *875 + single_select_field: *875 + iteration_field: *876 responses: '201': description: Response @@ -132180,11 +132252,11 @@ paths: application/json: schema: *439 examples: - text_field: *876 - number_field: *877 - date_field: *878 - single_select_field: *879 - iteration_field: *880 + text_field: *877 + number_field: *878 + date_field: *879 + single_select_field: *880 + iteration_field: *881 '304': *37 '403': *29 '401': *25 @@ -132206,7 +132278,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - *435 - - *881 + - *882 - *148 responses: '200': @@ -132215,7 +132287,7 @@ paths: application/json: schema: *439 examples: - default: *882 + default: *883 headers: Link: *47 '304': *37 @@ -132569,7 +132641,7 @@ paths: parameters: - *435 - *148 - - *883 + - *884 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -132848,9 +132920,9 @@ paths: application/json: schema: type: array - items: *854 + items: *855 examples: - default: *855 + default: *856 headers: Link: *47 x-github: @@ -132880,9 +132952,9 @@ paths: application/json: schema: type: array - items: *856 + items: *857 examples: - default: *884 + default: *885 headers: Link: *47 x-github: @@ -132907,7 +132979,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *148 - - *885 + - *886 - *112 - *17 - *19 @@ -132919,11 +132991,11 @@ paths: schema: anyOf: - type: array - items: *886 + items: *887 - type: array items: *80 examples: - default-response: *859 + default-response: *860 headers: Link: *47 x-github: @@ -133082,7 +133154,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &887 + enterprise: &888 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -133140,7 +133212,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &888 + installation: &889 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -133159,7 +133231,7 @@ x-webhooks: required: - id - node_id - organization: &889 + organization: &890 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -133219,13 +133291,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &890 + repository: &891 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &929 + properties: &930 id: description: Unique identifier of the repository example: 42 @@ -133920,7 +133992,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &930 + required: &931 - archive_url - assignees_url - blobs_url @@ -134071,10 +134143,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -134150,11 +134222,11 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - rule: &891 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + rule: &892 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -134377,11 +134449,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - rule: *891 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + rule: *892 sender: *4 required: - action @@ -134564,11 +134636,11 @@ x-webhooks: - everyone required: - from - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - rule: *891 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + rule: *892 sender: *4 required: - action @@ -134641,7 +134713,7 @@ x-webhooks: required: true content: application/json: - schema: &913 + schema: &914 title: Exemption request cancellation event type: object properties: @@ -134649,11 +134721,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - exemption_request: &892 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + exemption_request: &893 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -134957,7 +135029,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &893 + items: &894 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -135067,7 +135139,7 @@ x-webhooks: required: true content: application/json: - schema: &914 + schema: &915 title: Exemption request completed event type: object properties: @@ -135075,11 +135147,11 @@ x-webhooks: type: string enum: - completed - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - exemption_request: *892 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + exemption_request: *893 sender: *4 required: - action @@ -135151,7 +135223,7 @@ x-webhooks: required: true content: application/json: - schema: &911 + schema: &912 title: Exemption request created event type: object properties: @@ -135159,11 +135231,11 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - exemption_request: *892 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + exemption_request: *893 sender: *4 required: - action @@ -135235,7 +135307,7 @@ x-webhooks: required: true content: application/json: - schema: &915 + schema: &916 title: Exemption response dismissed event type: object properties: @@ -135243,12 +135315,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - exemption_request: *892 - exemption_response: *893 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + exemption_request: *893 + exemption_response: *894 sender: *4 required: - action @@ -135322,7 +135394,7 @@ x-webhooks: required: true content: application/json: - schema: &912 + schema: &913 title: Exemption response submitted event type: object properties: @@ -135330,12 +135402,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - exemption_request: *892 - exemption_response: *893 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + exemption_request: *893 + exemption_response: *894 sender: *4 required: - action @@ -135419,7 +135491,7 @@ x-webhooks: type: string enum: - completed - check_run: &895 + check_run: &896 title: CheckRun description: A check performed on the code of a given code change type: object @@ -135510,7 +135582,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *894 + deployment: *895 details_url: example: https://example.com type: string @@ -135595,10 +135667,10 @@ x-webhooks: - output - app - pull_requests - installation: *888 - enterprise: *887 - organization: *889 - repository: *890 + installation: *889 + enterprise: *888 + organization: *890 + repository: *891 sender: *4 required: - check_run @@ -135989,11 +136061,11 @@ x-webhooks: type: string enum: - created - check_run: *895 - installation: *888 - enterprise: *887 - organization: *889 - repository: *890 + check_run: *896 + installation: *889 + enterprise: *888 + organization: *890 + repository: *891 sender: *4 required: - check_run @@ -136387,11 +136459,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *895 - installation: *888 - enterprise: *887 - organization: *889 - repository: *890 + check_run: *896 + installation: *889 + enterprise: *888 + organization: *890 + repository: *891 requested_action: description: The action requested by the user. type: object @@ -136794,11 +136866,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *895 - installation: *888 - enterprise: *887 - organization: *889 - repository: *890 + check_run: *896 + installation: *889 + enterprise: *888 + organization: *890 + repository: *891 sender: *4 required: - check_run @@ -137768,10 +137840,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -138465,10 +138537,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -139156,10 +139228,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -139470,20 +139542,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &896 + commit_oid: &897 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: *887 - installation: *888 - organization: *889 - ref: &897 + enterprise: *888 + installation: *889 + organization: *890 + ref: &898 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: *890 + repository: *891 sender: *4 required: - action @@ -139878,12 +139950,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *896 - enterprise: *887 - installation: *888 - organization: *889 - ref: *897 - repository: *890 + commit_oid: *897 + enterprise: *888 + installation: *889 + organization: *890 + ref: *898 + repository: *891 sender: *4 required: - action @@ -140149,12 +140221,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *896 - enterprise: *887 - installation: *888 - organization: *889 - ref: *897 - repository: *890 + commit_oid: *897 + enterprise: *888 + installation: *889 + organization: *890 + ref: *898 + repository: *891 sender: *4 required: - action @@ -140486,12 +140558,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *896 - enterprise: *887 - installation: *888 - organization: *889 - ref: *897 - repository: *890 + commit_oid: *897 + enterprise: *888 + installation: *889 + organization: *890 + ref: *898 + repository: *891 sender: *4 required: - action @@ -140765,16 +140837,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *890 + repository: *891 sender: *4 required: - action @@ -141011,12 +141083,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *896 - enterprise: *887 - installation: *888 - organization: *889 - ref: *897 - repository: *890 + commit_oid: *897 + enterprise: *888 + installation: *889 + organization: *890 + ref: *898 + repository: *891 sender: *4 required: - action @@ -141327,10 +141399,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -141585,10 +141657,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -141668,18 +141740,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *889 - pusher_type: &898 + organization: *890 + pusher_type: &899 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &899 + ref: &900 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -141689,7 +141761,7 @@ x-webhooks: enum: - tag - branch - repository: *890 + repository: *891 sender: *4 required: - ref @@ -141772,9 +141844,9 @@ x-webhooks: enum: - created definition: *161 - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 sender: *4 required: - action @@ -141859,9 +141931,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 sender: *4 required: - action @@ -141939,9 +142011,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *161 - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 sender: *4 required: - action @@ -142019,9 +142091,9 @@ x-webhooks: enum: - updated definition: *161 - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 sender: *4 required: - action @@ -142098,10 +142170,10 @@ x-webhooks: type: string enum: - updated - enterprise: *887 - installation: *888 - repository: *890 - organization: *889 + enterprise: *888 + installation: *889 + repository: *891 + organization: *890 sender: *4 new_property_values: type: array @@ -142186,18 +142258,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *887 - installation: *888 - organization: *889 - pusher_type: *898 - ref: *899 + enterprise: *888 + installation: *889 + organization: *890 + pusher_type: *899 + ref: *900 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *890 + repository: *891 sender: *4 required: - ref @@ -142278,10 +142350,10 @@ x-webhooks: enum: - assignees_changed alert: *631 - installation: *888 - organization: *889 - enterprise: *887 - repository: *890 + installation: *889 + organization: *890 + enterprise: *888 + repository: *891 sender: *4 required: - action @@ -142362,10 +142434,10 @@ x-webhooks: enum: - auto_dismissed alert: *631 - installation: *888 - organization: *889 - enterprise: *887 - repository: *890 + installation: *889 + organization: *890 + enterprise: *888 + repository: *891 sender: *4 required: - action @@ -142447,10 +142519,10 @@ x-webhooks: enum: - auto_reopened alert: *631 - installation: *888 - organization: *889 - enterprise: *887 - repository: *890 + installation: *889 + organization: *890 + enterprise: *888 + repository: *891 sender: *4 required: - action @@ -142532,10 +142604,10 @@ x-webhooks: enum: - created alert: *631 - installation: *888 - organization: *889 - enterprise: *887 - repository: *890 + installation: *889 + organization: *890 + enterprise: *888 + repository: *891 sender: *4 required: - action @@ -142615,10 +142687,10 @@ x-webhooks: enum: - dismissed alert: *631 - installation: *888 - organization: *889 - enterprise: *887 - repository: *890 + installation: *889 + organization: *890 + enterprise: *888 + repository: *891 sender: *4 required: - action @@ -142698,10 +142770,10 @@ x-webhooks: enum: - fixed alert: *631 - installation: *888 - organization: *889 - enterprise: *887 - repository: *890 + installation: *889 + organization: *890 + enterprise: *888 + repository: *891 sender: *4 required: - action @@ -142782,10 +142854,10 @@ x-webhooks: enum: - reintroduced alert: *631 - installation: *888 - organization: *889 - enterprise: *887 - repository: *890 + installation: *889 + organization: *890 + enterprise: *888 + repository: *891 sender: *4 required: - action @@ -142865,10 +142937,10 @@ x-webhooks: enum: - reopened alert: *631 - installation: *888 - organization: *889 - enterprise: *887 - repository: *890 + installation: *889 + organization: *890 + enterprise: *888 + repository: *891 sender: *4 required: - action @@ -142945,9 +143017,9 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - key: &900 + enterprise: *888 + installation: *889 + key: &901 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -142983,8 +143055,8 @@ x-webhooks: - verified - created_at - read_only - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -143061,11 +143133,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - key: *900 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + key: *901 + organization: *890 + repository: *891 sender: *4 required: - action @@ -143621,12 +143693,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 - workflow: &906 + workflow: &907 title: Workflow type: object nullable: true @@ -144367,15 +144439,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *901 - required: *902 + properties: *902 + required: *903 nullable: true pull_requests: type: array items: *735 - repository: *890 - organization: *889 - installation: *888 + repository: *891 + organization: *890 + installation: *889 sender: *4 responses: '200': @@ -144446,7 +144518,7 @@ x-webhooks: type: string enum: - approved - approver: &903 + approver: &904 type: object properties: avatar_url: @@ -144489,11 +144561,11 @@ x-webhooks: type: string comment: type: string - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - reviewers: &904 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + reviewers: &905 type: array items: type: object @@ -144572,7 +144644,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &905 + workflow_job_run: &906 type: object properties: conclusion: @@ -145303,18 +145375,18 @@ x-webhooks: type: string enum: - rejected - approver: *903 + approver: *904 comment: type: string - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - reviewers: *904 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + reviewers: *905 sender: *4 since: type: string - workflow_job_run: *905 + workflow_job_run: *906 workflow_job_runs: type: array items: @@ -146018,13 +146090,13 @@ x-webhooks: type: string enum: - requested - enterprise: *887 + enterprise: *888 environment: type: string - installation: *888 - organization: *889 - repository: *890 - requestor: &916 + installation: *889 + organization: *890 + repository: *891 + requestor: &917 title: User type: object nullable: true @@ -147913,12 +147985,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 - workflow: *906 + workflow: *907 workflow_run: title: Deployment Workflow Run type: object @@ -148598,7 +148670,7 @@ x-webhooks: type: string enum: - answered - answer: &909 + answer: &910 type: object properties: author_association: @@ -148755,11 +148827,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -148886,11 +148958,11 @@ x-webhooks: - from required: - category - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -148973,11 +149045,11 @@ x-webhooks: type: string enum: - closed - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -149059,7 +149131,7 @@ x-webhooks: type: string enum: - created - comment: &908 + comment: &909 type: object properties: author_association: @@ -149216,11 +149288,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -149303,12 +149375,12 @@ x-webhooks: type: string enum: - deleted - comment: *908 - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + comment: *909 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -149403,12 +149475,12 @@ x-webhooks: - from required: - body - comment: *908 - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + comment: *909 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -149492,11 +149564,11 @@ x-webhooks: type: string enum: - created - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -149578,11 +149650,11 @@ x-webhooks: type: string enum: - deleted - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -149682,11 +149754,11 @@ x-webhooks: type: string required: - from - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -149768,10 +149840,10 @@ x-webhooks: type: string enum: - labeled - discussion: *907 - enterprise: *887 - installation: *888 - label: &910 + discussion: *908 + enterprise: *888 + installation: *889 + label: &911 title: Label type: object properties: @@ -149803,8 +149875,8 @@ x-webhooks: - color - default - description - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -149887,11 +149959,11 @@ x-webhooks: type: string enum: - locked - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -149973,11 +150045,11 @@ x-webhooks: type: string enum: - pinned - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -150059,11 +150131,11 @@ x-webhooks: type: string enum: - reopened - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -150148,16 +150220,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *907 - new_repository: *890 + new_discussion: *908 + new_repository: *891 required: - new_discussion - new_repository - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -150240,10 +150312,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *907 - old_answer: *909 - organization: *889 - repository: *890 + discussion: *908 + old_answer: *910 + organization: *890 + repository: *891 sender: *4 required: - action @@ -150325,12 +150397,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *907 - enterprise: *887 - installation: *888 - label: *910 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + label: *911 + organization: *890 + repository: *891 sender: *4 required: - action @@ -150413,11 +150485,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -150499,11 +150571,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *907 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + discussion: *908 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -150572,7 +150644,7 @@ x-webhooks: required: true content: application/json: - schema: *911 + schema: *912 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150635,7 +150707,7 @@ x-webhooks: required: true content: application/json: - schema: *912 + schema: *913 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150698,7 +150770,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *914 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150761,7 +150833,7 @@ x-webhooks: required: true content: application/json: - schema: *911 + schema: *912 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150824,7 +150896,7 @@ x-webhooks: required: true content: application/json: - schema: *912 + schema: *913 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150890,7 +150962,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *914 responses: '200': description: Return a 200 status to indicate that the data was received @@ -150956,7 +151028,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *915 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151022,7 +151094,7 @@ x-webhooks: required: true content: application/json: - schema: *911 + schema: *912 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151088,7 +151160,7 @@ x-webhooks: required: true content: application/json: - schema: *915 + schema: *916 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151154,7 +151226,7 @@ x-webhooks: required: true content: application/json: - schema: *912 + schema: *913 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151219,7 +151291,7 @@ x-webhooks: required: true content: application/json: - schema: *913 + schema: *914 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151284,7 +151356,7 @@ x-webhooks: required: true content: application/json: - schema: *914 + schema: *915 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151349,7 +151421,7 @@ x-webhooks: required: true content: application/json: - schema: *911 + schema: *912 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151414,7 +151486,7 @@ x-webhooks: required: true content: application/json: - schema: *915 + schema: *916 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151480,7 +151552,7 @@ x-webhooks: required: true content: application/json: - schema: *912 + schema: *913 responses: '200': description: Return a 200 status to indicate that the data was received @@ -151547,7 +151619,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *887 + enterprise: *888 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -152207,9 +152279,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *888 - organization: *889 - repository: *890 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - forkee @@ -152355,9 +152427,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 pages: description: The pages that were updated. type: array @@ -152394,7 +152466,7 @@ x-webhooks: - action - sha - html_url - repository: *890 + repository: *891 sender: *4 required: - pages @@ -152470,10 +152542,10 @@ x-webhooks: type: string enum: - created - enterprise: *887 + enterprise: *888 installation: *22 - organization: *889 - repositories: &917 + organization: *890 + repositories: &918 description: An array of repository objects that the installation can access. type: array @@ -152499,8 +152571,8 @@ x-webhooks: - name - full_name - private - repository: *890 - requester: *916 + repository: *891 + requester: *917 sender: *4 required: - action @@ -152575,11 +152647,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 + enterprise: *888 installation: *22 - organization: *889 - repositories: *917 - repository: *890 + organization: *890 + repositories: *918 + repository: *891 requester: nullable: true sender: *4 @@ -152655,11 +152727,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *887 + enterprise: *888 installation: *22 - organization: *889 - repositories: *917 - repository: *890 + organization: *890 + repositories: *918 + repository: *891 requester: nullable: true sender: *4 @@ -152735,10 +152807,10 @@ x-webhooks: type: string enum: - added - enterprise: *887 + enterprise: *888 installation: *22 - organization: *889 - repositories_added: &918 + organization: *890 + repositories_added: &919 description: An array of repository objects, which were added to the installation. type: array @@ -152784,15 +152856,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *890 - repository_selection: &919 + repository: *891 + repository_selection: &920 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *916 + requester: *917 sender: *4 required: - action @@ -152871,10 +152943,10 @@ x-webhooks: type: string enum: - removed - enterprise: *887 + enterprise: *888 installation: *22 - organization: *889 - repositories_added: *918 + organization: *890 + repositories_added: *919 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -152901,9 +152973,9 @@ x-webhooks: - name - full_name - private - repository: *890 - repository_selection: *919 - requester: *916 + repository: *891 + repository_selection: *920 + requester: *917 sender: *4 required: - action @@ -152982,11 +153054,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *887 + enterprise: *888 installation: *22 - organization: *889 - repositories: *917 - repository: *890 + organization: *890 + repositories: *918 + repository: *891 requester: nullable: true sender: *4 @@ -153165,10 +153237,10 @@ x-webhooks: type: string required: - from - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 target_type: type: string @@ -153247,11 +153319,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *887 + enterprise: *888 installation: *22 - organization: *889 - repositories: *917 - repository: *890 + organization: *890 + repositories: *918 + repository: *891 requester: nullable: true sender: *4 @@ -153511,8 +153583,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -154301,8 +154373,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154651,8 +154723,8 @@ x-webhooks: - state - locked - assignee - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -154732,7 +154804,7 @@ x-webhooks: type: string enum: - deleted - comment: &920 + comment: &921 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -154905,8 +154977,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -155691,8 +155763,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156043,8 +156115,8 @@ x-webhooks: - state - locked - assignee - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -156124,7 +156196,7 @@ x-webhooks: type: string enum: - edited - changes: &949 + changes: &950 description: The changes to the comment. type: object properties: @@ -156136,9 +156208,9 @@ x-webhooks: type: string required: - from - comment: *920 - enterprise: *887 - installation: *888 + comment: *921 + enterprise: *888 + installation: *889 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -156926,8 +156998,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157276,8 +157348,8 @@ x-webhooks: - state - locked - assignee - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -157358,9 +157430,9 @@ x-webhooks: type: string enum: - pinned - comment: *920 - enterprise: *887 - installation: *888 + comment: *921 + enterprise: *888 + installation: *889 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -158150,8 +158222,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158502,8 +158574,8 @@ x-webhooks: - state - locked - assignee - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -158583,9 +158655,9 @@ x-webhooks: type: string enum: - unpinned - comment: *920 - enterprise: *887 - installation: *888 + comment: *921 + enterprise: *888 + installation: *889 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -159375,8 +159447,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159727,8 +159799,8 @@ x-webhooks: - state - locked - assignee - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -159817,9 +159889,9 @@ x-webhooks: type: number blocking_issue: *229 blocking_issue_repo: *80 - installation: *888 - organization: *889 - repository: *890 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -159908,9 +159980,9 @@ x-webhooks: type: number blocking_issue: *229 blocking_issue_repo: *80 - installation: *888 - organization: *889 - repository: *890 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -159998,9 +160070,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *229 - installation: *888 - organization: *889 - repository: *890 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -160089,9 +160161,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *229 - installation: *888 - organization: *889 - repository: *890 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -160171,10 +160243,10 @@ x-webhooks: type: string enum: - assigned - assignee: *916 - enterprise: *887 - installation: *888 - issue: &921 + assignee: *917 + enterprise: *888 + installation: *889 + issue: &922 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -160966,8 +161038,8 @@ x-webhooks: properties: *230 required: *231 nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -161087,8 +161159,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -161168,8 +161240,8 @@ x-webhooks: type: string enum: - closed - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -161966,8 +162038,8 @@ x-webhooks: properties: *230 required: *231 nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -162222,8 +162294,8 @@ x-webhooks: required: - state - closed_at - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -162302,8 +162374,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -163091,8 +163163,8 @@ x-webhooks: properties: *230 required: *231 nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -163211,8 +163283,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -163291,8 +163363,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -164102,8 +164174,8 @@ x-webhooks: properties: *230 required: *231 nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -164201,7 +164273,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &922 + milestone: &923 title: Milestone description: A collection of related issues and pull requests. type: object @@ -164339,8 +164411,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -164439,8 +164511,8 @@ x-webhooks: type: string required: - from - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -165232,8 +165304,8 @@ x-webhooks: properties: *230 required: *231 nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -165353,9 +165425,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *910 - organization: *889 - repository: *890 + label: *911 + organization: *890 + repository: *891 sender: *4 required: - action @@ -165435,9 +165507,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *887 - installation: *888 - issue: *921 + enterprise: *888 + installation: *889 + issue: *922 issue_field: type: object description: The issue field whose value was set or updated on the @@ -165546,8 +165618,8 @@ x-webhooks: - id required: - from - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -165627,9 +165699,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *887 - installation: *888 - issue: *921 + enterprise: *888 + installation: *889 + issue: *922 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -165687,8 +165759,8 @@ x-webhooks: nullable: true required: - id - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -165768,8 +165840,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -166560,8 +166632,8 @@ x-webhooks: properties: *230 required: *231 nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -166681,9 +166753,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *910 - organization: *889 - repository: *890 + label: *911 + organization: *890 + repository: *891 sender: *4 required: - action @@ -166763,8 +166835,8 @@ x-webhooks: type: string enum: - locked - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -167579,8 +167651,8 @@ x-webhooks: properties: *230 required: *231 nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -167677,8 +167749,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -167757,8 +167829,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -168567,8 +168639,8 @@ x-webhooks: properties: *230 required: *231 nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -168665,9 +168737,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *922 - organization: *889 - repository: *890 + milestone: *923 + organization: *890 + repository: *891 sender: *4 required: - action @@ -169530,8 +169602,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -170115,8 +170187,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170900,8 +170972,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -171028,8 +171100,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -171109,9 +171181,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *887 - installation: *888 - issue: &923 + enterprise: *888 + installation: *889 + issue: &924 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -171897,8 +171969,8 @@ x-webhooks: properties: *230 required: *231 nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -172017,8 +172089,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -172097,8 +172169,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -172911,8 +172983,8 @@ x-webhooks: properties: *230 required: *231 nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -173010,8 +173082,8 @@ x-webhooks: user_view_type: type: string type: *401 - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -173880,8 +173952,8 @@ x-webhooks: properties: *230 required: *231 nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -174479,11 +174551,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *887 - installation: *888 - issue: *923 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + issue: *924 + organization: *890 + repository: *891 sender: *4 required: - action @@ -174563,12 +174635,12 @@ x-webhooks: type: string enum: - typed - enterprise: *887 - installation: *888 - issue: *921 + enterprise: *888 + installation: *889 + issue: *922 type: *401 - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -174649,7 +174721,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &952 + assignee: &953 title: User type: object nullable: true @@ -174719,11 +174791,11 @@ x-webhooks: required: - login - id - enterprise: *887 - installation: *888 - issue: *921 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + issue: *922 + organization: *890 + repository: *891 sender: *4 required: - action @@ -174802,12 +174874,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *887 - installation: *888 - issue: *921 - label: *910 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + issue: *922 + label: *911 + organization: *890 + repository: *891 sender: *4 required: - action @@ -174887,8 +174959,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -175701,8 +175773,8 @@ x-webhooks: properties: *230 required: *231 nullable: true - sub_issues_summary: *826 - issue_dependencies_summary: *827 + sub_issues_summary: *827 + issue_dependencies_summary: *828 issue_field_values: type: array items: *694 @@ -175799,8 +175871,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -175880,11 +175952,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *887 - installation: *888 - issue: *923 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + issue: *924 + organization: *890 + repository: *891 sender: *4 required: - action @@ -175963,12 +176035,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *887 - installation: *888 - issue: *921 + enterprise: *888 + installation: *889 + issue: *922 type: *401 - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -176048,11 +176120,11 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - label: *910 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + label: *911 + organization: *890 + repository: *891 sender: *4 required: - action @@ -176130,11 +176202,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - label: *910 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + label: *911 + organization: *890 + repository: *891 sender: *4 required: - action @@ -176244,11 +176316,11 @@ x-webhooks: type: string required: - from - enterprise: *887 - installation: *888 - label: *910 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + label: *911 + organization: *890 + repository: *891 sender: *4 required: - action @@ -176330,9 +176402,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *887 - installation: *888 - marketplace_purchase: &924 + enterprise: *888 + installation: *889 + marketplace_purchase: &925 title: Marketplace Purchase type: object required: @@ -176415,8 +176487,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *889 - previous_marketplace_purchase: &925 + organization: *890 + previous_marketplace_purchase: &926 title: Marketplace Purchase type: object properties: @@ -176496,7 +176568,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *890 + repository: *891 sender: *4 required: - action @@ -176576,10 +176648,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *887 - installation: *888 - marketplace_purchase: *924 - organization: *889 + enterprise: *888 + installation: *889 + marketplace_purchase: *925 + organization: *890 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -176662,7 +176734,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *890 + repository: *891 sender: *4 required: - action @@ -176744,10 +176816,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *887 - installation: *888 - marketplace_purchase: *924 - organization: *889 + enterprise: *888 + installation: *889 + marketplace_purchase: *925 + organization: *890 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -176829,7 +176901,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *890 + repository: *891 sender: *4 required: - action @@ -176910,8 +176982,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 marketplace_purchase: title: Marketplace Purchase type: object @@ -176993,9 +177065,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *889 - previous_marketplace_purchase: *925 - repository: *890 + organization: *890 + previous_marketplace_purchase: *926 + repository: *891 sender: *4 required: - action @@ -177075,12 +177147,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *887 - installation: *888 - marketplace_purchase: *924 - organization: *889 - previous_marketplace_purchase: *925 - repository: *890 + enterprise: *888 + installation: *889 + marketplace_purchase: *925 + organization: *890 + previous_marketplace_purchase: *926 + repository: *891 sender: *4 required: - action @@ -177182,11 +177254,11 @@ x-webhooks: type: string required: - to - enterprise: *887 - installation: *888 - member: *916 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + member: *917 + organization: *890 + repository: *891 sender: *4 required: - action @@ -177286,11 +177358,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *887 - installation: *888 - member: *916 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + member: *917 + organization: *890 + repository: *891 sender: *4 required: - action @@ -177369,11 +177441,11 @@ x-webhooks: type: string enum: - removed - enterprise: *887 - installation: *888 - member: *916 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + member: *917 + organization: *890 + repository: *891 sender: *4 required: - action @@ -177451,11 +177523,11 @@ x-webhooks: type: string enum: - added - enterprise: *887 - installation: *888 - member: *916 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + member: *917 + organization: *890 + repository: *891 scope: description: The scope of the membership. Currently, can only be `team`. @@ -177531,7 +177603,7 @@ x-webhooks: required: - login - id - team: &926 + team: &927 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -177754,11 +177826,11 @@ x-webhooks: type: string enum: - removed - enterprise: *887 - installation: *888 - member: *916 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + member: *917 + organization: *890 + repository: *891 scope: description: The scope of the membership. Currently, can only be `team`. @@ -177835,7 +177907,7 @@ x-webhooks: required: - login - id - team: *926 + team: *927 required: - action - scope @@ -177917,8 +177989,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *888 - merge_group: &928 + installation: *889 + merge_group: &929 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -177937,15 +178009,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *927 + head_commit: *928 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -178031,10 +178103,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *888 - merge_group: *928 - organization: *889 - repository: *890 + installation: *889 + merge_group: *929 + organization: *890 + repository: *891 sender: *4 required: - action @@ -178107,7 +178179,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 + enterprise: *888 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -178216,16 +178288,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *888 - organization: *889 + installation: *889 + organization: *890 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *929 - required: *930 + properties: *930 + required: *931 nullable: true sender: *4 required: @@ -178306,11 +178378,11 @@ x-webhooks: type: string enum: - closed - enterprise: *887 - installation: *888 - milestone: *922 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + milestone: *923 + organization: *890 + repository: *891 sender: *4 required: - action @@ -178389,9 +178461,9 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - milestone: &931 + enterprise: *888 + installation: *889 + milestone: &932 title: Milestone description: A collection of related issues and pull requests. type: object @@ -178528,8 +178600,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -178608,11 +178680,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - milestone: *922 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + milestone: *923 + organization: *890 + repository: *891 sender: *4 required: - action @@ -178722,11 +178794,11 @@ x-webhooks: type: string required: - from - enterprise: *887 - installation: *888 - milestone: *922 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + milestone: *923 + organization: *890 + repository: *891 sender: *4 required: - action @@ -178806,11 +178878,11 @@ x-webhooks: type: string enum: - opened - enterprise: *887 - installation: *888 - milestone: *931 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + milestone: *932 + organization: *890 + repository: *891 sender: *4 required: - action @@ -178889,11 +178961,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *916 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + blocked_user: *917 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -178972,11 +179044,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *916 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + blocked_user: *917 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -179052,7 +179124,7 @@ x-webhooks: enum: - created definition: *156 - enterprise: *887 + enterprise: *888 sender: *4 required: - action @@ -179132,8 +179204,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 sender: *4 required: - action @@ -179206,8 +179278,8 @@ x-webhooks: enum: - updated definition: *156 - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 sender: *4 required: - action @@ -179279,9 +179351,9 @@ x-webhooks: type: string enum: - updated - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 sender: *4 new_property_values: type: array @@ -179369,9 +179441,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - membership: &932 + enterprise: *888 + installation: *889 + membership: &933 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -179478,8 +179550,8 @@ x-webhooks: - role - organization_url - user - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 required: - action @@ -179557,11 +179629,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *887 - installation: *888 - membership: *932 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + membership: *933 + organization: *890 + repository: *891 sender: *4 required: - action @@ -179640,8 +179712,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -179757,10 +179829,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 - user: *916 + user: *917 required: - action - invitation @@ -179838,11 +179910,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *887 - installation: *888 - membership: *932 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + membership: *933 + organization: *890 + repository: *891 sender: *4 required: - action @@ -179929,11 +180001,11 @@ x-webhooks: properties: from: type: string - enterprise: *887 - installation: *888 - membership: *932 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + membership: *933 + organization: *890 + repository: *891 sender: *4 required: - action @@ -180011,9 +180083,9 @@ x-webhooks: type: string enum: - published - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 package: description: Information about the package. type: object @@ -180512,7 +180584,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &933 + items: &934 title: Ruby Gems metadata type: object properties: @@ -180607,7 +180679,7 @@ x-webhooks: - owner - package_version - registry - repository: *890 + repository: *891 sender: *4 required: - action @@ -180684,9 +180756,9 @@ x-webhooks: type: string enum: - updated - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 package: description: Information about the package. type: object @@ -181039,7 +181111,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *933 + items: *934 source_url: type: string format: uri @@ -181109,7 +181181,7 @@ x-webhooks: - owner - package_version - registry - repository: *890 + repository: *891 sender: *4 required: - action @@ -181285,12 +181357,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *887 + enterprise: *888 id: type: integer - installation: *888 - organization: *889 - repository: *890 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - id @@ -181367,7 +181439,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &934 + personal_access_token_request: &935 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -181513,10 +181585,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *887 - organization: *889 + enterprise: *888 + organization: *890 sender: *4 - installation: *888 + installation: *889 required: - action - personal_access_token_request @@ -181593,11 +181665,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *934 - enterprise: *887 - organization: *889 + personal_access_token_request: *935 + enterprise: *888 + organization: *890 sender: *4 - installation: *888 + installation: *889 required: - action - personal_access_token_request @@ -181673,11 +181745,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *934 - enterprise: *887 - organization: *889 + personal_access_token_request: *935 + enterprise: *888 + organization: *890 sender: *4 - installation: *888 + installation: *889 required: - action - personal_access_token_request @@ -181752,11 +181824,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *934 - organization: *889 - enterprise: *887 + personal_access_token_request: *935 + organization: *890 + enterprise: *888 sender: *4 - installation: *888 + installation: *889 required: - action - personal_access_token_request @@ -181861,7 +181933,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *935 + last_response: *936 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -181893,8 +181965,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 zen: description: Random string of GitHub zen. @@ -182139,10 +182211,10 @@ x-webhooks: - from required: - note - enterprise: *887 - installation: *888 - organization: *889 - project_card: &936 + enterprise: *888 + installation: *889 + organization: *890 + project_card: &937 title: Project Card type: object properties: @@ -182261,7 +182333,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *890 + repository: *891 sender: *4 required: - action @@ -182342,11 +182414,11 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - organization: *889 - project_card: *936 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + project_card: *937 + repository: *891 sender: *4 required: - action @@ -182426,9 +182498,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 project_card: title: Project Card type: object @@ -182556,8 +182628,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *929 - required: *930 + properties: *930 + required: *931 nullable: true sender: *4 required: @@ -182651,11 +182723,11 @@ x-webhooks: - from required: - note - enterprise: *887 - installation: *888 - organization: *889 - project_card: *936 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + project_card: *937 + repository: *891 sender: *4 required: - action @@ -182749,9 +182821,9 @@ x-webhooks: - from required: - column_id - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 project_card: allOf: - title: Project Card @@ -182941,7 +183013,7 @@ x-webhooks: type: string required: - after_id - repository: *890 + repository: *891 sender: *4 required: - action @@ -183021,10 +183093,10 @@ x-webhooks: type: string enum: - closed - enterprise: *887 - installation: *888 - organization: *889 - project: &938 + enterprise: *888 + installation: *889 + organization: *890 + project: &939 title: Project type: object properties: @@ -183148,7 +183220,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *890 + repository: *891 sender: *4 required: - action @@ -183228,10 +183300,10 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - organization: *889 - project_column: &937 + enterprise: *888 + installation: *889 + organization: *890 + project_column: &938 title: Project Column type: object properties: @@ -183270,7 +183342,7 @@ x-webhooks: - name - created_at - updated_at - repository: *890 + repository: *891 sender: *4 required: - action @@ -183349,18 +183421,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - organization: *889 - project_column: *937 + enterprise: *888 + installation: *889 + organization: *890 + project_column: *938 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *929 - required: *930 + properties: *930 + required: *931 nullable: true sender: *4 required: @@ -183450,11 +183522,11 @@ x-webhooks: type: string required: - from - enterprise: *887 - installation: *888 - organization: *889 - project_column: *937 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + project_column: *938 + repository: *891 sender: *4 required: - action @@ -183534,11 +183606,11 @@ x-webhooks: type: string enum: - moved - enterprise: *887 - installation: *888 - organization: *889 - project_column: *937 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + project_column: *938 + repository: *891 sender: *4 required: - action @@ -183618,11 +183690,11 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - organization: *889 - project: *938 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + project: *939 + repository: *891 sender: *4 required: - action @@ -183702,18 +183774,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - organization: *889 - project: *938 + enterprise: *888 + installation: *889 + organization: *890 + project: *939 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *929 - required: *930 + properties: *930 + required: *931 nullable: true sender: *4 required: @@ -183815,11 +183887,11 @@ x-webhooks: type: string required: - from - enterprise: *887 - installation: *888 - organization: *889 - project: *938 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + project: *939 + repository: *891 sender: *4 required: - action @@ -183898,11 +183970,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *887 - installation: *888 - organization: *889 - project: *938 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + project: *939 + repository: *891 sender: *4 required: - action @@ -183983,8 +184055,8 @@ x-webhooks: type: string enum: - closed - installation: *888 - organization: *889 + installation: *889 + organization: *890 projects_v2: *433 sender: *4 required: @@ -184066,8 +184138,8 @@ x-webhooks: type: string enum: - created - installation: *888 - organization: *889 + installation: *889 + organization: *890 projects_v2: *433 sender: *4 required: @@ -184149,8 +184221,8 @@ x-webhooks: type: string enum: - deleted - installation: *888 - organization: *889 + installation: *889 + organization: *890 projects_v2: *433 sender: *4 required: @@ -184268,8 +184340,8 @@ x-webhooks: type: string to: type: string - installation: *888 - organization: *889 + installation: *889 + organization: *890 projects_v2: *433 sender: *4 required: @@ -184353,7 +184425,7 @@ x-webhooks: type: string enum: - archived - changes: &942 + changes: &943 type: object properties: archived_at: @@ -184367,9 +184439,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *888 - organization: *889 - projects_v2_item: &939 + installation: *889 + organization: *890 + projects_v2_item: &940 title: Projects v2 Item description: An item belonging to a project type: object @@ -184504,9 +184576,9 @@ x-webhooks: nullable: true to: type: string - installation: *888 - organization: *889 - projects_v2_item: *939 + installation: *889 + organization: *890 + projects_v2_item: *940 sender: *4 required: - action @@ -184588,9 +184660,9 @@ x-webhooks: type: string enum: - created - installation: *888 - organization: *889 - projects_v2_item: *939 + installation: *889 + organization: *890 + projects_v2_item: *940 sender: *4 required: - action @@ -184671,9 +184743,9 @@ x-webhooks: type: string enum: - deleted - installation: *888 - organization: *889 - projects_v2_item: *939 + installation: *889 + organization: *890 + projects_v2_item: *940 sender: *4 required: - action @@ -184779,7 +184851,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &940 + - &941 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -184801,7 +184873,7 @@ x-webhooks: required: - id - name - - &941 + - &942 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -184835,8 +184907,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *940 - *941 + - *942 required: - field_value - type: object @@ -184852,9 +184924,9 @@ x-webhooks: nullable: true required: - body - installation: *888 - organization: *889 - projects_v2_item: *939 + installation: *889 + organization: *890 + projects_v2_item: *940 sender: *4 required: - action @@ -184949,9 +185021,9 @@ x-webhooks: to: type: string nullable: true - installation: *888 - organization: *889 - projects_v2_item: *939 + installation: *889 + organization: *890 + projects_v2_item: *940 sender: *4 required: - action @@ -185034,10 +185106,10 @@ x-webhooks: type: string enum: - restored - changes: *942 - installation: *888 - organization: *889 - projects_v2_item: *939 + changes: *943 + installation: *889 + organization: *890 + projects_v2_item: *940 sender: *4 required: - action @@ -185119,8 +185191,8 @@ x-webhooks: type: string enum: - reopened - installation: *888 - organization: *889 + installation: *889 + organization: *890 projects_v2: *433 sender: *4 required: @@ -185202,14 +185274,14 @@ x-webhooks: type: string enum: - created - installation: *888 - organization: *889 - projects_v2_status_update: &945 + installation: *889 + organization: *890 + projects_v2_status_update: &946 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *943 - required: *944 + properties: *944 + required: *945 sender: *4 required: - action @@ -185290,9 +185362,9 @@ x-webhooks: type: string enum: - deleted - installation: *888 - organization: *889 - projects_v2_status_update: *945 + installation: *889 + organization: *890 + projects_v2_status_update: *946 sender: *4 required: - action @@ -185428,9 +185500,9 @@ x-webhooks: type: string format: date nullable: true - installation: *888 - organization: *889 - projects_v2_status_update: *945 + installation: *889 + organization: *890 + projects_v2_status_update: *946 sender: *4 required: - action @@ -185501,10 +185573,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - repository @@ -185581,13 +185653,13 @@ x-webhooks: type: string enum: - assigned - assignee: *916 - enterprise: *887 - installation: *888 - number: &946 + assignee: *917 + enterprise: *888 + installation: *889 + number: &947 description: The pull request number. type: integer - organization: *889 + organization: *890 pull_request: title: Pull Request type: object @@ -187892,7 +187964,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 sender: *4 required: - action @@ -187974,11 +188046,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 number: type: integer - organization: *889 + organization: *890 pull_request: title: Pull Request type: object @@ -190278,7 +190350,7 @@ x-webhooks: - draft reason: type: string - repository: *890 + repository: *891 sender: *4 required: - action @@ -190360,11 +190432,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 number: type: integer - organization: *889 + organization: *890 pull_request: title: Pull Request type: object @@ -192664,7 +192736,7 @@ x-webhooks: - draft reason: type: string - repository: *890 + repository: *891 sender: *4 required: - action @@ -192746,11 +192818,11 @@ x-webhooks: type: string enum: - closed - enterprise: *887 - installation: *888 - number: *946 - organization: *889 - pull_request: &947 + enterprise: *888 + installation: *889 + number: *947 + organization: *890 + pull_request: &948 allOf: - *735 - type: object @@ -192814,7 +192886,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *890 + repository: *891 sender: *4 required: - action @@ -192895,12 +192967,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *887 - installation: *888 - number: *946 - organization: *889 - pull_request: *947 - repository: *890 + enterprise: *888 + installation: *889 + number: *947 + organization: *890 + pull_request: *948 + repository: *891 sender: *4 required: - action @@ -192980,11 +193052,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *887 + enterprise: *888 milestone: *717 - number: *946 - organization: *889 - pull_request: &948 + number: *947 + organization: *890 + pull_request: &949 title: Pull Request type: object properties: @@ -195269,7 +195341,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 sender: *4 required: - action @@ -195348,11 +195420,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 number: type: integer - organization: *889 + organization: *890 pull_request: title: Pull Request type: object @@ -197656,7 +197728,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *890 + repository: *891 sender: *4 required: - action @@ -197780,12 +197852,12 @@ x-webhooks: type: string required: - from - enterprise: *887 - installation: *888 - number: *946 - organization: *889 - pull_request: *947 - repository: *890 + enterprise: *888 + installation: *889 + number: *947 + organization: *890 + pull_request: *948 + repository: *891 sender: *4 required: - action @@ -197865,11 +197937,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 number: type: integer - organization: *889 + organization: *890 pull_request: title: Pull Request type: object @@ -200158,7 +200230,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 sender: *4 required: - action @@ -200238,11 +200310,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *887 - installation: *888 - label: *910 - number: *946 - organization: *889 + enterprise: *888 + installation: *889 + label: *911 + number: *947 + organization: *890 pull_request: title: Pull Request type: object @@ -202546,7 +202618,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 sender: *4 required: - action @@ -202627,10 +202699,10 @@ x-webhooks: type: string enum: - locked - enterprise: *887 - installation: *888 - number: *946 - organization: *889 + enterprise: *888 + installation: *889 + number: *947 + organization: *890 pull_request: title: Pull Request type: object @@ -204932,7 +205004,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 sender: *4 required: - action @@ -205012,12 +205084,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *887 + enterprise: *888 milestone: *717 - number: *946 - organization: *889 - pull_request: *948 - repository: *890 + number: *947 + organization: *890 + pull_request: *949 + repository: *891 sender: *4 required: - action @@ -205096,12 +205168,12 @@ x-webhooks: type: string enum: - opened - enterprise: *887 - installation: *888 - number: *946 - organization: *889 - pull_request: *947 - repository: *890 + enterprise: *888 + installation: *889 + number: *947 + organization: *890 + pull_request: *948 + repository: *891 sender: *4 required: - action @@ -205182,12 +205254,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *887 - installation: *888 - number: *946 - organization: *889 - pull_request: *947 - repository: *890 + enterprise: *888 + installation: *889 + number: *947 + organization: *890 + pull_request: *948 + repository: *891 sender: *4 required: - action @@ -205267,12 +205339,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *887 - installation: *888 - number: *946 - organization: *889 - pull_request: *947 - repository: *890 + enterprise: *888 + installation: *889 + number: *947 + organization: *890 + pull_request: *948 + repository: *891 sender: *4 required: - action @@ -205638,9 +205710,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 pull_request: type: object properties: @@ -207832,7 +207904,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *890 + repository: *891 sender: *4 required: - action @@ -207912,7 +207984,7 @@ x-webhooks: type: string enum: - deleted - comment: &950 + comment: &951 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -208197,9 +208269,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 pull_request: type: object properties: @@ -210379,7 +210451,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *890 + repository: *891 sender: *4 required: - action @@ -210459,11 +210531,11 @@ x-webhooks: type: string enum: - edited - changes: *949 - comment: *950 - enterprise: *887 - installation: *888 - organization: *889 + changes: *950 + comment: *951 + enterprise: *888 + installation: *889 + organization: *890 pull_request: type: object properties: @@ -212646,7 +212718,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *890 + repository: *891 sender: *4 required: - action @@ -212727,9 +212799,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 pull_request: title: Simple Pull Request type: object @@ -214924,7 +214996,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *890 + repository: *891 review: description: The review that was affected. type: object @@ -215171,9 +215243,9 @@ x-webhooks: type: string required: - from - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 pull_request: title: Simple Pull Request type: object @@ -217227,8 +217299,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *890 - review: &951 + repository: *891 + review: &952 description: The review that was affected. type: object properties: @@ -217461,12 +217533,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 number: description: The pull request number. type: integer - organization: *889 + organization: *890 pull_request: title: Pull Request type: object @@ -219771,7 +219843,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 requested_reviewer: title: User type: object @@ -219855,12 +219927,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 number: description: The pull request number. type: integer - organization: *889 + organization: *890 pull_request: title: Pull Request type: object @@ -222172,7 +222244,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 requested_team: title: Team description: Groups of organization members that gives permissions @@ -222364,12 +222436,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 number: description: The pull request number. type: integer - organization: *889 + organization: *890 pull_request: title: Pull Request type: object @@ -224676,7 +224748,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 requested_reviewer: title: User type: object @@ -224761,12 +224833,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *887 - installation: *888 + enterprise: *888 + installation: *889 number: description: The pull request number. type: integer - organization: *889 + organization: *890 pull_request: title: Pull Request type: object @@ -227064,7 +227136,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 requested_team: title: Team description: Groups of organization members that gives permissions @@ -227245,9 +227317,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 pull_request: title: Simple Pull Request type: object @@ -229444,8 +229516,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *890 - review: *951 + repository: *891 + review: *952 sender: *4 required: - action @@ -229525,9 +229597,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 pull_request: title: Simple Pull Request type: object @@ -231619,7 +231691,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *890 + repository: *891 sender: *4 thread: type: object @@ -232006,9 +232078,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 pull_request: title: Simple Pull Request type: object @@ -234086,7 +234158,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *890 + repository: *891 sender: *4 thread: type: object @@ -234476,10 +234548,10 @@ x-webhooks: type: string before: type: string - enterprise: *887 - installation: *888 - number: *946 - organization: *889 + enterprise: *888 + installation: *889 + number: *947 + organization: *890 pull_request: title: Pull Request type: object @@ -236772,7 +236844,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 sender: *4 required: - action @@ -236854,11 +236926,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *952 - enterprise: *887 - installation: *888 - number: *946 - organization: *889 + assignee: *953 + enterprise: *888 + installation: *889 + number: *947 + organization: *890 pull_request: title: Pull Request type: object @@ -239163,7 +239235,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 sender: *4 required: - action @@ -239242,11 +239314,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *887 - installation: *888 - label: *910 - number: *946 - organization: *889 + enterprise: *888 + installation: *889 + label: *911 + number: *947 + organization: *890 pull_request: title: Pull Request type: object @@ -241541,7 +241613,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 sender: *4 required: - action @@ -241622,10 +241694,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *887 - installation: *888 - number: *946 - organization: *889 + enterprise: *888 + installation: *889 + number: *947 + organization: *890 pull_request: title: Pull Request type: object @@ -243912,7 +243984,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *890 + repository: *891 sender: *4 required: - action @@ -244112,7 +244184,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *887 + enterprise: *888 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -244204,8 +244276,8 @@ x-webhooks: - url - author - committer - installation: *888 - organization: *889 + installation: *889 + organization: *890 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -244791,9 +244863,9 @@ x-webhooks: type: string enum: - published - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 registry_package: type: object properties: @@ -245239,7 +245311,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *933 + items: *934 summary: type: string tag_name: @@ -245293,7 +245365,7 @@ x-webhooks: - owner - package_version - registry - repository: *890 + repository: *891 sender: *4 required: - action @@ -245371,9 +245443,9 @@ x-webhooks: type: string enum: - updated - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 registry_package: type: object properties: @@ -245681,7 +245753,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *933 + items: *934 summary: type: string tag_name: @@ -245730,7 +245802,7 @@ x-webhooks: - owner - package_version - registry - repository: *890 + repository: *891 sender: *4 required: - action @@ -245807,10 +245879,10 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - organization: *889 - release: &953 + enterprise: *888 + installation: *889 + organization: *890 + release: &954 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -246128,7 +246200,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *890 + repository: *891 sender: *4 required: - action @@ -246205,11 +246277,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - organization: *889 - release: *953 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + release: *954 + repository: *891 sender: *4 required: - action @@ -246326,11 +246398,11 @@ x-webhooks: type: boolean required: - to - enterprise: *887 - installation: *888 - organization: *889 - release: *953 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + release: *954 + repository: *891 sender: *4 required: - action @@ -246408,9 +246480,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -246732,7 +246804,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *890 + repository: *891 sender: *4 required: - action @@ -246808,10 +246880,10 @@ x-webhooks: type: string enum: - published - enterprise: *887 - installation: *888 - organization: *889 - release: &954 + enterprise: *888 + installation: *889 + organization: *890 + release: &955 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -247130,7 +247202,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *890 + repository: *891 sender: *4 required: - action @@ -247206,11 +247278,11 @@ x-webhooks: type: string enum: - released - enterprise: *887 - installation: *888 - organization: *889 - release: *953 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + release: *954 + repository: *891 sender: *4 required: - action @@ -247286,11 +247358,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *887 - installation: *888 - organization: *889 - release: *954 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + release: *955 + repository: *891 sender: *4 required: - action @@ -247366,11 +247438,11 @@ x-webhooks: type: string enum: - published - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - repository_advisory: *787 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + repository_advisory: *788 sender: *4 required: - action @@ -247446,11 +247518,11 @@ x-webhooks: type: string enum: - reported - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - repository_advisory: *787 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + repository_advisory: *788 sender: *4 required: - action @@ -247526,10 +247598,10 @@ x-webhooks: type: string enum: - archived - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -247606,10 +247678,10 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -247687,10 +247759,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -247774,10 +247846,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -247889,10 +247961,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -247964,10 +248036,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 status: type: string @@ -248048,10 +248120,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -248128,10 +248200,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -248225,10 +248297,10 @@ x-webhooks: - name required: - repository - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -248308,10 +248380,10 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 repository_ruleset: *195 sender: *4 required: @@ -248390,10 +248462,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 repository_ruleset: *195 sender: *4 required: @@ -248472,10 +248544,10 @@ x-webhooks: type: string enum: - edited - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 repository_ruleset: *195 changes: type: object @@ -248780,10 +248852,10 @@ x-webhooks: - from required: - owner - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -248861,10 +248933,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -248942,7 +249014,7 @@ x-webhooks: type: string enum: - create - alert: &955 + alert: &956 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -249064,10 +249136,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -249273,10 +249345,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -249354,11 +249426,11 @@ x-webhooks: type: string enum: - reopen - alert: *955 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + alert: *956 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -249557,10 +249629,10 @@ x-webhooks: enum: - fixed - open - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -249638,7 +249710,7 @@ x-webhooks: type: string enum: - assigned - alert: &956 + alert: &957 type: object properties: number: *131 @@ -249781,10 +249853,10 @@ x-webhooks: required: *21 nullable: true assignee: *4 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -249862,11 +249934,11 @@ x-webhooks: type: string enum: - created - alert: *956 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + alert: *957 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -249947,11 +250019,11 @@ x-webhooks: type: string enum: - created - alert: *956 - installation: *888 - location: *957 - organization: *889 - repository: *890 + alert: *957 + installation: *889 + location: *958 + organization: *890 + repository: *891 sender: *4 required: - location @@ -250189,11 +250261,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *956 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + alert: *957 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -250271,11 +250343,11 @@ x-webhooks: type: string enum: - reopened - alert: *956 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + alert: *957 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -250353,11 +250425,11 @@ x-webhooks: type: string enum: - resolved - alert: *956 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + alert: *957 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -250435,12 +250507,12 @@ x-webhooks: type: string enum: - unassigned - alert: *956 + alert: *957 assignee: *4 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -250518,11 +250590,11 @@ x-webhooks: type: string enum: - validated - alert: *956 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + alert: *957 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -250648,10 +250720,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *890 - enterprise: *887 - installation: *888 - organization: *889 + repository: *891 + enterprise: *888 + installation: *889 + organization: *890 sender: *4 required: - action @@ -250729,11 +250801,11 @@ x-webhooks: type: string enum: - published - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - security_advisory: &958 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + security_advisory: &959 description: The details of the security advisory, including summary, description, and severity. type: object @@ -250916,11 +250988,11 @@ x-webhooks: type: string enum: - updated - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 - security_advisory: *958 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 + security_advisory: *959 sender: *4 required: - action @@ -250993,10 +251065,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -251181,9 +251253,9 @@ x-webhooks: type: object properties: security_and_analysis: *450 - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 repository: *497 sender: *4 required: @@ -251262,12 +251334,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 - sponsorship: &959 + sponsorship: &960 type: object properties: created_at: @@ -251568,12 +251640,12 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 - sponsorship: *959 + sponsorship: *960 required: - action - sponsorship @@ -251661,12 +251733,12 @@ x-webhooks: type: string required: - from - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 - sponsorship: *959 + sponsorship: *960 required: - action - changes @@ -251743,17 +251815,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &960 + effective_date: &961 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: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 - sponsorship: *959 + sponsorship: *960 required: - action - sponsorship @@ -251827,7 +251899,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &961 + changes: &962 type: object properties: tier: @@ -251871,13 +251943,13 @@ x-webhooks: - from required: - tier - effective_date: *960 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + effective_date: *961 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 - sponsorship: *959 + sponsorship: *960 required: - action - changes @@ -251954,13 +252026,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *961 - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + changes: *962 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 - sponsorship: *959 + sponsorship: *960 required: - action - changes @@ -252034,10 +252106,10 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -252120,10 +252192,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -252543,15 +252615,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *887 + enterprise: *888 id: description: The unique identifier of the status. type: integer - installation: *888 + installation: *889 name: type: string - organization: *889 - repository: *890 + organization: *890 + repository: *891 sender: *4 sha: description: The Commit SHA. @@ -252666,9 +252738,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *229 - installation: *888 - organization: *889 - repository: *890 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -252757,9 +252829,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *229 - installation: *888 - organization: *889 - repository: *890 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -252848,9 +252920,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *229 - installation: *888 - organization: *889 - repository: *890 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -252939,9 +253011,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *229 - installation: *888 - organization: *889 - repository: *890 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -253017,12 +253089,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 - team: &962 + team: &963 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -253245,9 +253317,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 repository: title: Repository description: A git repository @@ -253705,7 +253777,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *962 + team: *963 required: - action - team @@ -253781,9 +253853,9 @@ x-webhooks: type: string enum: - created - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 repository: title: Repository description: A git repository @@ -254241,7 +254313,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *962 + team: *963 required: - action - team @@ -254318,9 +254390,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 repository: title: Repository description: A git repository @@ -254778,7 +254850,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *962 + team: *963 required: - action - team @@ -254922,9 +254994,9 @@ x-webhooks: - from required: - permissions - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 repository: title: Repository description: A git repository @@ -255382,7 +255454,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *962 + team: *963 required: - action - changes @@ -255460,9 +255532,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *887 - installation: *888 - organization: *889 + enterprise: *888 + installation: *889 + organization: *890 repository: title: Repository description: A git repository @@ -255920,7 +255992,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *962 + team: *963 required: - action - team @@ -255996,10 +256068,10 @@ x-webhooks: type: string enum: - started - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 required: - action @@ -256072,16 +256144,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *887 + enterprise: *888 inputs: type: object nullable: true additionalProperties: true - installation: *888 - organization: *889 + installation: *889 + organization: *890 ref: type: string - repository: *890 + repository: *891 sender: *4 workflow: type: string @@ -256163,10 +256235,10 @@ x-webhooks: type: string enum: - completed - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 workflow_job: allOf: @@ -256482,10 +256554,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 workflow_job: allOf: @@ -256824,10 +256896,10 @@ x-webhooks: type: string enum: - queued - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 workflow_job: type: object @@ -257041,10 +257113,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 workflow_job: type: object @@ -257260,12 +257332,12 @@ x-webhooks: type: string enum: - completed - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 - workflow: *906 + workflow: *907 workflow_run: title: Workflow Run type: object @@ -258264,12 +258336,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + enterprise: *888 + installation: *889 + organization: *890 + repository: *891 sender: *4 - workflow: *906 + workflow: *907 workflow_run: title: Workflow Run type: object @@ -259253,12 +259325,12 @@ x-webhooks: type: string enum: - requested - enterprise: *887 - installation: *888 - organization: *889 - repository: *890 + {"code":"deadline_exceeded","msg":"operation timed out"}