diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index c9da995de..f55500609 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -4275,7 +4275,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" ], @@ -35668,6 +35668,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -59062,6 +59065,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", @@ -71486,6 +71542,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -124666,6 +124725,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -145449,6 +145518,27 @@ "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" + ], + "examples": [ + "sha1" + ] + } + }, + "required": [ + "hash_algorithm" + ] + }, "hook-response": { "title": "Hook Response", "type": "object", @@ -310828,6 +310918,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -310853,6 +310944,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -310967,6 +311059,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -339318,6 +339411,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-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index 7450608dd..22b26d5f7 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -3278,6 +3278,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. @@ -26314,6 +26317,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: @@ -43574,6 +43578,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 @@ -52394,6 +52431,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: @@ -90759,6 +90797,14 @@ 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. + type: + - string + - 'null' + examples: + - 2.323.0 required: - id - name @@ -106137,6 +106183,21 @@ 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 + examples: + - sha1 + required: + - hash_algorithm hook-response: title: Hook Response type: object @@ -229640,6 +229701,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -229656,6 +229718,7 @@ components: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -229729,6 +229792,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -254088,6 +254152,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-next/api.github.com/api.github.com.2026-03-10.json b/descriptions-next/api.github.com/api.github.com.2026-03-10.json index 9bc668a22..a21601d4d 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.json @@ -4275,7 +4275,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" ], @@ -35628,6 +35628,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -58987,6 +58990,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", @@ -71397,6 +71453,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -124102,6 +124161,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -144807,6 +144876,27 @@ "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" + ], + "examples": [ + "sha1" + ] + } + }, + "required": [ + "hash_algorithm" + ] + }, "hook-response": { "title": "Hook Response", "type": "object", @@ -309987,6 +310077,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -310012,6 +310103,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -310126,6 +310218,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -338378,6 +338471,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-next/api.github.com/api.github.com.2026-03-10.yaml b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml index 297c4e971..9e9bb4c4e 100644 --- a/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions-next/api.github.com/api.github.com.2026-03-10.yaml @@ -3278,6 +3278,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. @@ -26284,6 +26287,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: @@ -43513,6 +43517,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 @@ -52319,6 +52356,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: @@ -90340,6 +90378,14 @@ 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. + type: + - string + - 'null' + examples: + - 2.323.0 required: - id - name @@ -105664,6 +105710,21 @@ 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 + examples: + - sha1 + required: + - hash_algorithm hook-response: title: Hook Response type: object @@ -228945,6 +229006,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -228961,6 +229023,7 @@ components: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -229034,6 +229097,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -253300,6 +253364,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-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index 917c63606..def14254a 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -4289,7 +4289,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" ], @@ -35860,6 +35860,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -59331,6 +59334,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", @@ -71793,6 +71849,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -125418,6 +125477,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -146485,6 +146554,27 @@ "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" + ], + "examples": [ + "sha1" + ] + } + }, + "required": [ + "hash_algorithm" + ] + }, "hook-response": { "title": "Hook Response", "type": "object", @@ -312764,6 +312854,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -312789,6 +312880,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -312903,6 +312995,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -341430,6 +341523,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-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index f80ec6ee4..fec3a33fc 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -3286,6 +3286,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. @@ -26416,6 +26419,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: @@ -43742,6 +43746,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 @@ -52582,6 +52619,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: @@ -91249,6 +91287,14 @@ 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. + type: + - string + - 'null' + examples: + - 2.323.0 required: - id - name @@ -106858,6 +106904,21 @@ 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 + examples: + - sha1 + required: + - hash_algorithm hook-response: title: Hook Response type: object @@ -230890,6 +230951,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -230906,6 +230968,7 @@ components: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -230979,6 +231042,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -255426,6 +255490,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-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index e8fa6fa7b..acac0769c 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -10639,7 +10639,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" ], @@ -102771,6 +102771,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -102797,6 +102807,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -102822,6 +102833,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -103191,6 +103203,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -103217,6 +103239,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -103242,6 +103265,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -103563,6 +103587,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -105965,6 +105999,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -105985,6 +106029,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -247601,6 +247646,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).\"", @@ -285647,6 +285707,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -285673,6 +285743,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -285698,6 +285769,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -286037,6 +286109,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -288466,6 +288548,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -288486,6 +288578,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -437816,6 +437909,135 @@ } } }, + "/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" + ], + "examples": [ + "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", @@ -636578,6 +636800,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-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index c3f318cdb..b4a076730 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -1080,7 +1080,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &649 + - &650 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -5521,6 +5521,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. @@ -14520,7 +14523,7 @@ paths: properties: action: type: string - discussion: &740 + discussion: &741 title: Discussion description: A Discussion in a repository. type: object @@ -15306,7 +15309,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &660 + sub_issues_summary: &661 title: Sub-issues Summary type: object properties: @@ -15417,7 +15420,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &661 + issue_dependencies_summary: &662 title: Issue Dependencies Summary type: object properties: @@ -16902,7 +16905,7 @@ paths: url: type: string format: uri - user: &667 + user: &668 title: Public User description: Public User type: object @@ -22273,7 +22276,7 @@ paths: required: false schema: type: string - - &717 + - &718 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -22419,7 +22422,7 @@ paths: parameters: - *74 - *116 - - &718 + - &719 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 @@ -22531,7 +22534,7 @@ paths: - *116 - *118 - *117 - - &719 + - &720 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22539,7 +22542,7 @@ paths: schema: type: string - *119 - - &720 + - &721 name: sku description: The SKU to query for usage. in: query @@ -26801,6 +26804,15 @@ 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. + type: + - string + - 'null' + examples: + - 2.323.0 required: - id - name @@ -26819,6 +26831,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -26835,6 +26848,7 @@ paths: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -27334,6 +27348,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -30209,12 +30224,12 @@ paths: required: - subject_digests examples: - default: &698 + default: &699 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &699 + withPredicateType: &700 value: subject_digests: - sha256:abc123 @@ -30273,7 +30288,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &700 + default: &701 value: attestations_subject_digests: - sha256:abc: @@ -42945,7 +42960,7 @@ paths: parameters: - *74 - *255 - - &681 + - &682 name: repo_name description: repo_name parameter in: path @@ -44006,7 +44021,7 @@ paths: - nuget - container - *74 - - &682 + - &683 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -44047,7 +44062,7 @@ paths: default: *261 '403': *27 '401': *23 - '400': &684 + '400': &685 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -46178,7 +46193,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &768 + - &769 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -47076,7 +47091,7 @@ paths: - updated_at - project_url examples: - default: &704 + default: &705 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47253,7 +47268,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &705 + items: &706 type: object properties: name: @@ -47290,7 +47305,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &706 + iteration_configuration: &707 type: object description: The configuration for iteration fields. properties: @@ -47340,7 +47355,7 @@ paths: value: name: Due date data_type: date - single_select_field: &707 + single_select_field: &708 summary: Create a single select field value: name: Priority @@ -47367,7 +47382,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &708 + iteration_field: &709 summary: Create an iteration field value: name: Sprint @@ -47393,7 +47408,7 @@ paths: application/json: schema: *281 examples: - text_field: &709 + text_field: &710 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -47402,7 +47417,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: &710 + number_field: &711 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -47411,7 +47426,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: &711 + date_field: &712 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -47420,7 +47435,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: &712 + single_select_field: &713 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47454,7 +47469,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &713 + iteration_field: &714 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -47500,7 +47515,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *278 - - &714 + - &715 name: field_id description: The unique identifier of the field. in: path @@ -47515,7 +47530,7 @@ paths: application/json: schema: *281 examples: - default: &715 + default: &716 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48726,7 +48741,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &695 + schema: &696 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -48909,7 +48924,7 @@ paths: parameters: - *278 - *74 - - &716 + - &717 name: view_number description: The number that identifies the project view. in: path @@ -52287,6 +52302,22 @@ paths: - bypass - all default: all + - &604 + 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: @@ -52294,7 +52325,7 @@ paths: description: Response content: application/json: - schema: &604 + schema: &605 title: Rule Suites description: Response type: array @@ -52350,7 +52381,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &605 + default: &606 value: - id: 21 actor_id: 12 @@ -52394,7 +52425,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *74 - - &606 + - &607 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -52410,7 +52441,7 @@ paths: description: Response content: application/json: - schema: &607 + schema: &608 title: Rule Suite description: Response type: object @@ -52517,7 +52548,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &608 + default: &609 value: id: 21 actor_id: 12 @@ -52764,7 +52795,7 @@ paths: type: string format: date-time examples: - default: &610 + default: &611 value: - version_id: 3 actor: @@ -52817,7 +52848,7 @@ paths: description: Response content: application/json: - schema: &611 + schema: &612 allOf: - *324 - type: object @@ -52889,7 +52920,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *74 - - &612 + - &613 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -52900,7 +52931,7 @@ paths: enum: - open - resolved - - &613 + - &614 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -52910,7 +52941,7 @@ paths: required: false schema: type: string - - &614 + - &615 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -52921,7 +52952,7 @@ paths: required: false schema: type: string - - &615 + - &616 name: exclude_providers in: query description: |- @@ -52932,7 +52963,7 @@ paths: required: false schema: type: string - - &616 + - &617 name: providers in: query description: |- @@ -52943,7 +52974,7 @@ paths: required: false schema: type: string - - &617 + - &618 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -52952,7 +52983,7 @@ paths: required: false schema: type: string - - &618 + - &619 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -52971,7 +53002,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &619 + - &620 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. @@ -52986,7 +53017,7 @@ paths: - *60 - *19 - *17 - - &620 + - &621 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 @@ -52996,7 +53027,7 @@ paths: required: false schema: type: string - - &621 + - &622 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 @@ -53006,7 +53037,7 @@ paths: required: false schema: type: string - - &622 + - &623 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -53015,7 +53046,7 @@ paths: required: false schema: type: string - - &623 + - &624 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -53024,7 +53055,7 @@ paths: schema: type: boolean default: false - - &624 + - &625 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -53033,7 +53064,7 @@ paths: schema: type: boolean default: false - - &625 + - &626 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -53042,7 +53073,7 @@ paths: schema: type: boolean default: false - - &626 + - &627 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -53076,14 +53107,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &627 + state: &628 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: &628 + resolution: &629 type: - string - 'null' @@ -53202,14 +53233,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &629 + - &630 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &631 + - &632 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -53273,7 +53304,7 @@ paths: - blob_url - commit_sha - commit_url - - &632 + - &633 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. @@ -53334,7 +53365,7 @@ paths: - page_url - commit_sha - commit_url - - &633 + - &634 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -53356,7 +53387,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &634 + - &635 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -53378,7 +53409,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &635 + - &636 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -53400,7 +53431,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &636 + - &637 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -53415,7 +53446,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &637 + - &638 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -53430,7 +53461,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &638 + - &639 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -53445,7 +53476,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &639 + - &640 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. @@ -53467,7 +53498,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &640 + - &641 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. @@ -53489,7 +53520,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &641 + - &642 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. @@ -53511,7 +53542,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &642 + - &643 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. @@ -53533,7 +53564,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &643 + - &644 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 @@ -54054,7 +54085,7 @@ paths: application/json: schema: type: array - items: &647 + items: &648 description: A repository security advisory. type: object properties: @@ -54373,7 +54404,7 @@ paths: - private_fork additionalProperties: false examples: - default: &648 + default: &649 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -56448,7 +56479,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &663 + response-if-user-is-a-team-maintainer: &664 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -56513,7 +56544,7 @@ paths: application/json: schema: *337 examples: - response-if-users-membership-with-team-is-now-pending: &664 + response-if-users-membership-with-team-is-now-pending: &665 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -56627,7 +56658,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &665 + schema: &666 title: Team Repository description: A team's access to a repository. type: object @@ -57356,7 +57387,7 @@ paths: type: array items: *198 examples: - response-if-child-teams-exist: &666 + response-if-child-teams-exist: &667 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -69460,7 +69491,7 @@ paths: check. type: array items: *85 - deployment: &729 + deployment: &730 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -74941,7 +74972,7 @@ paths: type: array items: *458 examples: - default: &672 + default: &673 value: total_count: 2 machines: @@ -78118,7 +78149,7 @@ paths: application/json: schema: type: array - items: &652 + items: &653 title: Status description: The status of a commit. type: object @@ -79744,7 +79775,7 @@ paths: items: type: object properties: - placeholder_id: &644 + placeholder_id: &645 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -85802,6 +85833,50 @@ 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: + - *338 + - *339 + 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 + examples: + - sha1 + required: + - hash_algorithm + examples: + default: + value: + hash_algorithm: sha1 + '403': *27 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/hooks": get: summary: List repository webhooks @@ -85888,7 +85963,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &760 + last_response: &761 title: Hook Response type: object properties: @@ -86957,7 +87032,7 @@ paths: parameters: - *338 - *339 - - &693 + - &694 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -87391,7 +87466,7 @@ paths: type: array items: *532 examples: - default: &686 + default: &687 value: - id: 1 repository: @@ -101378,7 +101453,7 @@ paths: application/json: schema: *321 examples: - default: &609 + default: &610 value: id: 42 name: super cool ruleset @@ -101432,6 +101507,7 @@ paths: - *601 - *602 - *603 + - *604 - *17 - *19 responses: @@ -101439,9 +101515,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: *605 + default: *606 '404': *6 '500': *53 x-github: @@ -101464,15 +101540,15 @@ paths: parameters: - *338 - *339 - - *606 + - *607 responses: '200': description: Response content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '404': *6 '500': *53 x-github: @@ -101523,7 +101599,7 @@ paths: application/json: schema: *321 examples: - default: *609 + default: *610 '404': *6 '500': *53 put: @@ -101606,7 +101682,7 @@ paths: application/json: schema: *321 examples: - default: *609 + default: *610 '404': *6 '422': *15 '500': *53 @@ -101668,7 +101744,7 @@ paths: type: array items: *324 examples: - default: *610 + default: *611 '404': *6 '500': *53 x-github: @@ -101706,7 +101782,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -101763,7 +101839,6 @@ paths: parameters: - *338 - *339 - - *612 - *613 - *614 - *615 @@ -101771,16 +101846,17 @@ paths: - *617 - *618 - *619 + - *620 - *60 - *19 - *17 - - *620 - *621 - *622 - *623 - *624 - *625 - *626 + - *627 responses: '200': description: Response @@ -101788,7 +101864,7 @@ paths: application/json: schema: type: array - items: &630 + items: &631 type: object properties: number: *178 @@ -101804,8 +101880,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *627 - resolution: *628 + state: *628 + resolution: *629 resolved_at: type: - string @@ -101911,7 +101987,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *629 + - *630 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -102073,13 +102149,13 @@ paths: - *338 - *339 - *434 - - *625 + - *626 responses: '200': description: Response content: application/json: - schema: *630 + schema: *631 examples: default: value: @@ -102143,8 +102219,8 @@ paths: schema: type: object properties: - state: *627 - resolution: *628 + state: *628 + resolution: *629 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -102192,7 +102268,7 @@ paths: description: Response content: application/json: - schema: *630 + schema: *631 examples: default: value: @@ -102304,7 +102380,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &780 + items: &781 type: object properties: type: @@ -102331,7 +102407,6 @@ paths: - commit details: oneOf: - - *631 - *632 - *633 - *634 @@ -102344,6 +102419,7 @@ paths: - *641 - *642 - *643 + - *644 examples: default: value: @@ -102438,14 +102514,14 @@ paths: schema: type: object properties: - reason: &645 + reason: &646 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *644 + placeholder_id: *645 required: - reason - placeholder_id @@ -102462,7 +102538,7 @@ paths: schema: type: object properties: - reason: *645 + reason: *646 expire_at: type: - string @@ -102525,7 +102601,7 @@ paths: properties: incremental_scans: type: array - items: &646 + items: &647 description: Information on a single scan performed by secret scanning on the repository type: object @@ -102558,15 +102634,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *646 + items: *647 backfill_scans: type: array - items: *646 + items: *647 custom_pattern_backfill_scans: type: array items: allOf: - - *646 + - *647 - type: object properties: pattern_name: @@ -102579,7 +102655,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *646 + items: *647 examples: default: value: @@ -102689,9 +102765,9 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: - default: *648 + default: *649 '400': *14 '404': *6 x-github: @@ -102885,9 +102961,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: &650 + default: &651 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -103234,7 +103310,7 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: default: value: @@ -103383,15 +103459,15 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '200': description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: *650 + default: *651 '403': *27 '404': *6 x-github: @@ -103417,7 +103493,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 requestBody: required: true content: @@ -103588,10 +103664,10 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: *650 - add_credit: *650 + default: *651 + add_credit: *651 '403': *27 '404': *6 '422': @@ -103631,7 +103707,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '202': *37 '400': *14 @@ -103660,7 +103736,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '202': description: Response @@ -103801,7 +103877,7 @@ paths: application/json: schema: type: array - items: &651 + items: &652 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -104174,7 +104250,7 @@ paths: application/json: schema: type: array - items: *651 + items: *652 examples: default: value: @@ -104264,7 +104340,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -104358,7 +104434,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &653 + schema: &654 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -104458,7 +104534,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: default: value: @@ -104668,7 +104744,7 @@ paths: description: Response content: application/json: - schema: &654 + schema: &655 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -104680,7 +104756,7 @@ paths: required: - names examples: - default: &655 + default: &656 value: names: - octocat @@ -104735,9 +104811,9 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: - default: *655 + default: *656 '404': *6 '422': *7 x-github: @@ -104760,7 +104836,7 @@ paths: parameters: - *338 - *339 - - &656 + - &657 name: per description: The time frame to display results for. in: query @@ -104791,7 +104867,7 @@ paths: - 128 clones: type: array - items: &657 + items: &658 title: Traffic type: object properties: @@ -105039,7 +105115,7 @@ paths: parameters: - *338 - *339 - - *656 + - *657 responses: '200': description: Response @@ -105060,7 +105136,7 @@ paths: - 3782 views: type: array - items: *657 + items: *658 required: - uniques - count @@ -105833,7 +105909,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &658 + text_matches: &659 title: Search Result Text Matches type: array items: @@ -105996,7 +106072,7 @@ paths: enum: - author-date - committer-date - - &659 + - &660 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 @@ -106116,7 +106192,7 @@ paths: type: number node_id: type: string - text_matches: *658 + text_matches: *659 required: - sha - node_id @@ -106308,7 +106384,7 @@ paths: - interactions - created - updated - - *659 + - *660 - *17 - *19 - name: advanced_search @@ -106422,8 +106498,8 @@ paths: type: - string - 'null' - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -106454,7 +106530,7 @@ paths: - string - 'null' format: date-time - text_matches: *658 + text_matches: *659 pull_request: type: object properties: @@ -106730,7 +106806,7 @@ paths: enum: - created - updated - - *659 + - *660 - *17 - *19 responses: @@ -106775,7 +106851,7 @@ paths: - 'null' score: type: number - text_matches: *658 + text_matches: *659 required: - id - node_id @@ -106860,7 +106936,7 @@ paths: - forks - help-wanted-issues - updated - - *659 + - *660 - *17 - *19 responses: @@ -107106,7 +107182,7 @@ paths: - admin - pull - push - text_matches: *658 + text_matches: *659 temp_clone_token: type: string allow_merge_commit: @@ -107414,7 +107490,7 @@ paths: - string - 'null' format: uri - text_matches: *658 + text_matches: *659 related: type: - array @@ -107607,7 +107683,7 @@ paths: - followers - repositories - joined - - *659 + - *660 - *17 - *19 responses: @@ -107717,7 +107793,7 @@ paths: type: - boolean - 'null' - text_matches: *658 + text_matches: *659 blog: type: - string @@ -107799,7 +107875,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &662 + - &663 name: team_id description: The unique identifier of the team. in: path @@ -107840,7 +107916,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *662 + - *663 requestBody: required: true content: @@ -107941,7 +108017,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *662 + - *663 responses: '204': description: Response @@ -107970,7 +108046,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *662 + - *663 - *17 - *19 responses: @@ -108008,7 +108084,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *662 + - *663 - name: role description: Filters members returned by their role in the team. in: query @@ -108059,7 +108135,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *662 + - *663 - *70 responses: '204': @@ -108096,7 +108172,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *662 + - *663 - *70 responses: '204': @@ -108136,7 +108212,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *662 + - *663 - *70 responses: '204': @@ -108173,7 +108249,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *662 + - *663 - *70 responses: '200': @@ -108182,7 +108258,7 @@ paths: application/json: schema: *337 examples: - response-if-user-is-a-team-maintainer: *663 + response-if-user-is-a-team-maintainer: *664 '404': *6 x-github: githubCloudOnly: false @@ -108215,7 +108291,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *662 + - *663 - *70 requestBody: required: false @@ -108243,7 +108319,7 @@ paths: application/json: schema: *337 examples: - response-if-users-membership-with-team-is-now-pending: *664 + response-if-users-membership-with-team-is-now-pending: *665 '403': description: Forbidden if team synchronization is set up '422': @@ -108277,7 +108353,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *662 + - *663 - *70 responses: '204': @@ -108305,7 +108381,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *662 + - *663 - *17 - *19 responses: @@ -108347,7 +108423,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *662 + - *663 - *338 - *339 responses: @@ -108355,7 +108431,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *665 + schema: *666 examples: alternative-response-with-extra-repository-information: value: @@ -108506,7 +108582,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *662 + - *663 - *338 - *339 requestBody: @@ -108558,7 +108634,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *662 + - *663 - *338 - *339 responses: @@ -108585,7 +108661,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *662 + - *663 - *17 - *19 responses: @@ -108597,7 +108673,7 @@ paths: type: array items: *198 examples: - response-if-child-teams-exist: *666 + response-if-child-teams-exist: *667 headers: Link: *66 '404': *6 @@ -108630,7 +108706,7 @@ paths: application/json: schema: oneOf: - - &668 + - &669 title: Private User description: Private User type: object @@ -108880,7 +108956,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *667 + - *668 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -109040,7 +109116,7 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: default: value: @@ -109438,7 +109514,7 @@ paths: type: integer secrets: type: array - items: &669 + items: &670 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -109558,7 +109634,7 @@ paths: description: Response content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -109971,7 +110047,7 @@ paths: description: Response content: application/json: - schema: &670 + schema: &671 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -110024,7 +110100,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &671 + default: &672 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -110069,9 +110145,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: *671 + default: *672 '404': *6 x-github: githubCloudOnly: false @@ -110110,7 +110186,7 @@ paths: type: array items: *458 examples: - default: *672 + default: *673 '304': *35 '500': *53 '401': *23 @@ -111076,7 +111152,7 @@ paths: type: array items: *260 examples: - default: &683 + default: &684 value: - id: 197 name: hello_docker @@ -111177,7 +111253,7 @@ paths: application/json: schema: type: array - items: &673 + items: &674 title: Email description: Email type: object @@ -111247,9 +111323,9 @@ paths: application/json: schema: type: array - items: *673 + items: *674 examples: - default: &685 + default: &686 value: - email: octocat@github.com verified: true @@ -111326,7 +111402,7 @@ paths: application/json: schema: type: array - items: *673 + items: *674 examples: default: value: @@ -111584,7 +111660,7 @@ paths: application/json: schema: type: array - items: &674 + items: &675 title: GPG Key description: A unique encryption key type: object @@ -111729,7 +111805,7 @@ paths: - subkeys - revoked examples: - default: &702 + default: &703 value: - id: 3 name: Octocat's GPG Key @@ -111814,9 +111890,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: &675 + default: &676 value: id: 3 name: Octocat's GPG Key @@ -111873,7 +111949,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &676 + - &677 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -111885,9 +111961,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '404': *6 '304': *35 '403': *27 @@ -111910,7 +111986,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *676 + - *677 responses: '204': description: Response @@ -112377,7 +112453,7 @@ paths: application/json: schema: type: array - items: &677 + items: &678 title: Key description: Key type: object @@ -112480,9 +112556,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: &678 + default: &679 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -112521,9 +112597,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *678 + default: *679 '404': *6 '304': *35 '403': *27 @@ -112579,7 +112655,7 @@ paths: application/json: schema: type: array - items: &679 + items: &680 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -112658,7 +112734,7 @@ paths: - account - plan examples: - default: &680 + default: &681 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -112720,9 +112796,9 @@ paths: application/json: schema: type: array - items: *679 + items: *680 examples: - default: *680 + default: *681 headers: Link: *66 '304': *35 @@ -113740,7 +113816,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *255 - - *681 + - *682 responses: '204': description: Response @@ -113855,7 +113931,7 @@ paths: - docker - nuget - container - - *682 + - *683 - *19 - *17 responses: @@ -113867,8 +113943,8 @@ paths: type: array items: *260 examples: - default: *683 - '400': *684 + default: *684 + '400': *685 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -113897,7 +113973,7 @@ paths: application/json: schema: *260 examples: - default: &703 + default: &704 value: id: 40201 name: octo-name @@ -114259,9 +114335,9 @@ paths: application/json: schema: type: array - items: *673 + items: *674 examples: - default: *685 + default: *686 headers: Link: *66 '304': *35 @@ -114374,7 +114450,7 @@ paths: type: array items: *78 examples: - default: &692 + default: &693 summary: Default response value: - id: 1296269 @@ -114734,7 +114810,7 @@ paths: type: array items: *532 examples: - default: *686 + default: *687 headers: Link: *66 '304': *35 @@ -114813,7 +114889,7 @@ paths: application/json: schema: type: array - items: &687 + items: &688 title: Social account description: Social media account type: object @@ -114830,7 +114906,7 @@ paths: - provider - url examples: - default: &688 + default: &689 value: - provider: twitter url: https://twitter.com/github @@ -114893,9 +114969,9 @@ paths: application/json: schema: type: array - items: *687 + items: *688 examples: - default: *688 + default: *689 '422': *15 '304': *35 '404': *6 @@ -114983,7 +115059,7 @@ paths: application/json: schema: type: array - items: &689 + items: &690 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -115003,7 +115079,7 @@ paths: - title - created_at examples: - default: &721 + default: &722 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -115068,9 +115144,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: &690 + default: &691 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -115100,7 +115176,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: - - &691 + - &692 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -115112,9 +115188,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: *690 + default: *691 '404': *6 '304': *35 '403': *27 @@ -115137,7 +115213,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: - - *691 + - *692 responses: '204': description: Response @@ -115166,7 +115242,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &722 + - &723 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 @@ -115191,11 +115267,11 @@ paths: type: array items: *78 examples: - default-response: *692 + default-response: *693 application/vnd.github.v3.star+json: schema: type: array - items: &723 + items: &724 title: Starred Repository description: Starred Repository type: object @@ -115564,10 +115640,10 @@ paths: application/json: schema: oneOf: + - *669 - *668 - - *667 examples: - default-response: &696 + default-response: &697 summary: Default response value: login: octocat @@ -115602,7 +115678,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &697 + response-with-git-hub-plan-information: &698 summary: Response with GitHub plan information value: login: octocat @@ -115659,7 +115735,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &694 + - &695 name: user_id description: The unique identifier of the user. in: path @@ -115725,7 +115801,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *693 + - *694 - *17 responses: '200': @@ -115760,7 +115836,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *694 + - *695 - *278 requestBody: required: true @@ -115835,7 +115911,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *695 + schema: *696 examples: table_view: summary: Response for creating a table view @@ -115887,11 +115963,11 @@ paths: application/json: schema: oneOf: + - *669 - *668 - - *667 examples: - default-response: *696 - response-with-git-hub-plan-information: *697 + default-response: *697 + response-with-git-hub-plan-information: *698 '404': *6 x-github: githubCloudOnly: false @@ -115941,8 +116017,8 @@ paths: required: - subject_digests examples: - default: *698 - withPredicateType: *699 + default: *699 + withPredicateType: *700 responses: '200': description: Response @@ -115996,7 +116072,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *700 + default: *701 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116485,7 +116561,7 @@ paths: application/json: schema: *194 examples: - default: &701 + default: &702 summary: Example response for a user copilot space value: id: 42 @@ -116586,7 +116662,7 @@ paths: application/json: schema: *194 examples: - default: *701 + default: *702 '403': *27 '404': *6 x-github: @@ -116712,7 +116788,7 @@ paths: application/json: schema: *194 examples: - default: *701 + default: *702 '403': *27 '404': *6 '422': *15 @@ -117480,7 +117556,7 @@ paths: type: array items: *260 examples: - default: *683 + default: *684 '403': *27 '401': *23 x-github: @@ -117864,9 +117940,9 @@ paths: application/json: schema: type: array - items: *674 + items: *675 examples: - default: *702 + default: *703 headers: Link: *66 x-github: @@ -118095,7 +118171,7 @@ paths: - docker - nuget - container - - *682 + - *683 - *70 - *19 - *17 @@ -118108,10 +118184,10 @@ paths: type: array items: *260 examples: - default: *683 + default: *684 '403': *27 '401': *23 - '400': *684 + '400': *685 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118141,7 +118217,7 @@ paths: application/json: schema: *260 examples: - default: *703 + default: *704 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118490,7 +118566,7 @@ paths: type: array items: *281 examples: - default: *704 + default: *705 headers: Link: *66 '304': *35 @@ -118550,7 +118626,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *705 + items: *706 required: - name - data_type @@ -118566,7 +118642,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *706 + iteration_configuration: *707 required: - name - data_type @@ -118588,8 +118664,8 @@ paths: value: name: Due date data_type: date - single_select_field: *707 - iteration_field: *708 + single_select_field: *708 + iteration_field: *709 responses: '201': description: Response @@ -118597,11 +118673,11 @@ paths: application/json: schema: *281 examples: - text_field: *709 - number_field: *710 - date_field: *711 - single_select_field: *712 - iteration_field: *713 + text_field: *710 + number_field: *711 + date_field: *712 + single_select_field: *713 + iteration_field: *714 '304': *35 '403': *27 '401': *23 @@ -118623,7 +118699,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *278 - - *714 + - *715 - *70 responses: '200': @@ -118632,7 +118708,7 @@ paths: application/json: schema: *281 examples: - default: *715 + default: *716 headers: Link: *66 '304': *35 @@ -118989,7 +119065,7 @@ paths: parameters: - *278 - *70 - - *716 + - *717 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -119264,7 +119340,7 @@ paths: - *116 - *118 - *117 - - *717 + - *718 - *119 responses: '200': @@ -119395,7 +119471,7 @@ paths: parameters: - *70 - *116 - - *718 + - *719 - *117 responses: '200': @@ -119494,9 +119570,9 @@ paths: - *116 - *118 - *117 - - *719 - - *119 - *720 + - *119 + - *721 responses: '200': description: Response when getting a billing usage summary @@ -119630,9 +119706,9 @@ paths: application/json: schema: type: array - items: *687 + items: *688 examples: - default: *688 + default: *689 headers: Link: *66 x-github: @@ -119662,9 +119738,9 @@ paths: application/json: schema: type: array - items: *689 + items: *690 examples: - default: *721 + default: *722 headers: Link: *66 x-github: @@ -119689,7 +119765,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *70 - - *722 + - *723 - *60 - *17 - *19 @@ -119701,11 +119777,11 @@ paths: schema: anyOf: - type: array - items: *723 + items: *724 - type: array items: *78 examples: - default-response: *692 + default-response: *693 headers: Link: *66 x-github: @@ -119865,7 +119941,7 @@ webhooks: type: string enum: - disabled - enterprise: &724 + enterprise: &725 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -119934,7 +120010,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &725 + installation: &726 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -119955,7 +120031,7 @@ webhooks: required: - id - node_id - organization: &726 + organization: &727 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -120028,7 +120104,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &727 + repository: &728 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -120954,10 +121030,10 @@ webhooks: type: string enum: - enabled - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -121033,11 +121109,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: &728 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + rule: &729 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) @@ -121260,11 +121336,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: *728 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + rule: *729 sender: *4 required: - action @@ -121452,11 +121528,11 @@ webhooks: - everyone required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: *728 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + rule: *729 sender: *4 required: - action @@ -121540,7 +121616,7 @@ webhooks: type: string enum: - completed - check_run: &730 + check_run: &731 title: CheckRun description: A check performed on the code of a given code change type: object @@ -121650,7 +121726,7 @@ webhooks: - examples: - neutral - deployment: *729 + deployment: *730 details_url: type: string examples: @@ -121748,10 +121824,10 @@ webhooks: - output - app - pull_requests - installation: *725 - enterprise: *724 - organization: *726 - repository: *727 + installation: *726 + enterprise: *725 + organization: *727 + repository: *728 sender: *4 required: - check_run @@ -122142,11 +122218,11 @@ webhooks: type: string enum: - created - check_run: *730 - installation: *725 - enterprise: *724 - organization: *726 - repository: *727 + check_run: *731 + installation: *726 + enterprise: *725 + organization: *727 + repository: *728 sender: *4 required: - check_run @@ -122540,11 +122616,11 @@ webhooks: type: string enum: - requested_action - check_run: *730 - installation: *725 - enterprise: *724 - organization: *726 - repository: *727 + check_run: *731 + installation: *726 + enterprise: *725 + organization: *727 + repository: *728 requested_action: description: The action requested by the user. type: object @@ -122947,11 +123023,11 @@ webhooks: type: string enum: - rerequested - check_run: *730 - installation: *725 - enterprise: *724 - organization: *726 - repository: *727 + check_run: *731 + installation: *726 + enterprise: *725 + organization: *727 + repository: *728 sender: *4 required: - check_run @@ -123936,10 +124012,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -124648,10 +124724,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -125354,10 +125430,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -125678,20 +125754,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &731 + commit_oid: &732 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: *724 - installation: *725 - organization: *726 - ref: &732 + enterprise: *725 + installation: *726 + organization: *727 + ref: &733 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: *727 + repository: *728 sender: *4 required: - action @@ -126099,12 +126175,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *731 - enterprise: *724 - installation: *725 - organization: *726 - ref: *732 - repository: *727 + commit_oid: *732 + enterprise: *725 + installation: *726 + organization: *727 + ref: *733 + repository: *728 sender: *4 required: - action @@ -126387,12 +126463,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *731 - enterprise: *724 - installation: *725 - organization: *726 - ref: *732 - repository: *727 + commit_oid: *732 + enterprise: *725 + installation: *726 + organization: *727 + ref: *733 + repository: *728 sender: *4 required: - action @@ -126738,12 +126814,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *731 - enterprise: *724 - installation: *725 - organization: *726 - ref: *732 - repository: *727 + commit_oid: *732 + enterprise: *725 + installation: *726 + organization: *727 + ref: *733 + repository: *728 sender: *4 required: - action @@ -127033,9 +127109,9 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -127043,7 +127119,7 @@ webhooks: type: - string - 'null' - repository: *727 + repository: *728 sender: *4 required: - action @@ -127289,12 +127365,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *731 - enterprise: *724 - installation: *725 - organization: *726 - ref: *732 - repository: *727 + commit_oid: *732 + enterprise: *725 + installation: *726 + organization: *727 + ref: *733 + repository: *728 sender: *4 required: - action @@ -127615,10 +127691,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -127878,10 +127954,10 @@ webhooks: - updated_at - author_association - body - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -127962,18 +128038,18 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *726 - pusher_type: &733 + organization: *727 + pusher_type: &734 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &734 + ref: &735 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -127983,7 +128059,7 @@ webhooks: enum: - tag - branch - repository: *727 + repository: *728 sender: *4 required: - ref @@ -128066,9 +128142,9 @@ webhooks: enum: - created definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -128153,9 +128229,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -128233,9 +128309,9 @@ webhooks: enum: - promote_to_enterprise definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -128313,9 +128389,9 @@ webhooks: enum: - updated definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -128392,10 +128468,10 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - repository: *727 - organization: *726 + enterprise: *725 + installation: *726 + repository: *728 + organization: *727 sender: *4 new_property_values: type: array @@ -128480,18 +128556,18 @@ webhooks: title: delete event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - pusher_type: *733 - ref: *734 + enterprise: *725 + installation: *726 + organization: *727 + pusher_type: *734 + ref: *735 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *727 + repository: *728 sender: *4 required: - ref @@ -128572,10 +128648,10 @@ webhooks: enum: - assignees_changed alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128656,10 +128732,10 @@ webhooks: enum: - auto_dismissed alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128741,10 +128817,10 @@ webhooks: enum: - auto_reopened alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128826,10 +128902,10 @@ webhooks: enum: - created alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128909,10 +128985,10 @@ webhooks: enum: - dismissed alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128992,10 +129068,10 @@ webhooks: enum: - fixed alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -129076,10 +129152,10 @@ webhooks: enum: - reintroduced alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -129159,10 +129235,10 @@ webhooks: enum: - reopened alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -129239,9 +129315,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - key: &735 + enterprise: *725 + installation: *726 + key: &736 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -129279,8 +129355,8 @@ webhooks: - verified - created_at - read_only - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -129357,11 +129433,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - key: *735 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + key: *736 + organization: *727 + repository: *728 sender: *4 required: - action @@ -129928,12 +130004,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: &739 + workflow: &740 title: Workflow type: - object @@ -130688,9 +130764,9 @@ webhooks: pull_requests: type: array items: *579 - repository: *727 - organization: *726 - installation: *725 + repository: *728 + organization: *727 + installation: *726 sender: *4 responses: '200': @@ -130761,7 +130837,7 @@ webhooks: type: string enum: - approved - approver: &736 + approver: &737 type: object properties: avatar_url: @@ -130804,11 +130880,11 @@ webhooks: type: string comment: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - reviewers: &737 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + reviewers: &738 type: array items: type: object @@ -130889,7 +130965,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &738 + workflow_job_run: &739 type: object properties: conclusion: @@ -131635,18 +131711,18 @@ webhooks: type: string enum: - rejected - approver: *736 + approver: *737 comment: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - reviewers: *737 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + reviewers: *738 sender: *4 since: type: string - workflow_job_run: *738 + workflow_job_run: *739 workflow_job_runs: type: array items: @@ -132363,13 +132439,13 @@ webhooks: type: string enum: - requested - enterprise: *724 + enterprise: *725 environment: type: string - installation: *725 - organization: *726 - repository: *727 - requestor: &744 + installation: *726 + organization: *727 + repository: *728 + requestor: &745 title: User type: - object @@ -134302,12 +134378,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: *739 + workflow: *740 workflow_run: title: Deployment Workflow Run type: @@ -134998,7 +135074,7 @@ webhooks: type: string enum: - answered - answer: &742 + answer: &743 type: object properties: author_association: @@ -135158,11 +135234,11 @@ webhooks: - created_at - updated_at - body - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135289,11 +135365,11 @@ webhooks: - from required: - category - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135376,11 +135452,11 @@ webhooks: type: string enum: - closed - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135462,7 +135538,7 @@ webhooks: type: string enum: - created - comment: &741 + comment: &742 type: object properties: author_association: @@ -135622,11 +135698,11 @@ webhooks: - updated_at - body - reactions - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135709,12 +135785,12 @@ webhooks: type: string enum: - deleted - comment: *741 - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + comment: *742 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135809,12 +135885,12 @@ webhooks: - from required: - body - comment: *741 - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + comment: *742 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135898,11 +135974,11 @@ webhooks: type: string enum: - created - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135984,11 +136060,11 @@ webhooks: type: string enum: - deleted - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136088,11 +136164,11 @@ webhooks: type: string required: - from - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136174,10 +136250,10 @@ webhooks: type: string enum: - labeled - discussion: *740 - enterprise: *724 - installation: *725 - label: &743 + discussion: *741 + enterprise: *725 + installation: *726 + label: &744 title: Label type: object properties: @@ -136210,8 +136286,8 @@ webhooks: - color - default - description - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136294,11 +136370,11 @@ webhooks: type: string enum: - locked - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136380,11 +136456,11 @@ webhooks: type: string enum: - pinned - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136466,11 +136542,11 @@ webhooks: type: string enum: - reopened - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136555,16 +136631,16 @@ webhooks: changes: type: object properties: - new_discussion: *740 - new_repository: *727 + new_discussion: *741 + new_repository: *728 required: - new_discussion - new_repository - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136647,10 +136723,10 @@ webhooks: type: string enum: - unanswered - discussion: *740 - old_answer: *742 - organization: *726 - repository: *727 + discussion: *741 + old_answer: *743 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136732,12 +136808,12 @@ webhooks: type: string enum: - unlabeled - discussion: *740 - enterprise: *724 - installation: *725 - label: *743 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136820,11 +136896,11 @@ webhooks: type: string enum: - unlocked - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136906,11 +136982,11 @@ webhooks: type: string enum: - unpinned - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136983,7 +137059,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *724 + enterprise: *725 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -137661,9 +137737,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - forkee @@ -137809,9 +137885,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pages: description: The pages that were updated. type: array @@ -137849,7 +137925,7 @@ webhooks: - action - sha - html_url - repository: *727 + repository: *728 sender: *4 required: - pages @@ -137925,10 +138001,10 @@ webhooks: type: string enum: - created - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: &745 + organization: *727 + repositories: &746 description: An array of repository objects that the installation can access. type: array @@ -137954,8 +138030,8 @@ webhooks: - name - full_name - private - repository: *727 - requester: *744 + repository: *728 + requester: *745 sender: *4 required: - action @@ -138030,11 +138106,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: *745 - repository: *727 + organization: *727 + repositories: *746 + repository: *728 requester: type: - 'null' @@ -138111,11 +138187,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: *745 - repository: *727 + organization: *727 + repositories: *746 + repository: *728 requester: type: - 'null' @@ -138192,10 +138268,10 @@ webhooks: type: string enum: - added - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories_added: &746 + organization: *727 + repositories_added: &747 description: An array of repository objects, which were added to the installation. type: array @@ -138241,15 +138317,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *727 - repository_selection: &747 + repository: *728 + repository_selection: &748 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *744 + requester: *745 sender: *4 required: - action @@ -138328,10 +138404,10 @@ webhooks: type: string enum: - removed - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories_added: *746 + organization: *727 + repositories_added: *747 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -138358,9 +138434,9 @@ webhooks: - name - full_name - private - repository: *727 - repository_selection: *747 - requester: *744 + repository: *728 + repository_selection: *748 + requester: *745 sender: *4 required: - action @@ -138439,11 +138515,11 @@ webhooks: type: string enum: - suspend - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: *745 - repository: *727 + organization: *727 + repositories: *746 + repository: *728 requester: type: - 'null' @@ -138625,10 +138701,10 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 target_type: type: string @@ -138707,11 +138783,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: *745 - repository: *727 + organization: *727 + repositories: *746 + repository: *728 requester: type: - 'null' @@ -138963,8 +139039,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139776,8 +139852,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -140138,8 +140214,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -140219,7 +140295,7 @@ webhooks: type: string enum: - deleted - comment: &748 + comment: &749 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -140390,8 +140466,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141199,8 +141275,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141563,8 +141639,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -141644,7 +141720,7 @@ webhooks: type: string enum: - edited - changes: &772 + changes: &773 description: The changes to the comment. type: object properties: @@ -141656,9 +141732,9 @@ webhooks: type: string required: - from - comment: *748 - enterprise: *724 - installation: *725 + comment: *749 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142469,8 +142545,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142831,8 +142907,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -142913,9 +142989,9 @@ webhooks: type: string enum: - pinned - comment: *748 - enterprise: *724 - installation: *725 + comment: *749 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143728,8 +143804,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144092,8 +144168,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -144173,9 +144249,9 @@ webhooks: type: string enum: - unpinned - comment: *748 - enterprise: *724 - installation: *725 + comment: *749 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -144988,8 +145064,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145352,8 +145428,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145442,9 +145518,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145533,9 +145609,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145623,9 +145699,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145714,9 +145790,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145796,10 +145872,10 @@ webhooks: type: string enum: - assigned - assignee: *744 - enterprise: *724 - installation: *725 - issue: &749 + assignee: *745 + enterprise: *725 + installation: *726 + issue: &750 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -146610,8 +146686,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -146734,8 +146810,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -146815,8 +146891,8 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -147632,8 +147708,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -147899,8 +147975,8 @@ webhooks: required: - state - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -147979,8 +148055,8 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148787,8 +148863,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -148910,8 +148986,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -148990,8 +149066,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149821,8 +149897,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -149923,7 +149999,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &750 + milestone: &751 title: Milestone description: A collection of related issues and pull requests. type: object @@ -150066,8 +150142,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -150166,8 +150242,8 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150978,8 +151054,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -151102,9 +151178,9 @@ webhooks: - active_lock_reason - body - reactions - label: *743 - organization: *726 - repository: *727 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -151184,9 +151260,9 @@ webhooks: type: string enum: - field_added - enterprise: *724 - installation: *725 - issue: *749 + enterprise: *725 + installation: *726 + issue: *750 issue_field: type: object description: The issue field whose value was set or updated on the @@ -151305,8 +151381,8 @@ webhooks: - id required: - from - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -151386,9 +151462,9 @@ webhooks: type: string enum: - field_removed - enterprise: *724 - installation: *725 - issue: *749 + enterprise: *725 + installation: *726 + issue: *750 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -151451,8 +151527,8 @@ webhooks: - 'null' required: - id - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -151532,8 +151608,8 @@ webhooks: type: string enum: - labeled - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152343,8 +152419,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -152467,9 +152543,9 @@ webhooks: - active_lock_reason - body - reactions - label: *743 - organization: *726 - repository: *727 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -152549,8 +152625,8 @@ webhooks: type: string enum: - locked - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153385,8 +153461,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -153486,8 +153562,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -153566,8 +153642,8 @@ webhooks: type: string enum: - milestoned - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154396,8 +154472,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -154497,9 +154573,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *750 - organization: *726 - repository: *727 + milestone: *751 + organization: *727 + repository: *728 sender: *4 required: - action @@ -155386,8 +155462,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -155982,8 +156058,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156790,8 +156866,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -156917,8 +156993,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -156998,9 +157074,9 @@ webhooks: type: string enum: - pinned - enterprise: *724 - installation: *725 - issue: &751 + enterprise: *725 + installation: *726 + issue: &752 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -157805,8 +157881,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -157928,8 +158004,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -158008,8 +158084,8 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -158842,8 +158918,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -158944,8 +159020,8 @@ webhooks: user_view_type: type: string type: *243 - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -159833,8 +159909,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -160447,11 +160523,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *724 - installation: *725 - issue: *751 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + issue: *752 + organization: *727 + repository: *728 sender: *4 required: - action @@ -160531,12 +160607,12 @@ webhooks: type: string enum: - typed - enterprise: *724 - installation: *725 - issue: *749 + enterprise: *725 + installation: *726 + issue: *750 type: *243 - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -160617,7 +160693,7 @@ webhooks: type: string enum: - unassigned - assignee: &775 + assignee: &776 title: User type: - object @@ -160689,11 +160765,11 @@ webhooks: required: - login - id - enterprise: *724 - installation: *725 - issue: *749 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + issue: *750 + organization: *727 + repository: *728 sender: *4 required: - action @@ -160772,12 +160848,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *724 - installation: *725 - issue: *749 - label: *743 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + issue: *750 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -160857,8 +160933,8 @@ webhooks: type: string enum: - unlocked - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -161691,8 +161767,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -161792,8 +161868,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161873,11 +161949,11 @@ webhooks: type: string enum: - unpinned - enterprise: *724 - installation: *725 - issue: *751 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + issue: *752 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161956,12 +162032,12 @@ webhooks: type: string enum: - untyped - enterprise: *724 - installation: *725 - issue: *749 + enterprise: *725 + installation: *726 + issue: *750 type: *243 - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -162041,11 +162117,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - label: *743 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -162123,11 +162199,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - label: *743 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -162237,11 +162313,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - label: *743 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -162323,9 +162399,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: &752 + enterprise: *725 + installation: *726 + marketplace_purchase: &753 title: Marketplace Purchase type: object required: @@ -162413,8 +162489,8 @@ webhooks: type: integer unit_count: type: integer - organization: *726 - previous_marketplace_purchase: &753 + organization: *727 + previous_marketplace_purchase: &754 title: Marketplace Purchase type: object properties: @@ -162498,7 +162574,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -162578,10 +162654,10 @@ webhooks: - changed effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *752 - organization: *726 + enterprise: *725 + installation: *726 + marketplace_purchase: *753 + organization: *727 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -162669,7 +162745,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -162751,10 +162827,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *752 - organization: *726 + enterprise: *725 + installation: *726 + marketplace_purchase: *753 + organization: *727 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -162840,7 +162916,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -162921,8 +162997,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 marketplace_purchase: title: Marketplace Purchase type: object @@ -163008,9 +163084,9 @@ webhooks: type: integer unit_count: type: integer - organization: *726 - previous_marketplace_purchase: *753 - repository: *727 + organization: *727 + previous_marketplace_purchase: *754 + repository: *728 sender: *4 required: - action @@ -163090,12 +163166,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *752 - organization: *726 - previous_marketplace_purchase: *753 - repository: *727 + enterprise: *725 + installation: *726 + marketplace_purchase: *753 + organization: *727 + previous_marketplace_purchase: *754 + repository: *728 sender: *4 required: - action @@ -163197,11 +163273,11 @@ webhooks: type: string required: - to - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 sender: *4 required: - action @@ -163303,11 +163379,11 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 sender: *4 required: - action @@ -163386,11 +163462,11 @@ webhooks: type: string enum: - removed - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 sender: *4 required: - action @@ -163468,11 +163544,11 @@ webhooks: type: string enum: - added - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 scope: description: The scope of the membership. Currently, can only be `team`. @@ -163550,7 +163626,7 @@ webhooks: required: - login - id - team: &754 + team: &755 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -163780,11 +163856,11 @@ webhooks: type: string enum: - removed - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 scope: description: The scope of the membership. Currently, can only be `team`. @@ -163863,7 +163939,7 @@ webhooks: required: - login - id - team: *754 + team: *755 required: - action - scope @@ -163945,8 +164021,8 @@ webhooks: type: string enum: - checks_requested - installation: *725 - merge_group: &755 + installation: *726 + merge_group: &756 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -163972,8 +164048,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164059,10 +164135,10 @@ webhooks: - merged - invalidated - dequeued - installation: *725 - merge_group: *755 - organization: *726 - repository: *727 + installation: *726 + merge_group: *756 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164135,7 +164211,7 @@ webhooks: type: string enum: - deleted - enterprise: *724 + enterprise: *725 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -164244,12 +164320,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *725 - organization: *726 + installation: *726 + organization: *727 repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -164329,11 +164405,11 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - milestone: *750 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + milestone: *751 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164412,9 +164488,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - milestone: &756 + enterprise: *725 + installation: *726 + milestone: &757 title: Milestone description: A collection of related issues and pull requests. type: object @@ -164556,8 +164632,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164636,11 +164712,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - milestone: *750 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + milestone: *751 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164750,11 +164826,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - milestone: *750 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + milestone: *751 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164834,11 +164910,11 @@ webhooks: type: string enum: - opened - enterprise: *724 - installation: *725 - milestone: *756 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + milestone: *757 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164917,11 +164993,11 @@ webhooks: type: string enum: - blocked - blocked_user: *744 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + blocked_user: *745 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165000,11 +165076,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *744 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + blocked_user: *745 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165083,9 +165159,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - membership: &757 + enterprise: *725 + installation: *726 + membership: &758 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -165195,8 +165271,8 @@ webhooks: - role - organization_url - user - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165274,11 +165350,11 @@ webhooks: type: string enum: - member_added - enterprise: *724 - installation: *725 - membership: *757 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + membership: *758 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165357,8 +165433,8 @@ webhooks: type: string enum: - member_invited - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -165480,10 +165556,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 - user: *744 + user: *745 required: - action - invitation @@ -165561,11 +165637,11 @@ webhooks: type: string enum: - member_removed - enterprise: *724 - installation: *725 - membership: *757 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + membership: *758 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165652,11 +165728,11 @@ webhooks: properties: from: type: string - enterprise: *724 - installation: *725 - membership: *757 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + membership: *758 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165733,9 +165809,9 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 package: description: Information about the package. type: object @@ -166258,7 +166334,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &758 + items: &759 title: Ruby Gems metadata type: object properties: @@ -166355,7 +166431,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -166431,9 +166507,9 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 package: description: Information about the package. type: object @@ -166795,7 +166871,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *758 + items: *759 source_url: type: string format: uri @@ -166866,7 +166942,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -167046,12 +167122,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *724 + enterprise: *725 id: type: integer - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - id @@ -167128,7 +167204,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &759 + personal_access_token_request: &760 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -167278,10 +167354,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *724 - organization: *726 + enterprise: *725 + organization: *727 sender: *4 - installation: *725 + installation: *726 required: - action - personal_access_token_request @@ -167358,11 +167434,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *759 - enterprise: *724 - organization: *726 + personal_access_token_request: *760 + enterprise: *725 + organization: *727 sender: *4 - installation: *725 + installation: *726 required: - action - personal_access_token_request @@ -167438,11 +167514,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *759 - enterprise: *724 - organization: *726 + personal_access_token_request: *760 + enterprise: *725 + organization: *727 sender: *4 - installation: *725 + installation: *726 required: - action - personal_access_token_request @@ -167517,11 +167593,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *759 - organization: *726 - enterprise: *724 + personal_access_token_request: *760 + organization: *727 + enterprise: *725 sender: *4 - installation: *725 + installation: *726 required: - action - personal_access_token_request @@ -167626,7 +167702,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *760 + last_response: *761 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -167658,8 +167734,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 zen: description: Random string of GitHub zen. @@ -167904,10 +167980,10 @@ webhooks: - from required: - note - enterprise: *724 - installation: *725 - organization: *726 - project_card: &761 + enterprise: *725 + installation: *726 + organization: *727 + project_card: &762 title: Project Card type: object properties: @@ -168030,7 +168106,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -168111,11 +168187,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project_card: *761 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project_card: *762 + repository: *728 sender: *4 required: - action @@ -168195,9 +168271,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 project_card: title: Project Card type: object @@ -168327,7 +168403,7 @@ webhooks: repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -168421,11 +168497,11 @@ webhooks: - from required: - note - enterprise: *724 - installation: *725 - organization: *726 - project_card: *761 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project_card: *762 + repository: *728 sender: *4 required: - action @@ -168519,9 +168595,9 @@ webhooks: - from required: - column_id - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 project_card: allOf: - title: Project Card @@ -168718,7 +168794,7 @@ webhooks: type: string required: - after_id - repository: *727 + repository: *728 sender: *4 required: - action @@ -168798,10 +168874,10 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - organization: *726 - project: &763 + enterprise: *725 + installation: *726 + organization: *727 + project: &764 title: Project type: object properties: @@ -168928,7 +169004,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -169008,10 +169084,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project_column: &762 + enterprise: *725 + installation: *726 + organization: *727 + project_column: &763 title: Project Column type: object properties: @@ -169051,7 +169127,7 @@ webhooks: - name - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -169130,14 +169206,14 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - project_column: *762 + enterprise: *725 + installation: *726 + organization: *727 + project_column: *763 repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -169226,11 +169302,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - project_column: *762 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project_column: *763 + repository: *728 sender: *4 required: - action @@ -169310,11 +169386,11 @@ webhooks: type: string enum: - moved - enterprise: *724 - installation: *725 - organization: *726 - project_column: *762 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project_column: *763 + repository: *728 sender: *4 required: - action @@ -169394,11 +169470,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project: *763 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project: *764 + repository: *728 sender: *4 required: - action @@ -169478,14 +169554,14 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - project: *763 + enterprise: *725 + installation: *726 + organization: *727 + project: *764 repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -169586,11 +169662,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - project: *763 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project: *764 + repository: *728 sender: *4 required: - action @@ -169669,11 +169745,11 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 - organization: *726 - project: *763 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project: *764 + repository: *728 sender: *4 required: - action @@ -169754,8 +169830,8 @@ webhooks: type: string enum: - closed - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -169837,8 +169913,8 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -169920,8 +169996,8 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -170043,8 +170119,8 @@ webhooks: type: string to: type: string - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -170128,7 +170204,7 @@ webhooks: type: string enum: - archived - changes: &767 + changes: &768 type: object properties: archived_at: @@ -170144,9 +170220,9 @@ webhooks: - string - 'null' format: date-time - installation: *725 - organization: *726 - projects_v2_item: &764 + installation: *726 + organization: *727 + projects_v2_item: &765 title: Projects v2 Item description: An item belonging to a project type: object @@ -170286,9 +170362,9 @@ webhooks: - 'null' to: type: string - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -170370,9 +170446,9 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -170453,9 +170529,9 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -170560,7 +170636,7 @@ webhooks: oneOf: - type: string - type: integer - - &765 + - &766 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -170584,7 +170660,7 @@ webhooks: required: - id - name - - &766 + - &767 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -170624,8 +170700,8 @@ webhooks: oneOf: - type: string - type: integer - - *765 - *766 + - *767 type: - 'null' - string @@ -170648,9 +170724,9 @@ webhooks: - 'null' required: - body - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -170747,9 +170823,9 @@ webhooks: type: - string - 'null' - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -170832,10 +170908,10 @@ webhooks: type: string enum: - restored - changes: *767 - installation: *725 - organization: *726 - projects_v2_item: *764 + changes: *768 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -170917,8 +170993,8 @@ webhooks: type: string enum: - reopened - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -171000,9 +171076,9 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 - projects_v2_status_update: *768 + installation: *726 + organization: *727 + projects_v2_status_update: *769 sender: *4 required: - action @@ -171083,9 +171159,9 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 - projects_v2_status_update: *768 + installation: *726 + organization: *727 + projects_v2_status_update: *769 sender: *4 required: - action @@ -171231,9 +171307,9 @@ webhooks: - string - 'null' format: date - installation: *725 - organization: *726 - projects_v2_status_update: *768 + installation: *726 + organization: *727 + projects_v2_status_update: *769 sender: *4 required: - action @@ -171304,10 +171380,10 @@ webhooks: title: public event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - repository @@ -171384,13 +171460,13 @@ webhooks: type: string enum: - assigned - assignee: *744 - enterprise: *724 - installation: *725 - number: &769 + assignee: *745 + enterprise: *725 + installation: *726 + number: &770 description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -173761,7 +173837,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -173843,11 +173919,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -176211,7 +176287,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *728 sender: *4 required: - action @@ -176293,11 +176369,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -178661,7 +178737,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *728 sender: *4 required: - action @@ -178743,11 +178819,11 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: &770 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: &771 allOf: - *579 - type: object @@ -178811,7 +178887,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *727 + repository: *728 sender: *4 required: - action @@ -178892,12 +178968,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -178977,11 +179053,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *724 + enterprise: *725 milestone: *279 - number: *769 - organization: *726 - pull_request: &771 + number: *770 + organization: *727 + pull_request: &772 title: Pull Request type: object properties: @@ -181330,7 +181406,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -181409,11 +181485,11 @@ webhooks: type: string enum: - dequeued - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -183781,7 +183857,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *727 + repository: *728 sender: *4 required: - action @@ -183905,12 +183981,12 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -183990,11 +184066,11 @@ webhooks: type: string enum: - enqueued - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -186347,7 +186423,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -186427,11 +186503,11 @@ webhooks: type: string enum: - labeled - enterprise: *724 - installation: *725 - label: *743 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + label: *744 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -188801,7 +188877,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -188882,10 +188958,10 @@ webhooks: type: string enum: - locked - enterprise: *724 - installation: *725 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -191253,7 +191329,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -191333,12 +191409,12 @@ webhooks: type: string enum: - milestoned - enterprise: *724 + enterprise: *725 milestone: *279 - number: *769 - organization: *726 - pull_request: *771 - repository: *727 + number: *770 + organization: *727 + pull_request: *772 + repository: *728 sender: *4 required: - action @@ -191417,12 +191493,12 @@ webhooks: type: string enum: - opened - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -191503,12 +191579,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -191588,12 +191664,12 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -191968,9 +192044,9 @@ webhooks: - start_side - side - reactions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: type: object properties: @@ -194222,7 +194298,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -194302,7 +194378,7 @@ webhooks: type: string enum: - deleted - comment: &773 + comment: &774 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -194595,9 +194671,9 @@ webhooks: - start_side - side - reactions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: type: object properties: @@ -196837,7 +196913,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -196917,11 +196993,11 @@ webhooks: type: string enum: - edited - changes: *772 - comment: *773 - enterprise: *724 - installation: *725 - organization: *726 + changes: *773 + comment: *774 + enterprise: *725 + installation: *726 + organization: *727 pull_request: type: object properties: @@ -199164,7 +199240,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -199245,9 +199321,9 @@ webhooks: type: string enum: - dismissed - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -201502,7 +201578,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 review: description: The review that was affected. type: object @@ -201753,9 +201829,9 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -203869,8 +203945,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: &774 + repository: *728 + review: &775 description: The review that was affected. type: object properties: @@ -204108,12 +204184,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -206482,7 +206558,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_reviewer: title: User type: @@ -206568,12 +206644,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -208949,7 +209025,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_team: title: Team description: Groups of organization members that gives permissions @@ -209144,12 +209220,12 @@ webhooks: type: string enum: - review_requested - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -211520,7 +211596,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_reviewer: title: User type: @@ -211607,12 +211683,12 @@ webhooks: type: string enum: - review_requested - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -213974,7 +214050,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_team: title: Team description: Groups of organization members that gives permissions @@ -214158,9 +214234,9 @@ webhooks: type: string enum: - submitted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -216418,8 +216494,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: *774 + repository: *728 + review: *775 sender: *4 required: - action @@ -216499,9 +216575,9 @@ webhooks: type: string enum: - resolved - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -218654,7 +218730,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 sender: *4 thread: type: object @@ -219051,9 +219127,9 @@ webhooks: type: string enum: - unresolved - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -221189,7 +221265,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 sender: *4 thread: type: object @@ -221588,10 +221664,10 @@ webhooks: type: string before: type: string - enterprise: *724 - installation: *725 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -223948,7 +224024,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -224030,11 +224106,11 @@ webhooks: type: string enum: - unassigned - assignee: *775 - enterprise: *724 - installation: *725 - number: *769 - organization: *726 + assignee: *776 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -226406,7 +226482,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -226485,11 +226561,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *724 - installation: *725 - label: *743 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + label: *744 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -228850,7 +228926,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -228931,10 +229007,10 @@ webhooks: type: string enum: - unlocked - enterprise: *724 - installation: *725 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -231285,7 +231361,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -231488,7 +231564,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *724 + enterprise: *725 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -231583,8 +231659,8 @@ webhooks: - url - author - committer - installation: *725 - organization: *726 + installation: *726 + organization: *727 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -232183,9 +232259,9 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 registry_package: type: object properties: @@ -232662,7 +232738,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *758 + items: *759 summary: type: string tag_name: @@ -232718,7 +232794,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -232796,9 +232872,9 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 registry_package: type: object properties: @@ -233110,7 +233186,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *758 + items: *759 summary: type: string tag_name: @@ -233160,7 +233236,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -233237,10 +233313,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - release: &776 + enterprise: *725 + installation: *726 + organization: *727 + release: &777 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -233571,7 +233647,7 @@ webhooks: - updated_at - zipball_url - body - repository: *727 + repository: *728 sender: *4 required: - action @@ -233648,11 +233724,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - release: *776 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + release: *777 + repository: *728 sender: *4 required: - action @@ -233769,11 +233845,11 @@ webhooks: type: boolean required: - to - enterprise: *724 - installation: *725 - organization: *726 - release: *776 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + release: *777 + repository: *728 sender: *4 required: - action @@ -233851,9 +233927,9 @@ webhooks: type: string enum: - prereleased - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -234189,7 +234265,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *728 sender: *4 required: - action @@ -234265,10 +234341,10 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - release: &777 + enterprise: *725 + installation: *726 + organization: *727 + release: &778 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -234601,7 +234677,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *728 sender: *4 required: - action @@ -234677,11 +234753,11 @@ webhooks: type: string enum: - released - enterprise: *724 - installation: *725 - organization: *726 - release: *776 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + release: *777 + repository: *728 sender: *4 required: - action @@ -234757,11 +234833,11 @@ webhooks: type: string enum: - unpublished - enterprise: *724 - installation: *725 - organization: *726 - release: *777 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + release: *778 + repository: *728 sender: *4 required: - action @@ -234837,11 +234913,11 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - repository_advisory: *647 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + repository_advisory: *648 sender: *4 required: - action @@ -234917,11 +234993,11 @@ webhooks: type: string enum: - reported - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - repository_advisory: *647 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + repository_advisory: *648 sender: *4 required: - action @@ -234997,10 +235073,10 @@ webhooks: type: string enum: - archived - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -235077,10 +235153,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -235158,10 +235234,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -235246,10 +235322,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -235364,10 +235440,10 @@ webhooks: - 'null' items: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -235439,10 +235515,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 status: type: string @@ -235523,10 +235599,10 @@ webhooks: type: string enum: - privatized - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -235603,10 +235679,10 @@ webhooks: type: string enum: - publicized - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -235700,10 +235776,10 @@ webhooks: - name required: - repository - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -235783,10 +235859,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 repository_ruleset: *321 sender: *4 required: @@ -235865,10 +235941,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 repository_ruleset: *321 sender: *4 required: @@ -235947,10 +236023,10 @@ webhooks: type: string enum: - edited - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 repository_ruleset: *321 changes: type: object @@ -236258,10 +236334,10 @@ webhooks: - from required: - owner - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236339,10 +236415,10 @@ webhooks: type: string enum: - unarchived - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236420,7 +236496,7 @@ webhooks: type: string enum: - create - alert: &778 + alert: &779 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -236545,10 +236621,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236758,10 +236834,10 @@ webhooks: type: string enum: - dismissed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236839,11 +236915,11 @@ webhooks: type: string enum: - reopen - alert: *778 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *779 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237045,10 +237121,10 @@ webhooks: enum: - fixed - open - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237126,7 +237202,7 @@ webhooks: type: string enum: - assigned - alert: &779 + alert: &780 type: object properties: number: *178 @@ -237266,10 +237342,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237347,11 +237423,11 @@ webhooks: type: string enum: - created - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237432,11 +237508,11 @@ webhooks: type: string enum: - created - alert: *779 - installation: *725 - location: *780 - organization: *726 - repository: *727 + alert: *780 + installation: *726 + location: *781 + organization: *727 + repository: *728 sender: *4 required: - location @@ -237674,11 +237750,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237756,11 +237832,11 @@ webhooks: type: string enum: - reopened - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237838,11 +237914,11 @@ webhooks: type: string enum: - resolved - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237920,12 +237996,12 @@ webhooks: type: string enum: - unassigned - alert: *779 + alert: *780 assignee: *4 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -238003,11 +238079,11 @@ webhooks: type: string enum: - validated - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -238137,10 +238213,10 @@ webhooks: - organization - enterprise - - repository: *727 - enterprise: *724 - installation: *725 - organization: *726 + repository: *728 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -238218,11 +238294,11 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - security_advisory: &781 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + security_advisory: &782 description: The details of the security advisory, including summary, description, and severity. type: object @@ -238408,11 +238484,11 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - security_advisory: *781 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + security_advisory: *782 sender: *4 required: - action @@ -238485,10 +238561,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -238675,9 +238751,9 @@ webhooks: type: object properties: security_and_analysis: *294 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: *341 sender: *4 required: @@ -238756,12 +238832,12 @@ webhooks: type: string enum: - cancelled - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: &782 + sponsorship: &783 type: object properties: created_at: @@ -239066,12 +239142,12 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - sponsorship @@ -239159,12 +239235,12 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - changes @@ -239241,17 +239317,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &783 + effective_date: &784 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: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - sponsorship @@ -239325,7 +239401,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &784 + changes: &785 type: object properties: tier: @@ -239369,13 +239445,13 @@ webhooks: - from required: - tier - effective_date: *783 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + effective_date: *784 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - changes @@ -239452,13 +239528,13 @@ webhooks: type: string enum: - tier_changed - changes: *784 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + changes: *785 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - changes @@ -239532,10 +239608,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -239619,10 +239695,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -240056,15 +240132,15 @@ webhooks: type: - string - 'null' - enterprise: *724 + enterprise: *725 id: description: The unique identifier of the status. type: integer - installation: *725 + installation: *726 name: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 sha: description: The Commit SHA. @@ -240180,9 +240256,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -240271,9 +240347,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -240362,9 +240438,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -240453,9 +240529,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -240531,12 +240607,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - team: &785 + team: &786 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -240766,9 +240842,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -241238,7 +241314,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -241314,9 +241390,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -241786,7 +241862,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -241863,9 +241939,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -242335,7 +242411,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -242479,9 +242555,9 @@ webhooks: - from required: - permissions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -242951,7 +243027,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - changes @@ -243029,9 +243105,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -243501,7 +243577,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -243577,10 +243653,10 @@ webhooks: type: string enum: - started - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -243653,17 +243729,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *724 + enterprise: *725 inputs: type: - object - 'null' additionalProperties: true - installation: *725 - organization: *726 + installation: *726 + organization: *727 ref: type: string - repository: *727 + repository: *728 sender: *4 workflow: type: string @@ -243745,10 +243821,10 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 workflow_job: allOf: @@ -244083,10 +244159,10 @@ webhooks: type: string enum: - in_progress - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 workflow_job: allOf: @@ -244447,10 +244523,10 @@ webhooks: type: string enum: - queued - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 workflow_job: type: object @@ -244675,10 +244751,10 @@ webhooks: type: string enum: - waiting - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 workflow_job: type: object @@ -244905,12 +244981,12 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: *739 + workflow: *740 workflow_run: title: Workflow Run type: object @@ -245929,12 +246005,12 @@ webhooks: type: string enum: - in_progress - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: *739 + workflow: *740 workflow_run: title: Workflow Run type: object @@ -246938,12 +247014,12 @@ webhooks: type: string enum: - requested - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: *739 + workflow: *740 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index d445efbdd..fb44d4600 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -10563,7 +10563,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" ], @@ -98550,6 +98550,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -98576,6 +98586,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -98601,6 +98612,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -98970,6 +98982,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -98996,6 +99018,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -99021,6 +99044,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -99342,6 +99366,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -101706,6 +101740,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -101726,6 +101770,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -240217,6 +240262,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).\"", @@ -278037,6 +278097,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -278063,6 +278133,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -278088,6 +278159,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -278427,6 +278499,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -280818,6 +280900,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -280838,6 +280930,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -429325,6 +429418,135 @@ } } }, + "/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" + ], + "examples": [ + "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", @@ -622970,6 +623192,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-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index bd00bc03d..9414c8223 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -1048,7 +1048,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &649 + - &650 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -5486,6 +5486,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. @@ -14445,7 +14448,7 @@ paths: properties: action: type: string - discussion: &740 + discussion: &741 title: Discussion description: A Discussion in a repository. type: object @@ -15232,7 +15235,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &660 + sub_issues_summary: &661 title: Sub-issues Summary type: object properties: @@ -15343,7 +15346,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &661 + issue_dependencies_summary: &662 title: Issue Dependencies Summary type: object properties: @@ -21959,7 +21962,7 @@ paths: required: false schema: type: string - - &717 + - &718 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -22105,7 +22108,7 @@ paths: parameters: - *74 - *116 - - &718 + - &719 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 @@ -22217,7 +22220,7 @@ paths: - *116 - *118 - *117 - - &719 + - &720 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22225,7 +22228,7 @@ paths: schema: type: string - *119 - - &720 + - &721 name: sku description: The SKU to query for usage. in: query @@ -26477,6 +26480,15 @@ 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. + type: + - string + - 'null' + examples: + - 2.323.0 required: - id - name @@ -26495,6 +26507,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -26511,6 +26524,7 @@ paths: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -27010,6 +27024,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -29885,12 +29900,12 @@ paths: required: - subject_digests examples: - default: &698 + default: &699 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &699 + withPredicateType: &700 value: subject_digests: - sha256:abc123 @@ -29935,7 +29950,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &700 + default: &701 value: attestations_subject_digests: - sha256:abc: @@ -42589,7 +42604,7 @@ paths: parameters: - *74 - *255 - - &680 + - &681 name: repo_name description: repo_name parameter in: path @@ -43537,7 +43552,7 @@ paths: - nuget - container - *74 - - &681 + - &682 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43578,7 +43593,7 @@ paths: default: *261 '403': *27 '401': *23 - '400': &683 + '400': &684 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -45820,7 +45835,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &768 + - &769 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -46706,7 +46721,7 @@ paths: - updated_at - project_url examples: - default: &704 + default: &705 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46883,7 +46898,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &705 + items: &706 type: object properties: name: @@ -46920,7 +46935,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &706 + iteration_configuration: &707 type: object description: The configuration for iteration fields. properties: @@ -46970,7 +46985,7 @@ paths: value: name: Due date data_type: date - single_select_field: &707 + single_select_field: &708 summary: Create a single select field value: name: Priority @@ -46997,7 +47012,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &708 + iteration_field: &709 summary: Create an iteration field value: name: Sprint @@ -47023,7 +47038,7 @@ paths: application/json: schema: *281 examples: - text_field: &709 + text_field: &710 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -47032,7 +47047,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: &710 + number_field: &711 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -47041,7 +47056,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: &711 + date_field: &712 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -47050,7 +47065,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: &712 + single_select_field: &713 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47084,7 +47099,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &713 + iteration_field: &714 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -47130,7 +47145,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *278 - - &714 + - &715 name: field_id description: The unique identifier of the field. in: path @@ -47145,7 +47160,7 @@ paths: application/json: schema: *281 examples: - default: &715 + default: &716 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -48356,7 +48371,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &695 + schema: &696 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -48539,7 +48554,7 @@ paths: parameters: - *278 - *74 - - &716 + - &717 name: view_number description: The number that identifies the project view. in: path @@ -51909,6 +51924,22 @@ paths: - bypass - all default: all + - &604 + 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: @@ -51916,7 +51947,7 @@ paths: description: Response content: application/json: - schema: &604 + schema: &605 title: Rule Suites description: Response type: array @@ -51972,7 +52003,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &605 + default: &606 value: - id: 21 actor_id: 12 @@ -52016,7 +52047,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *74 - - &606 + - &607 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -52032,7 +52063,7 @@ paths: description: Response content: application/json: - schema: &607 + schema: &608 title: Rule Suite description: Response type: object @@ -52139,7 +52170,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &608 + default: &609 value: id: 21 actor_id: 12 @@ -52386,7 +52417,7 @@ paths: type: string format: date-time examples: - default: &610 + default: &611 value: - version_id: 3 actor: @@ -52439,7 +52470,7 @@ paths: description: Response content: application/json: - schema: &611 + schema: &612 allOf: - *324 - type: object @@ -52511,7 +52542,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *74 - - &612 + - &613 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -52522,7 +52553,7 @@ paths: enum: - open - resolved - - &613 + - &614 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -52532,7 +52563,7 @@ paths: required: false schema: type: string - - &614 + - &615 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -52543,7 +52574,7 @@ paths: required: false schema: type: string - - &615 + - &616 name: exclude_providers in: query description: |- @@ -52554,7 +52585,7 @@ paths: required: false schema: type: string - - &616 + - &617 name: providers in: query description: |- @@ -52565,7 +52596,7 @@ paths: required: false schema: type: string - - &617 + - &618 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -52574,7 +52605,7 @@ paths: required: false schema: type: string - - &618 + - &619 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -52593,7 +52624,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &619 + - &620 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. @@ -52608,7 +52639,7 @@ paths: - *60 - *19 - *17 - - &620 + - &621 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 @@ -52618,7 +52649,7 @@ paths: required: false schema: type: string - - &621 + - &622 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 @@ -52628,7 +52659,7 @@ paths: required: false schema: type: string - - &622 + - &623 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -52637,7 +52668,7 @@ paths: required: false schema: type: string - - &623 + - &624 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -52646,7 +52677,7 @@ paths: schema: type: boolean default: false - - &624 + - &625 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -52655,7 +52686,7 @@ paths: schema: type: boolean default: false - - &625 + - &626 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -52664,7 +52695,7 @@ paths: schema: type: boolean default: false - - &626 + - &627 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -52698,14 +52729,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &627 + state: &628 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: &628 + resolution: &629 type: - string - 'null' @@ -52824,14 +52855,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &629 + - &630 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &631 + - &632 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -52895,7 +52926,7 @@ paths: - blob_url - commit_sha - commit_url - - &632 + - &633 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. @@ -52956,7 +52987,7 @@ paths: - page_url - commit_sha - commit_url - - &633 + - &634 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -52978,7 +53009,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &634 + - &635 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -53000,7 +53031,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &635 + - &636 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -53022,7 +53053,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &636 + - &637 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -53037,7 +53068,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &637 + - &638 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -53052,7 +53083,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &638 + - &639 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -53067,7 +53098,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &639 + - &640 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. @@ -53089,7 +53120,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &640 + - &641 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. @@ -53111,7 +53142,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &641 + - &642 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. @@ -53133,7 +53164,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &642 + - &643 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. @@ -53155,7 +53186,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &643 + - &644 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 @@ -53676,7 +53707,7 @@ paths: application/json: schema: type: array - items: &647 + items: &648 description: A repository security advisory. type: object properties: @@ -53973,7 +54004,7 @@ paths: - private_fork additionalProperties: false examples: - default: &648 + default: &649 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -56040,7 +56071,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &663 + response-if-user-is-a-team-maintainer: &664 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -56105,7 +56136,7 @@ paths: application/json: schema: *337 examples: - response-if-users-membership-with-team-is-now-pending: &664 + response-if-users-membership-with-team-is-now-pending: &665 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -56219,7 +56250,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &665 + schema: &666 title: Team Repository description: A team's access to a repository. type: object @@ -56940,7 +56971,7 @@ paths: type: array items: *198 examples: - response-if-child-teams-exist: &666 + response-if-child-teams-exist: &667 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -69013,7 +69044,7 @@ paths: check. type: array items: *85 - deployment: &729 + deployment: &730 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -74492,7 +74523,7 @@ paths: type: array items: *458 examples: - default: &671 + default: &672 value: total_count: 2 machines: @@ -77669,7 +77700,7 @@ paths: application/json: schema: type: array - items: &652 + items: &653 title: Status description: The status of a commit. type: object @@ -79295,7 +79326,7 @@ paths: items: type: object properties: - placeholder_id: &644 + placeholder_id: &645 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -85353,6 +85384,50 @@ 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: + - *338 + - *339 + 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 + examples: + - sha1 + required: + - hash_algorithm + examples: + default: + value: + hash_algorithm: sha1 + '403': *27 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/hooks": get: summary: List repository webhooks @@ -85439,7 +85514,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &760 + last_response: &761 title: Hook Response type: object properties: @@ -86508,7 +86583,7 @@ paths: parameters: - *338 - *339 - - &693 + - &694 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -86942,7 +87017,7 @@ paths: type: array items: *532 examples: - default: &685 + default: &686 value: - id: 1 repository: @@ -100825,7 +100900,7 @@ paths: application/json: schema: *321 examples: - default: &609 + default: &610 value: id: 42 name: super cool ruleset @@ -100879,6 +100954,7 @@ paths: - *601 - *602 - *603 + - *604 - *17 - *19 responses: @@ -100886,9 +100962,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: *605 + default: *606 '404': *6 '500': *53 x-github: @@ -100911,15 +100987,15 @@ paths: parameters: - *338 - *339 - - *606 + - *607 responses: '200': description: Response content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '404': *6 '500': *53 x-github: @@ -100970,7 +101046,7 @@ paths: application/json: schema: *321 examples: - default: *609 + default: *610 '404': *6 '500': *53 put: @@ -101053,7 +101129,7 @@ paths: application/json: schema: *321 examples: - default: *609 + default: *610 '404': *6 '422': *15 '500': *53 @@ -101115,7 +101191,7 @@ paths: type: array items: *324 examples: - default: *610 + default: *611 '404': *6 '500': *53 x-github: @@ -101153,7 +101229,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -101210,7 +101286,6 @@ paths: parameters: - *338 - *339 - - *612 - *613 - *614 - *615 @@ -101218,16 +101293,17 @@ paths: - *617 - *618 - *619 + - *620 - *60 - *19 - *17 - - *620 - *621 - *622 - *623 - *624 - *625 - *626 + - *627 responses: '200': description: Response @@ -101235,7 +101311,7 @@ paths: application/json: schema: type: array - items: &630 + items: &631 type: object properties: number: *178 @@ -101251,8 +101327,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *627 - resolution: *628 + state: *628 + resolution: *629 resolved_at: type: - string @@ -101358,7 +101434,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *629 + - *630 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -101520,13 +101596,13 @@ paths: - *338 - *339 - *434 - - *625 + - *626 responses: '200': description: Response content: application/json: - schema: *630 + schema: *631 examples: default: value: @@ -101590,8 +101666,8 @@ paths: schema: type: object properties: - state: *627 - resolution: *628 + state: *628 + resolution: *629 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -101639,7 +101715,7 @@ paths: description: Response content: application/json: - schema: *630 + schema: *631 examples: default: value: @@ -101751,7 +101827,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &780 + items: &781 type: object properties: type: @@ -101778,7 +101854,6 @@ paths: - commit details: oneOf: - - *631 - *632 - *633 - *634 @@ -101791,6 +101866,7 @@ paths: - *641 - *642 - *643 + - *644 examples: default: value: @@ -101885,14 +101961,14 @@ paths: schema: type: object properties: - reason: &645 + reason: &646 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *644 + placeholder_id: *645 required: - reason - placeholder_id @@ -101909,7 +101985,7 @@ paths: schema: type: object properties: - reason: *645 + reason: *646 expire_at: type: - string @@ -101972,7 +102048,7 @@ paths: properties: incremental_scans: type: array - items: &646 + items: &647 description: Information on a single scan performed by secret scanning on the repository type: object @@ -102005,15 +102081,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *646 + items: *647 backfill_scans: type: array - items: *646 + items: *647 custom_pattern_backfill_scans: type: array items: allOf: - - *646 + - *647 - type: object properties: pattern_name: @@ -102026,7 +102102,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *646 + items: *647 examples: default: value: @@ -102136,9 +102212,9 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: - default: *648 + default: *649 '400': *14 '404': *6 x-github: @@ -102332,9 +102408,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: &650 + default: &651 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -102678,7 +102754,7 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: default: value: @@ -102826,15 +102902,15 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '200': description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: *650 + default: *651 '403': *27 '404': *6 x-github: @@ -102860,7 +102936,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 requestBody: required: true content: @@ -103031,10 +103107,10 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: *650 - add_credit: *650 + default: *651 + add_credit: *651 '403': *27 '404': *6 '422': @@ -103074,7 +103150,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '202': *37 '400': *14 @@ -103103,7 +103179,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '202': description: Response @@ -103244,7 +103320,7 @@ paths: application/json: schema: type: array - items: &651 + items: &652 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -103617,7 +103693,7 @@ paths: application/json: schema: type: array - items: *651 + items: *652 examples: default: value: @@ -103707,7 +103783,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -103801,7 +103877,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &653 + schema: &654 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -103901,7 +103977,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: default: value: @@ -104111,7 +104187,7 @@ paths: description: Response content: application/json: - schema: &654 + schema: &655 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -104123,7 +104199,7 @@ paths: required: - names examples: - default: &655 + default: &656 value: names: - octocat @@ -104178,9 +104254,9 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: - default: *655 + default: *656 '404': *6 '422': *7 x-github: @@ -104203,7 +104279,7 @@ paths: parameters: - *338 - *339 - - &656 + - &657 name: per description: The time frame to display results for. in: query @@ -104234,7 +104310,7 @@ paths: - 128 clones: type: array - items: &657 + items: &658 title: Traffic type: object properties: @@ -104482,7 +104558,7 @@ paths: parameters: - *338 - *339 - - *656 + - *657 responses: '200': description: Response @@ -104503,7 +104579,7 @@ paths: - 3782 views: type: array - items: *657 + items: *658 required: - uniques - count @@ -105275,7 +105351,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &658 + text_matches: &659 title: Search Result Text Matches type: array items: @@ -105438,7 +105514,7 @@ paths: enum: - author-date - committer-date - - &659 + - &660 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 @@ -105558,7 +105634,7 @@ paths: type: number node_id: type: string - text_matches: *658 + text_matches: *659 required: - sha - node_id @@ -105750,7 +105826,7 @@ paths: - interactions - created - updated - - *659 + - *660 - *17 - *19 - name: advanced_search @@ -105864,8 +105940,8 @@ paths: type: - string - 'null' - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -105892,7 +105968,7 @@ paths: - string - 'null' format: date-time - text_matches: *658 + text_matches: *659 pull_request: type: object properties: @@ -106166,7 +106242,7 @@ paths: enum: - created - updated - - *659 + - *660 - *17 - *19 responses: @@ -106211,7 +106287,7 @@ paths: - 'null' score: type: number - text_matches: *658 + text_matches: *659 required: - id - node_id @@ -106296,7 +106372,7 @@ paths: - forks - help-wanted-issues - updated - - *659 + - *660 - *17 - *19 responses: @@ -106542,7 +106618,7 @@ paths: - admin - pull - push - text_matches: *658 + text_matches: *659 temp_clone_token: type: string allow_merge_commit: @@ -106850,7 +106926,7 @@ paths: - string - 'null' format: uri - text_matches: *658 + text_matches: *659 related: type: - array @@ -107043,7 +107119,7 @@ paths: - followers - repositories - joined - - *659 + - *660 - *17 - *19 responses: @@ -107153,7 +107229,7 @@ paths: type: - boolean - 'null' - text_matches: *658 + text_matches: *659 blog: type: - string @@ -107235,7 +107311,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &662 + - &663 name: team_id description: The unique identifier of the team. in: path @@ -107276,7 +107352,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *662 + - *663 requestBody: required: true content: @@ -107377,7 +107453,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *662 + - *663 responses: '204': description: Response @@ -107406,7 +107482,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *662 + - *663 - *17 - *19 responses: @@ -107444,7 +107520,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *662 + - *663 - name: role description: Filters members returned by their role in the team. in: query @@ -107495,7 +107571,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *662 + - *663 - *70 responses: '204': @@ -107532,7 +107608,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *662 + - *663 - *70 responses: '204': @@ -107572,7 +107648,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *662 + - *663 - *70 responses: '204': @@ -107609,7 +107685,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *662 + - *663 - *70 responses: '200': @@ -107618,7 +107694,7 @@ paths: application/json: schema: *337 examples: - response-if-user-is-a-team-maintainer: *663 + response-if-user-is-a-team-maintainer: *664 '404': *6 x-github: githubCloudOnly: false @@ -107651,7 +107727,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *662 + - *663 - *70 requestBody: required: false @@ -107679,7 +107755,7 @@ paths: application/json: schema: *337 examples: - response-if-users-membership-with-team-is-now-pending: *664 + response-if-users-membership-with-team-is-now-pending: *665 '403': description: Forbidden if team synchronization is set up '422': @@ -107713,7 +107789,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *662 + - *663 - *70 responses: '204': @@ -107741,7 +107817,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *662 + - *663 - *17 - *19 responses: @@ -107783,7 +107859,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *662 + - *663 - *338 - *339 responses: @@ -107791,7 +107867,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *665 + schema: *666 examples: alternative-response-with-extra-repository-information: value: @@ -107941,7 +108017,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *662 + - *663 - *338 - *339 requestBody: @@ -107993,7 +108069,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *662 + - *663 - *338 - *339 responses: @@ -108020,7 +108096,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *662 + - *663 - *17 - *19 responses: @@ -108032,7 +108108,7 @@ paths: type: array items: *198 examples: - response-if-child-teams-exist: *666 + response-if-child-teams-exist: *667 headers: Link: *66 '404': *6 @@ -108065,7 +108141,7 @@ paths: application/json: schema: oneOf: - - &667 + - &668 title: Private User description: Private User type: object @@ -108315,7 +108391,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &692 + - &693 title: Public User description: Public User type: object @@ -108649,7 +108725,7 @@ paths: description: Response content: application/json: - schema: *667 + schema: *668 examples: default: value: @@ -109047,7 +109123,7 @@ paths: type: integer secrets: type: array - items: &668 + items: &669 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -109167,7 +109243,7 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: default: value: @@ -109580,7 +109656,7 @@ paths: description: Response content: application/json: - schema: &669 + schema: &670 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -109633,7 +109709,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &670 + default: &671 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -109678,9 +109754,9 @@ paths: description: Response content: application/json: - schema: *669 + schema: *670 examples: - default: *670 + default: *671 '404': *6 x-github: githubCloudOnly: false @@ -109719,7 +109795,7 @@ paths: type: array items: *458 examples: - default: *671 + default: *672 '304': *35 '500': *53 '401': *23 @@ -110685,7 +110761,7 @@ paths: type: array items: *260 examples: - default: &682 + default: &683 value: - id: 197 name: hello_docker @@ -110786,7 +110862,7 @@ paths: application/json: schema: type: array - items: &672 + items: &673 title: Email description: Email type: object @@ -110856,9 +110932,9 @@ paths: application/json: schema: type: array - items: *672 + items: *673 examples: - default: &684 + default: &685 value: - email: octocat@github.com verified: true @@ -110935,7 +111011,7 @@ paths: application/json: schema: type: array - items: *672 + items: *673 examples: default: value: @@ -111193,7 +111269,7 @@ paths: application/json: schema: type: array - items: &673 + items: &674 title: GPG Key description: A unique encryption key type: object @@ -111338,7 +111414,7 @@ paths: - subkeys - revoked examples: - default: &702 + default: &703 value: - id: 3 name: Octocat's GPG Key @@ -111423,9 +111499,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *674 examples: - default: &674 + default: &675 value: id: 3 name: Octocat's GPG Key @@ -111482,7 +111558,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &675 + - &676 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -111494,9 +111570,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *674 examples: - default: *674 + default: *675 '404': *6 '304': *35 '403': *27 @@ -111519,7 +111595,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *675 + - *676 responses: '204': description: Response @@ -111986,7 +112062,7 @@ paths: application/json: schema: type: array - items: &676 + items: &677 title: Key description: Key type: object @@ -112089,9 +112165,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: - default: &677 + default: &678 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -112130,9 +112206,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: - default: *677 + default: *678 '404': *6 '304': *35 '403': *27 @@ -112188,7 +112264,7 @@ paths: application/json: schema: type: array - items: &678 + items: &679 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -112267,7 +112343,7 @@ paths: - account - plan examples: - default: &679 + default: &680 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -112329,9 +112405,9 @@ paths: application/json: schema: type: array - items: *678 + items: *679 examples: - default: *679 + default: *680 headers: Link: *66 '304': *35 @@ -113349,7 +113425,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *255 - - *680 + - *681 responses: '204': description: Response @@ -113462,7 +113538,7 @@ paths: - docker - nuget - container - - *681 + - *682 - *19 - *17 responses: @@ -113474,8 +113550,8 @@ paths: type: array items: *260 examples: - default: *682 - '400': *683 + default: *683 + '400': *684 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -113504,7 +113580,7 @@ paths: application/json: schema: *260 examples: - default: &703 + default: &704 value: id: 40201 name: octo-name @@ -113866,9 +113942,9 @@ paths: application/json: schema: type: array - items: *672 + items: *673 examples: - default: *684 + default: *685 headers: Link: *66 '304': *35 @@ -113981,7 +114057,7 @@ paths: type: array items: *78 examples: - default: &691 + default: &692 summary: Default response value: - id: 1296269 @@ -114342,7 +114418,7 @@ paths: type: array items: *532 examples: - default: *685 + default: *686 headers: Link: *66 '304': *35 @@ -114422,7 +114498,7 @@ paths: application/json: schema: type: array - items: &686 + items: &687 title: Social account description: Social media account type: object @@ -114439,7 +114515,7 @@ paths: - provider - url examples: - default: &687 + default: &688 value: - provider: twitter url: https://twitter.com/github @@ -114502,9 +114578,9 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: - default: *687 + default: *688 '422': *15 '304': *35 '404': *6 @@ -114592,7 +114668,7 @@ paths: application/json: schema: type: array - items: &688 + items: &689 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -114612,7 +114688,7 @@ paths: - title - created_at examples: - default: &721 + default: &722 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -114677,9 +114753,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: &689 + default: &690 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -114709,7 +114785,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: - - &690 + - &691 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -114721,9 +114797,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: *689 + default: *690 '404': *6 '304': *35 '403': *27 @@ -114746,7 +114822,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: - - *690 + - *691 responses: '204': description: Response @@ -114775,7 +114851,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &722 + - &723 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 @@ -114800,11 +114876,11 @@ paths: type: array items: *78 examples: - default-response: *691 + default-response: *692 application/vnd.github.v3.star+json: schema: type: array - items: &723 + items: &724 title: Starred Repository description: Starred Repository type: object @@ -115173,10 +115249,10 @@ paths: application/json: schema: oneOf: - - *667 - - *692 + - *668 + - *693 examples: - default-response: &696 + default-response: &697 summary: Default response value: login: octocat @@ -115211,7 +115287,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &697 + response-with-git-hub-plan-information: &698 summary: Response with GitHub plan information value: login: octocat @@ -115268,7 +115344,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &694 + - &695 name: user_id description: The unique identifier of the user. in: path @@ -115334,7 +115410,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *693 + - *694 - *17 responses: '200': @@ -115369,7 +115445,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *694 + - *695 - *278 requestBody: required: true @@ -115444,7 +115520,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *695 + schema: *696 examples: table_view: summary: Response for creating a table view @@ -115496,11 +115572,11 @@ paths: application/json: schema: oneOf: - - *667 - - *692 + - *668 + - *693 examples: - default-response: *696 - response-with-git-hub-plan-information: *697 + default-response: *697 + response-with-git-hub-plan-information: *698 '404': *6 x-github: githubCloudOnly: false @@ -115550,8 +115626,8 @@ paths: required: - subject_digests examples: - default: *698 - withPredicateType: *699 + default: *699 + withPredicateType: *700 responses: '200': description: Response @@ -115591,7 +115667,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *700 + default: *701 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -116064,7 +116140,7 @@ paths: application/json: schema: *194 examples: - default: &701 + default: &702 summary: Example response for a user copilot space value: id: 42 @@ -116165,7 +116241,7 @@ paths: application/json: schema: *194 examples: - default: *701 + default: *702 '403': *27 '404': *6 x-github: @@ -116291,7 +116367,7 @@ paths: application/json: schema: *194 examples: - default: *701 + default: *702 '403': *27 '404': *6 '422': *15 @@ -117059,7 +117135,7 @@ paths: type: array items: *260 examples: - default: *682 + default: *683 '403': *27 '401': *23 x-github: @@ -117443,9 +117519,9 @@ paths: application/json: schema: type: array - items: *673 + items: *674 examples: - default: *702 + default: *703 headers: Link: *66 x-github: @@ -117674,7 +117750,7 @@ paths: - docker - nuget - container - - *681 + - *682 - *70 - *19 - *17 @@ -117687,10 +117763,10 @@ paths: type: array items: *260 examples: - default: *682 + default: *683 '403': *27 '401': *23 - '400': *683 + '400': *684 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117720,7 +117796,7 @@ paths: application/json: schema: *260 examples: - default: *703 + default: *704 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118069,7 +118145,7 @@ paths: type: array items: *281 examples: - default: *704 + default: *705 headers: Link: *66 '304': *35 @@ -118129,7 +118205,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *705 + items: *706 required: - name - data_type @@ -118145,7 +118221,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *706 + iteration_configuration: *707 required: - name - data_type @@ -118167,8 +118243,8 @@ paths: value: name: Due date data_type: date - single_select_field: *707 - iteration_field: *708 + single_select_field: *708 + iteration_field: *709 responses: '201': description: Response @@ -118176,11 +118252,11 @@ paths: application/json: schema: *281 examples: - text_field: *709 - number_field: *710 - date_field: *711 - single_select_field: *712 - iteration_field: *713 + text_field: *710 + number_field: *711 + date_field: *712 + single_select_field: *713 + iteration_field: *714 '304': *35 '403': *27 '401': *23 @@ -118202,7 +118278,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *278 - - *714 + - *715 - *70 responses: '200': @@ -118211,7 +118287,7 @@ paths: application/json: schema: *281 examples: - default: *715 + default: *716 headers: Link: *66 '304': *35 @@ -118568,7 +118644,7 @@ paths: parameters: - *278 - *70 - - *716 + - *717 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -118843,7 +118919,7 @@ paths: - *116 - *118 - *117 - - *717 + - *718 - *119 responses: '200': @@ -118974,7 +119050,7 @@ paths: parameters: - *70 - *116 - - *718 + - *719 - *117 responses: '200': @@ -119073,9 +119149,9 @@ paths: - *116 - *118 - *117 - - *719 - - *119 - *720 + - *119 + - *721 responses: '200': description: Response when getting a billing usage summary @@ -119209,9 +119285,9 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: - default: *687 + default: *688 headers: Link: *66 x-github: @@ -119241,9 +119317,9 @@ paths: application/json: schema: type: array - items: *688 + items: *689 examples: - default: *721 + default: *722 headers: Link: *66 x-github: @@ -119268,7 +119344,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *70 - - *722 + - *723 - *60 - *17 - *19 @@ -119280,11 +119356,11 @@ paths: schema: anyOf: - type: array - items: *723 + items: *724 - type: array items: *78 examples: - default-response: *691 + default-response: *692 headers: Link: *66 x-github: @@ -119444,7 +119520,7 @@ webhooks: type: string enum: - disabled - enterprise: &724 + enterprise: &725 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -119513,7 +119589,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &725 + installation: &726 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -119534,7 +119610,7 @@ webhooks: required: - id - node_id - organization: &726 + organization: &727 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -119607,7 +119683,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &727 + repository: &728 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -120522,10 +120598,10 @@ webhooks: type: string enum: - enabled - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -120601,11 +120677,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: &728 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + rule: &729 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) @@ -120828,11 +120904,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: *728 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + rule: *729 sender: *4 required: - action @@ -121020,11 +121096,11 @@ webhooks: - everyone required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: *728 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + rule: *729 sender: *4 required: - action @@ -121108,7 +121184,7 @@ webhooks: type: string enum: - completed - check_run: &730 + check_run: &731 title: CheckRun description: A check performed on the code of a given code change type: object @@ -121218,7 +121294,7 @@ webhooks: - examples: - neutral - deployment: *729 + deployment: *730 details_url: type: string examples: @@ -121316,10 +121392,10 @@ webhooks: - output - app - pull_requests - installation: *725 - enterprise: *724 - organization: *726 - repository: *727 + installation: *726 + enterprise: *725 + organization: *727 + repository: *728 sender: *4 required: - check_run @@ -121710,11 +121786,11 @@ webhooks: type: string enum: - created - check_run: *730 - installation: *725 - enterprise: *724 - organization: *726 - repository: *727 + check_run: *731 + installation: *726 + enterprise: *725 + organization: *727 + repository: *728 sender: *4 required: - check_run @@ -122108,11 +122184,11 @@ webhooks: type: string enum: - requested_action - check_run: *730 - installation: *725 - enterprise: *724 - organization: *726 - repository: *727 + check_run: *731 + installation: *726 + enterprise: *725 + organization: *727 + repository: *728 requested_action: description: The action requested by the user. type: object @@ -122515,11 +122591,11 @@ webhooks: type: string enum: - rerequested - check_run: *730 - installation: *725 - enterprise: *724 - organization: *726 - repository: *727 + check_run: *731 + installation: *726 + enterprise: *725 + organization: *727 + repository: *728 sender: *4 required: - check_run @@ -123504,10 +123580,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -124216,10 +124292,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -124922,10 +124998,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -125246,20 +125322,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &731 + commit_oid: &732 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: *724 - installation: *725 - organization: *726 - ref: &732 + enterprise: *725 + installation: *726 + organization: *727 + ref: &733 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: *727 + repository: *728 sender: *4 required: - action @@ -125667,12 +125743,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *731 - enterprise: *724 - installation: *725 - organization: *726 - ref: *732 - repository: *727 + commit_oid: *732 + enterprise: *725 + installation: *726 + organization: *727 + ref: *733 + repository: *728 sender: *4 required: - action @@ -125955,12 +126031,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *731 - enterprise: *724 - installation: *725 - organization: *726 - ref: *732 - repository: *727 + commit_oid: *732 + enterprise: *725 + installation: *726 + organization: *727 + ref: *733 + repository: *728 sender: *4 required: - action @@ -126306,12 +126382,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *731 - enterprise: *724 - installation: *725 - organization: *726 - ref: *732 - repository: *727 + commit_oid: *732 + enterprise: *725 + installation: *726 + organization: *727 + ref: *733 + repository: *728 sender: *4 required: - action @@ -126601,9 +126677,9 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -126611,7 +126687,7 @@ webhooks: type: - string - 'null' - repository: *727 + repository: *728 sender: *4 required: - action @@ -126857,12 +126933,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *731 - enterprise: *724 - installation: *725 - organization: *726 - ref: *732 - repository: *727 + commit_oid: *732 + enterprise: *725 + installation: *726 + organization: *727 + ref: *733 + repository: *728 sender: *4 required: - action @@ -127183,10 +127259,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -127446,10 +127522,10 @@ webhooks: - updated_at - author_association - body - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -127530,18 +127606,18 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *726 - pusher_type: &733 + organization: *727 + pusher_type: &734 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &734 + ref: &735 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -127551,7 +127627,7 @@ webhooks: enum: - tag - branch - repository: *727 + repository: *728 sender: *4 required: - ref @@ -127634,9 +127710,9 @@ webhooks: enum: - created definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -127721,9 +127797,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -127801,9 +127877,9 @@ webhooks: enum: - promote_to_enterprise definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -127881,9 +127957,9 @@ webhooks: enum: - updated definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -127960,10 +128036,10 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - repository: *727 - organization: *726 + enterprise: *725 + installation: *726 + repository: *728 + organization: *727 sender: *4 new_property_values: type: array @@ -128048,18 +128124,18 @@ webhooks: title: delete event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - pusher_type: *733 - ref: *734 + enterprise: *725 + installation: *726 + organization: *727 + pusher_type: *734 + ref: *735 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *727 + repository: *728 sender: *4 required: - ref @@ -128140,10 +128216,10 @@ webhooks: enum: - assignees_changed alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128224,10 +128300,10 @@ webhooks: enum: - auto_dismissed alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128309,10 +128385,10 @@ webhooks: enum: - auto_reopened alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128394,10 +128470,10 @@ webhooks: enum: - created alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128477,10 +128553,10 @@ webhooks: enum: - dismissed alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128560,10 +128636,10 @@ webhooks: enum: - fixed alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128644,10 +128720,10 @@ webhooks: enum: - reintroduced alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128727,10 +128803,10 @@ webhooks: enum: - reopened alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -128807,9 +128883,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - key: &735 + enterprise: *725 + installation: *726 + key: &736 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -128847,8 +128923,8 @@ webhooks: - verified - created_at - read_only - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -128925,11 +129001,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - key: *735 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + key: *736 + organization: *727 + repository: *728 sender: *4 required: - action @@ -129496,12 +129572,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: &739 + workflow: &740 title: Workflow type: - object @@ -130256,9 +130332,9 @@ webhooks: pull_requests: type: array items: *579 - repository: *727 - organization: *726 - installation: *725 + repository: *728 + organization: *727 + installation: *726 sender: *4 responses: '200': @@ -130329,7 +130405,7 @@ webhooks: type: string enum: - approved - approver: &736 + approver: &737 type: object properties: avatar_url: @@ -130372,11 +130448,11 @@ webhooks: type: string comment: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - reviewers: &737 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + reviewers: &738 type: array items: type: object @@ -130457,7 +130533,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &738 + workflow_job_run: &739 type: object properties: conclusion: @@ -131203,18 +131279,18 @@ webhooks: type: string enum: - rejected - approver: *736 + approver: *737 comment: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - reviewers: *737 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + reviewers: *738 sender: *4 since: type: string - workflow_job_run: *738 + workflow_job_run: *739 workflow_job_runs: type: array items: @@ -131931,13 +132007,13 @@ webhooks: type: string enum: - requested - enterprise: *724 + enterprise: *725 environment: type: string - installation: *725 - organization: *726 - repository: *727 - requestor: &744 + installation: *726 + organization: *727 + repository: *728 + requestor: &745 title: User type: - object @@ -133870,12 +133946,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: *739 + workflow: *740 workflow_run: title: Deployment Workflow Run type: @@ -134566,7 +134642,7 @@ webhooks: type: string enum: - answered - answer: &742 + answer: &743 type: object properties: author_association: @@ -134726,11 +134802,11 @@ webhooks: - created_at - updated_at - body - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -134857,11 +134933,11 @@ webhooks: - from required: - category - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -134944,11 +135020,11 @@ webhooks: type: string enum: - closed - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135030,7 +135106,7 @@ webhooks: type: string enum: - created - comment: &741 + comment: &742 type: object properties: author_association: @@ -135190,11 +135266,11 @@ webhooks: - updated_at - body - reactions - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135277,12 +135353,12 @@ webhooks: type: string enum: - deleted - comment: *741 - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + comment: *742 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135377,12 +135453,12 @@ webhooks: - from required: - body - comment: *741 - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + comment: *742 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135466,11 +135542,11 @@ webhooks: type: string enum: - created - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135552,11 +135628,11 @@ webhooks: type: string enum: - deleted - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135656,11 +135732,11 @@ webhooks: type: string required: - from - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135742,10 +135818,10 @@ webhooks: type: string enum: - labeled - discussion: *740 - enterprise: *724 - installation: *725 - label: &743 + discussion: *741 + enterprise: *725 + installation: *726 + label: &744 title: Label type: object properties: @@ -135778,8 +135854,8 @@ webhooks: - color - default - description - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135862,11 +135938,11 @@ webhooks: type: string enum: - locked - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135948,11 +136024,11 @@ webhooks: type: string enum: - pinned - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136034,11 +136110,11 @@ webhooks: type: string enum: - reopened - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136123,16 +136199,16 @@ webhooks: changes: type: object properties: - new_discussion: *740 - new_repository: *727 + new_discussion: *741 + new_repository: *728 required: - new_discussion - new_repository - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136215,10 +136291,10 @@ webhooks: type: string enum: - unanswered - discussion: *740 - old_answer: *742 - organization: *726 - repository: *727 + discussion: *741 + old_answer: *743 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136300,12 +136376,12 @@ webhooks: type: string enum: - unlabeled - discussion: *740 - enterprise: *724 - installation: *725 - label: *743 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136388,11 +136464,11 @@ webhooks: type: string enum: - unlocked - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136474,11 +136550,11 @@ webhooks: type: string enum: - unpinned - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136551,7 +136627,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *724 + enterprise: *725 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -137229,9 +137305,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - forkee @@ -137377,9 +137453,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pages: description: The pages that were updated. type: array @@ -137417,7 +137493,7 @@ webhooks: - action - sha - html_url - repository: *727 + repository: *728 sender: *4 required: - pages @@ -137493,10 +137569,10 @@ webhooks: type: string enum: - created - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: &745 + organization: *727 + repositories: &746 description: An array of repository objects that the installation can access. type: array @@ -137522,8 +137598,8 @@ webhooks: - name - full_name - private - repository: *727 - requester: *744 + repository: *728 + requester: *745 sender: *4 required: - action @@ -137598,11 +137674,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: *745 - repository: *727 + organization: *727 + repositories: *746 + repository: *728 requester: type: - 'null' @@ -137679,11 +137755,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: *745 - repository: *727 + organization: *727 + repositories: *746 + repository: *728 requester: type: - 'null' @@ -137760,10 +137836,10 @@ webhooks: type: string enum: - added - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories_added: &746 + organization: *727 + repositories_added: &747 description: An array of repository objects, which were added to the installation. type: array @@ -137809,15 +137885,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *727 - repository_selection: &747 + repository: *728 + repository_selection: &748 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *744 + requester: *745 sender: *4 required: - action @@ -137896,10 +137972,10 @@ webhooks: type: string enum: - removed - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories_added: *746 + organization: *727 + repositories_added: *747 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -137926,9 +138002,9 @@ webhooks: - name - full_name - private - repository: *727 - repository_selection: *747 - requester: *744 + repository: *728 + repository_selection: *748 + requester: *745 sender: *4 required: - action @@ -138007,11 +138083,11 @@ webhooks: type: string enum: - suspend - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: *745 - repository: *727 + organization: *727 + repositories: *746 + repository: *728 requester: type: - 'null' @@ -138193,10 +138269,10 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 target_type: type: string @@ -138275,11 +138351,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: *745 - repository: *727 + organization: *727 + repositories: *746 + repository: *728 requester: type: - 'null' @@ -138531,8 +138607,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -139344,8 +139420,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -139706,8 +139782,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -139787,7 +139863,7 @@ webhooks: type: string enum: - deleted - comment: &748 + comment: &749 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -139958,8 +140034,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140767,8 +140843,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141131,8 +141207,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -141212,7 +141288,7 @@ webhooks: type: string enum: - edited - changes: &772 + changes: &773 description: The changes to the comment. type: object properties: @@ -141224,9 +141300,9 @@ webhooks: type: string required: - from - comment: *748 - enterprise: *724 - installation: *725 + comment: *749 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142037,8 +142113,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142399,8 +142475,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -142481,9 +142557,9 @@ webhooks: type: string enum: - pinned - comment: *748 - enterprise: *724 - installation: *725 + comment: *749 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143296,8 +143372,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143660,8 +143736,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -143741,9 +143817,9 @@ webhooks: type: string enum: - unpinned - comment: *748 - enterprise: *724 - installation: *725 + comment: *749 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -144556,8 +144632,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144920,8 +144996,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145010,9 +145086,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145101,9 +145177,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145191,9 +145267,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145282,9 +145358,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145364,10 +145440,10 @@ webhooks: type: string enum: - assigned - assignee: *744 - enterprise: *724 - installation: *725 - issue: &749 + assignee: *745 + enterprise: *725 + installation: *726 + issue: &750 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -146178,8 +146254,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -146302,8 +146378,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -146383,8 +146459,8 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -147200,8 +147276,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -147467,8 +147543,8 @@ webhooks: required: - state - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -147547,8 +147623,8 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -148355,8 +148431,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -148478,8 +148554,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -148558,8 +148634,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149389,8 +149465,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -149491,7 +149567,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &750 + milestone: &751 title: Milestone description: A collection of related issues and pull requests. type: object @@ -149634,8 +149710,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -149734,8 +149810,8 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150546,8 +150622,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -150670,9 +150746,9 @@ webhooks: - active_lock_reason - body - reactions - label: *743 - organization: *726 - repository: *727 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -150752,9 +150828,9 @@ webhooks: type: string enum: - field_added - enterprise: *724 - installation: *725 - issue: *749 + enterprise: *725 + installation: *726 + issue: *750 issue_field: type: object description: The issue field whose value was set or updated on the @@ -150873,8 +150949,8 @@ webhooks: - id required: - from - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -150954,9 +151030,9 @@ webhooks: type: string enum: - field_removed - enterprise: *724 - installation: *725 - issue: *749 + enterprise: *725 + installation: *726 + issue: *750 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -151019,8 +151095,8 @@ webhooks: - 'null' required: - id - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -151100,8 +151176,8 @@ webhooks: type: string enum: - labeled - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151911,8 +151987,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -152035,9 +152111,9 @@ webhooks: - active_lock_reason - body - reactions - label: *743 - organization: *726 - repository: *727 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -152117,8 +152193,8 @@ webhooks: type: string enum: - locked - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152953,8 +153029,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -153054,8 +153130,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -153134,8 +153210,8 @@ webhooks: type: string enum: - milestoned - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153964,8 +154040,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -154065,9 +154141,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *750 - organization: *726 - repository: *727 + milestone: *751 + organization: *727 + repository: *728 sender: *4 required: - action @@ -154954,8 +155030,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -155550,8 +155626,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156358,8 +156434,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -156485,8 +156561,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -156566,9 +156642,9 @@ webhooks: type: string enum: - pinned - enterprise: *724 - installation: *725 - issue: &751 + enterprise: *725 + installation: *726 + issue: &752 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -157373,8 +157449,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -157496,8 +157572,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -157576,8 +157652,8 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -158410,8 +158486,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -158512,8 +158588,8 @@ webhooks: user_view_type: type: string type: *243 - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -159401,8 +159477,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -160015,11 +160091,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *724 - installation: *725 - issue: *751 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + issue: *752 + organization: *727 + repository: *728 sender: *4 required: - action @@ -160099,12 +160175,12 @@ webhooks: type: string enum: - typed - enterprise: *724 - installation: *725 - issue: *749 + enterprise: *725 + installation: *726 + issue: *750 type: *243 - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -160185,7 +160261,7 @@ webhooks: type: string enum: - unassigned - assignee: &775 + assignee: &776 title: User type: - object @@ -160257,11 +160333,11 @@ webhooks: required: - login - id - enterprise: *724 - installation: *725 - issue: *749 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + issue: *750 + organization: *727 + repository: *728 sender: *4 required: - action @@ -160340,12 +160416,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *724 - installation: *725 - issue: *749 - label: *743 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + issue: *750 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -160425,8 +160501,8 @@ webhooks: type: string enum: - unlocked - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -161259,8 +161335,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -161360,8 +161436,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161441,11 +161517,11 @@ webhooks: type: string enum: - unpinned - enterprise: *724 - installation: *725 - issue: *751 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + issue: *752 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161524,12 +161600,12 @@ webhooks: type: string enum: - untyped - enterprise: *724 - installation: *725 - issue: *749 + enterprise: *725 + installation: *726 + issue: *750 type: *243 - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161609,11 +161685,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - label: *743 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161691,11 +161767,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - label: *743 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161805,11 +161881,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - label: *743 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161891,9 +161967,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: &752 + enterprise: *725 + installation: *726 + marketplace_purchase: &753 title: Marketplace Purchase type: object required: @@ -161981,8 +162057,8 @@ webhooks: type: integer unit_count: type: integer - organization: *726 - previous_marketplace_purchase: &753 + organization: *727 + previous_marketplace_purchase: &754 title: Marketplace Purchase type: object properties: @@ -162066,7 +162142,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -162146,10 +162222,10 @@ webhooks: - changed effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *752 - organization: *726 + enterprise: *725 + installation: *726 + marketplace_purchase: *753 + organization: *727 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -162237,7 +162313,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -162319,10 +162395,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *752 - organization: *726 + enterprise: *725 + installation: *726 + marketplace_purchase: *753 + organization: *727 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -162408,7 +162484,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -162489,8 +162565,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 marketplace_purchase: title: Marketplace Purchase type: object @@ -162576,9 +162652,9 @@ webhooks: type: integer unit_count: type: integer - organization: *726 - previous_marketplace_purchase: *753 - repository: *727 + organization: *727 + previous_marketplace_purchase: *754 + repository: *728 sender: *4 required: - action @@ -162658,12 +162734,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *752 - organization: *726 - previous_marketplace_purchase: *753 - repository: *727 + enterprise: *725 + installation: *726 + marketplace_purchase: *753 + organization: *727 + previous_marketplace_purchase: *754 + repository: *728 sender: *4 required: - action @@ -162765,11 +162841,11 @@ webhooks: type: string required: - to - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 sender: *4 required: - action @@ -162871,11 +162947,11 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 sender: *4 required: - action @@ -162954,11 +163030,11 @@ webhooks: type: string enum: - removed - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 sender: *4 required: - action @@ -163036,11 +163112,11 @@ webhooks: type: string enum: - added - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 scope: description: The scope of the membership. Currently, can only be `team`. @@ -163118,7 +163194,7 @@ webhooks: required: - login - id - team: &754 + team: &755 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -163348,11 +163424,11 @@ webhooks: type: string enum: - removed - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 scope: description: The scope of the membership. Currently, can only be `team`. @@ -163431,7 +163507,7 @@ webhooks: required: - login - id - team: *754 + team: *755 required: - action - scope @@ -163513,8 +163589,8 @@ webhooks: type: string enum: - checks_requested - installation: *725 - merge_group: &755 + installation: *726 + merge_group: &756 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -163540,8 +163616,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -163627,10 +163703,10 @@ webhooks: - merged - invalidated - dequeued - installation: *725 - merge_group: *755 - organization: *726 - repository: *727 + installation: *726 + merge_group: *756 + organization: *727 + repository: *728 sender: *4 required: - action @@ -163703,7 +163779,7 @@ webhooks: type: string enum: - deleted - enterprise: *724 + enterprise: *725 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -163812,12 +163888,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *725 - organization: *726 + installation: *726 + organization: *727 repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -163897,11 +163973,11 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - milestone: *750 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + milestone: *751 + organization: *727 + repository: *728 sender: *4 required: - action @@ -163980,9 +164056,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - milestone: &756 + enterprise: *725 + installation: *726 + milestone: &757 title: Milestone description: A collection of related issues and pull requests. type: object @@ -164124,8 +164200,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164204,11 +164280,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - milestone: *750 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + milestone: *751 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164318,11 +164394,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - milestone: *750 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + milestone: *751 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164402,11 +164478,11 @@ webhooks: type: string enum: - opened - enterprise: *724 - installation: *725 - milestone: *756 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + milestone: *757 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164485,11 +164561,11 @@ webhooks: type: string enum: - blocked - blocked_user: *744 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + blocked_user: *745 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164568,11 +164644,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *744 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + blocked_user: *745 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164651,9 +164727,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - membership: &757 + enterprise: *725 + installation: *726 + membership: &758 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -164763,8 +164839,8 @@ webhooks: - role - organization_url - user - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164842,11 +164918,11 @@ webhooks: type: string enum: - member_added - enterprise: *724 - installation: *725 - membership: *757 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + membership: *758 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164925,8 +165001,8 @@ webhooks: type: string enum: - member_invited - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -165048,10 +165124,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 - user: *744 + user: *745 required: - action - invitation @@ -165129,11 +165205,11 @@ webhooks: type: string enum: - member_removed - enterprise: *724 - installation: *725 - membership: *757 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + membership: *758 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165220,11 +165296,11 @@ webhooks: properties: from: type: string - enterprise: *724 - installation: *725 - membership: *757 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + membership: *758 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165301,9 +165377,9 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 package: description: Information about the package. type: object @@ -165826,7 +165902,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &758 + items: &759 title: Ruby Gems metadata type: object properties: @@ -165923,7 +165999,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -165999,9 +166075,9 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 package: description: Information about the package. type: object @@ -166363,7 +166439,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *758 + items: *759 source_url: type: string format: uri @@ -166434,7 +166510,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -166614,12 +166690,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *724 + enterprise: *725 id: type: integer - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - id @@ -166696,7 +166772,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &759 + personal_access_token_request: &760 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -166846,10 +166922,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *724 - organization: *726 + enterprise: *725 + organization: *727 sender: *4 - installation: *725 + installation: *726 required: - action - personal_access_token_request @@ -166926,11 +167002,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *759 - enterprise: *724 - organization: *726 + personal_access_token_request: *760 + enterprise: *725 + organization: *727 sender: *4 - installation: *725 + installation: *726 required: - action - personal_access_token_request @@ -167006,11 +167082,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *759 - enterprise: *724 - organization: *726 + personal_access_token_request: *760 + enterprise: *725 + organization: *727 sender: *4 - installation: *725 + installation: *726 required: - action - personal_access_token_request @@ -167085,11 +167161,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *759 - organization: *726 - enterprise: *724 + personal_access_token_request: *760 + organization: *727 + enterprise: *725 sender: *4 - installation: *725 + installation: *726 required: - action - personal_access_token_request @@ -167194,7 +167270,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *760 + last_response: *761 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -167226,8 +167302,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 zen: description: Random string of GitHub zen. @@ -167472,10 +167548,10 @@ webhooks: - from required: - note - enterprise: *724 - installation: *725 - organization: *726 - project_card: &761 + enterprise: *725 + installation: *726 + organization: *727 + project_card: &762 title: Project Card type: object properties: @@ -167598,7 +167674,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -167679,11 +167755,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project_card: *761 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project_card: *762 + repository: *728 sender: *4 required: - action @@ -167763,9 +167839,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 project_card: title: Project Card type: object @@ -167895,7 +167971,7 @@ webhooks: repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -167989,11 +168065,11 @@ webhooks: - from required: - note - enterprise: *724 - installation: *725 - organization: *726 - project_card: *761 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project_card: *762 + repository: *728 sender: *4 required: - action @@ -168087,9 +168163,9 @@ webhooks: - from required: - column_id - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 project_card: allOf: - title: Project Card @@ -168286,7 +168362,7 @@ webhooks: type: string required: - after_id - repository: *727 + repository: *728 sender: *4 required: - action @@ -168366,10 +168442,10 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - organization: *726 - project: &763 + enterprise: *725 + installation: *726 + organization: *727 + project: &764 title: Project type: object properties: @@ -168496,7 +168572,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -168576,10 +168652,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project_column: &762 + enterprise: *725 + installation: *726 + organization: *727 + project_column: &763 title: Project Column type: object properties: @@ -168619,7 +168695,7 @@ webhooks: - name - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -168698,14 +168774,14 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - project_column: *762 + enterprise: *725 + installation: *726 + organization: *727 + project_column: *763 repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -168794,11 +168870,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - project_column: *762 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project_column: *763 + repository: *728 sender: *4 required: - action @@ -168878,11 +168954,11 @@ webhooks: type: string enum: - moved - enterprise: *724 - installation: *725 - organization: *726 - project_column: *762 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project_column: *763 + repository: *728 sender: *4 required: - action @@ -168962,11 +169038,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project: *763 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project: *764 + repository: *728 sender: *4 required: - action @@ -169046,14 +169122,14 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - project: *763 + enterprise: *725 + installation: *726 + organization: *727 + project: *764 repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -169154,11 +169230,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - project: *763 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project: *764 + repository: *728 sender: *4 required: - action @@ -169237,11 +169313,11 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 - organization: *726 - project: *763 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project: *764 + repository: *728 sender: *4 required: - action @@ -169322,8 +169398,8 @@ webhooks: type: string enum: - closed - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -169405,8 +169481,8 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -169488,8 +169564,8 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -169611,8 +169687,8 @@ webhooks: type: string to: type: string - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -169696,7 +169772,7 @@ webhooks: type: string enum: - archived - changes: &767 + changes: &768 type: object properties: archived_at: @@ -169712,9 +169788,9 @@ webhooks: - string - 'null' format: date-time - installation: *725 - organization: *726 - projects_v2_item: &764 + installation: *726 + organization: *727 + projects_v2_item: &765 title: Projects v2 Item description: An item belonging to a project type: object @@ -169854,9 +169930,9 @@ webhooks: - 'null' to: type: string - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -169938,9 +170014,9 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -170021,9 +170097,9 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -170128,7 +170204,7 @@ webhooks: oneOf: - type: string - type: integer - - &765 + - &766 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -170152,7 +170228,7 @@ webhooks: required: - id - name - - &766 + - &767 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -170192,8 +170268,8 @@ webhooks: oneOf: - type: string - type: integer - - *765 - *766 + - *767 type: - 'null' - string @@ -170216,9 +170292,9 @@ webhooks: - 'null' required: - body - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -170315,9 +170391,9 @@ webhooks: type: - string - 'null' - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -170400,10 +170476,10 @@ webhooks: type: string enum: - restored - changes: *767 - installation: *725 - organization: *726 - projects_v2_item: *764 + changes: *768 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -170485,8 +170561,8 @@ webhooks: type: string enum: - reopened - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -170568,9 +170644,9 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 - projects_v2_status_update: *768 + installation: *726 + organization: *727 + projects_v2_status_update: *769 sender: *4 required: - action @@ -170651,9 +170727,9 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 - projects_v2_status_update: *768 + installation: *726 + organization: *727 + projects_v2_status_update: *769 sender: *4 required: - action @@ -170799,9 +170875,9 @@ webhooks: - string - 'null' format: date - installation: *725 - organization: *726 - projects_v2_status_update: *768 + installation: *726 + organization: *727 + projects_v2_status_update: *769 sender: *4 required: - action @@ -170872,10 +170948,10 @@ webhooks: title: public event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - repository @@ -170952,13 +171028,13 @@ webhooks: type: string enum: - assigned - assignee: *744 - enterprise: *724 - installation: *725 - number: &769 + assignee: *745 + enterprise: *725 + installation: *726 + number: &770 description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -173310,7 +173386,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -173392,11 +173468,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -175741,7 +175817,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *728 sender: *4 required: - action @@ -175823,11 +175899,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -178172,7 +178248,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *728 sender: *4 required: - action @@ -178254,11 +178330,11 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: &770 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: &771 allOf: - *579 - type: object @@ -178322,7 +178398,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *727 + repository: *728 sender: *4 required: - action @@ -178403,12 +178479,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -178488,11 +178564,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *724 + enterprise: *725 milestone: *279 - number: *769 - organization: *726 - pull_request: &771 + number: *770 + organization: *727 + pull_request: &772 title: Pull Request type: object properties: @@ -180836,7 +180912,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -180915,11 +180991,11 @@ webhooks: type: string enum: - dequeued - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -183282,7 +183358,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *727 + repository: *728 sender: *4 required: - action @@ -183406,12 +183482,12 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -183491,11 +183567,11 @@ webhooks: type: string enum: - enqueued - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -185843,7 +185919,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -185923,11 +185999,11 @@ webhooks: type: string enum: - labeled - enterprise: *724 - installation: *725 - label: *743 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + label: *744 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -188278,7 +188354,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -188359,10 +188435,10 @@ webhooks: type: string enum: - locked - enterprise: *724 - installation: *725 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -190711,7 +190787,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -190791,12 +190867,12 @@ webhooks: type: string enum: - milestoned - enterprise: *724 + enterprise: *725 milestone: *279 - number: *769 - organization: *726 - pull_request: *771 - repository: *727 + number: *770 + organization: *727 + pull_request: *772 + repository: *728 sender: *4 required: - action @@ -190875,12 +190951,12 @@ webhooks: type: string enum: - opened - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -190961,12 +191037,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -191046,12 +191122,12 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -191426,9 +191502,9 @@ webhooks: - start_side - side - reactions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: type: object properties: @@ -193661,7 +193737,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -193741,7 +193817,7 @@ webhooks: type: string enum: - deleted - comment: &773 + comment: &774 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -194034,9 +194110,9 @@ webhooks: - start_side - side - reactions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: type: object properties: @@ -196257,7 +196333,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -196337,11 +196413,11 @@ webhooks: type: string enum: - edited - changes: *772 - comment: *773 - enterprise: *724 - installation: *725 - organization: *726 + changes: *773 + comment: *774 + enterprise: *725 + installation: *726 + organization: *727 pull_request: type: object properties: @@ -198565,7 +198641,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -198646,9 +198722,9 @@ webhooks: type: string enum: - dismissed - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -200884,7 +200960,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 review: description: The review that was affected. type: object @@ -201135,9 +201211,9 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -203246,8 +203322,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: &774 + repository: *728 + review: &775 description: The review that was affected. type: object properties: @@ -203485,12 +203561,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -205840,7 +205916,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_reviewer: title: User type: @@ -205926,12 +206002,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -208288,7 +208364,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_team: title: Team description: Groups of organization members that gives permissions @@ -208483,12 +208559,12 @@ webhooks: type: string enum: - review_requested - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -210840,7 +210916,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_reviewer: title: User type: @@ -210927,12 +211003,12 @@ webhooks: type: string enum: - review_requested - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -213275,7 +213351,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_team: title: Team description: Groups of organization members that gives permissions @@ -213459,9 +213535,9 @@ webhooks: type: string enum: - submitted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -215700,8 +215776,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: *774 + repository: *728 + review: *775 sender: *4 required: - action @@ -215781,9 +215857,9 @@ webhooks: type: string enum: - resolved - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -217931,7 +218007,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 sender: *4 thread: type: object @@ -218328,9 +218404,9 @@ webhooks: type: string enum: - unresolved - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -220461,7 +220537,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 sender: *4 thread: type: object @@ -220860,10 +220936,10 @@ webhooks: type: string before: type: string - enterprise: *724 - installation: *725 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -223201,7 +223277,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -223283,11 +223359,11 @@ webhooks: type: string enum: - unassigned - assignee: *775 - enterprise: *724 - installation: *725 - number: *769 - organization: *726 + assignee: *776 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -225640,7 +225716,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -225719,11 +225795,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *724 - installation: *725 - label: *743 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + label: *744 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -228065,7 +228141,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -228146,10 +228222,10 @@ webhooks: type: string enum: - unlocked - enterprise: *724 - installation: *725 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -230481,7 +230557,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -230684,7 +230760,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *724 + enterprise: *725 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -230779,8 +230855,8 @@ webhooks: - url - author - committer - installation: *725 - organization: *726 + installation: *726 + organization: *727 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -231379,9 +231455,9 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 registry_package: type: object properties: @@ -231858,7 +231934,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *758 + items: *759 summary: type: string tag_name: @@ -231914,7 +231990,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -231992,9 +232068,9 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 registry_package: type: object properties: @@ -232306,7 +232382,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *758 + items: *759 summary: type: string tag_name: @@ -232356,7 +232432,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -232433,10 +232509,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - release: &776 + enterprise: *725 + installation: *726 + organization: *727 + release: &777 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -232767,7 +232843,7 @@ webhooks: - updated_at - zipball_url - body - repository: *727 + repository: *728 sender: *4 required: - action @@ -232844,11 +232920,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - release: *776 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + release: *777 + repository: *728 sender: *4 required: - action @@ -232965,11 +233041,11 @@ webhooks: type: boolean required: - to - enterprise: *724 - installation: *725 - organization: *726 - release: *776 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + release: *777 + repository: *728 sender: *4 required: - action @@ -233047,9 +233123,9 @@ webhooks: type: string enum: - prereleased - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -233385,7 +233461,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *728 sender: *4 required: - action @@ -233461,10 +233537,10 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - release: &777 + enterprise: *725 + installation: *726 + organization: *727 + release: &778 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -233797,7 +233873,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *728 sender: *4 required: - action @@ -233873,11 +233949,11 @@ webhooks: type: string enum: - released - enterprise: *724 - installation: *725 - organization: *726 - release: *776 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + release: *777 + repository: *728 sender: *4 required: - action @@ -233953,11 +234029,11 @@ webhooks: type: string enum: - unpublished - enterprise: *724 - installation: *725 - organization: *726 - release: *777 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + release: *778 + repository: *728 sender: *4 required: - action @@ -234033,11 +234109,11 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - repository_advisory: *647 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + repository_advisory: *648 sender: *4 required: - action @@ -234113,11 +234189,11 @@ webhooks: type: string enum: - reported - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - repository_advisory: *647 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + repository_advisory: *648 sender: *4 required: - action @@ -234193,10 +234269,10 @@ webhooks: type: string enum: - archived - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -234273,10 +234349,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -234354,10 +234430,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -234442,10 +234518,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -234560,10 +234636,10 @@ webhooks: - 'null' items: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -234635,10 +234711,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 status: type: string @@ -234719,10 +234795,10 @@ webhooks: type: string enum: - privatized - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -234799,10 +234875,10 @@ webhooks: type: string enum: - publicized - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -234896,10 +234972,10 @@ webhooks: - name required: - repository - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -234979,10 +235055,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 repository_ruleset: *321 sender: *4 required: @@ -235061,10 +235137,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 repository_ruleset: *321 sender: *4 required: @@ -235143,10 +235219,10 @@ webhooks: type: string enum: - edited - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 repository_ruleset: *321 changes: type: object @@ -235454,10 +235530,10 @@ webhooks: - from required: - owner - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -235535,10 +235611,10 @@ webhooks: type: string enum: - unarchived - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -235616,7 +235692,7 @@ webhooks: type: string enum: - create - alert: &778 + alert: &779 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -235741,10 +235817,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -235954,10 +236030,10 @@ webhooks: type: string enum: - dismissed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236035,11 +236111,11 @@ webhooks: type: string enum: - reopen - alert: *778 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *779 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236241,10 +236317,10 @@ webhooks: enum: - fixed - open - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236322,7 +236398,7 @@ webhooks: type: string enum: - assigned - alert: &779 + alert: &780 type: object properties: number: *178 @@ -236462,10 +236538,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236543,11 +236619,11 @@ webhooks: type: string enum: - created - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236628,11 +236704,11 @@ webhooks: type: string enum: - created - alert: *779 - installation: *725 - location: *780 - organization: *726 - repository: *727 + alert: *780 + installation: *726 + location: *781 + organization: *727 + repository: *728 sender: *4 required: - location @@ -236870,11 +236946,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236952,11 +237028,11 @@ webhooks: type: string enum: - reopened - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237034,11 +237110,11 @@ webhooks: type: string enum: - resolved - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237116,12 +237192,12 @@ webhooks: type: string enum: - unassigned - alert: *779 + alert: *780 assignee: *4 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237199,11 +237275,11 @@ webhooks: type: string enum: - validated - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237333,10 +237409,10 @@ webhooks: - organization - enterprise - - repository: *727 - enterprise: *724 - installation: *725 - organization: *726 + repository: *728 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -237414,11 +237490,11 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - security_advisory: &781 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + security_advisory: &782 description: The details of the security advisory, including summary, description, and severity. type: object @@ -237591,11 +237667,11 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - security_advisory: *781 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + security_advisory: *782 sender: *4 required: - action @@ -237668,10 +237744,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -237845,9 +237921,9 @@ webhooks: type: object properties: security_and_analysis: *294 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: *341 sender: *4 required: @@ -237926,12 +238002,12 @@ webhooks: type: string enum: - cancelled - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: &782 + sponsorship: &783 type: object properties: created_at: @@ -238236,12 +238312,12 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - sponsorship @@ -238329,12 +238405,12 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - changes @@ -238411,17 +238487,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &783 + effective_date: &784 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: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - sponsorship @@ -238495,7 +238571,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &784 + changes: &785 type: object properties: tier: @@ -238539,13 +238615,13 @@ webhooks: - from required: - tier - effective_date: *783 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + effective_date: *784 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - changes @@ -238622,13 +238698,13 @@ webhooks: type: string enum: - tier_changed - changes: *784 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + changes: *785 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - changes @@ -238702,10 +238778,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -238789,10 +238865,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -239226,15 +239302,15 @@ webhooks: type: - string - 'null' - enterprise: *724 + enterprise: *725 id: description: The unique identifier of the status. type: integer - installation: *725 + installation: *726 name: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 sha: description: The Commit SHA. @@ -239350,9 +239426,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -239441,9 +239517,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -239532,9 +239608,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -239623,9 +239699,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -239701,12 +239777,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - team: &785 + team: &786 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -239936,9 +240012,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -240408,7 +240484,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -240484,9 +240560,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -240956,7 +241032,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -241033,9 +241109,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -241505,7 +241581,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -241649,9 +241725,9 @@ webhooks: - from required: - permissions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -242121,7 +242197,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - changes @@ -242199,9 +242275,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -242671,7 +242747,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -242747,10 +242823,10 @@ webhooks: type: string enum: - started - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -242823,17 +242899,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *724 + enterprise: *725 inputs: type: - object - 'null' additionalProperties: true - installation: *725 - organization: *726 + installation: *726 + organization: *727 ref: type: string - repository: *727 + repository: *728 sender: *4 workflow: type: string @@ -242915,10 +242991,10 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 workflow_job: allOf: @@ -243253,10 +243329,10 @@ webhooks: type: string enum: - in_progress - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 workflow_job: allOf: @@ -243617,10 +243693,10 @@ webhooks: type: string enum: - queued - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 workflow_job: type: object @@ -243845,10 +243921,10 @@ webhooks: type: string enum: - waiting - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 workflow_job: type: object @@ -244075,12 +244151,12 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: *739 + workflow: *740 workflow_run: title: Workflow Run type: object @@ -245099,12 +245175,12 @@ webhooks: type: string enum: - in_progress - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: *739 + workflow: *740 workflow_run: title: Workflow Run type: object @@ -246108,12 +246184,12 @@ webhooks: type: string enum: - requested - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: *739 + workflow: *740 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index deadc88ff..db6c03204 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -10777,7 +10777,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" ], @@ -104605,6 +104605,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -104631,6 +104641,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -104656,6 +104667,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -105025,6 +105037,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -105051,6 +105073,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -105076,6 +105099,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -105397,6 +105421,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -108005,6 +108039,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -108025,6 +108069,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -254507,6 +254552,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).\"", @@ -293438,6 +293498,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -293464,6 +293534,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -293489,6 +293560,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -293828,6 +293900,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -296463,6 +296545,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -296483,6 +296575,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -447135,6 +447228,135 @@ } } }, + "/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" + ], + "examples": [ + "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", @@ -650956,6 +651178,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-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index 00521bb02..33c063bd0 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -1131,7 +1131,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &649 + - &650 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -5586,6 +5586,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. @@ -14693,7 +14696,7 @@ paths: properties: action: type: string - discussion: &740 + discussion: &741 title: Discussion description: A Discussion in a repository. type: object @@ -15479,7 +15482,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &660 + sub_issues_summary: &661 title: Sub-issues Summary type: object properties: @@ -15590,7 +15593,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &661 + issue_dependencies_summary: &662 title: Issue Dependencies Summary type: object properties: @@ -17147,7 +17150,7 @@ paths: url: type: string format: uri - user: &667 + user: &668 title: Public User description: Public User type: object @@ -22538,7 +22541,7 @@ paths: required: false schema: type: string - - &717 + - &718 name: model description: The model name to query usage for. The name is not case sensitive. in: query @@ -22684,7 +22687,7 @@ paths: parameters: - *74 - *116 - - &718 + - &719 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 @@ -22796,7 +22799,7 @@ paths: - *116 - *118 - *117 - - &719 + - &720 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22804,7 +22807,7 @@ paths: schema: type: string - *119 - - &720 + - &721 name: sku description: The SKU to query for usage. in: query @@ -27094,6 +27097,15 @@ 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. + type: + - string + - 'null' + examples: + - 2.323.0 required: - id - name @@ -27112,6 +27124,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -27128,6 +27141,7 @@ paths: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -27627,6 +27641,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -30502,12 +30517,12 @@ paths: required: - subject_digests examples: - default: &698 + default: &699 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &699 + withPredicateType: &700 value: subject_digests: - sha256:abc123 @@ -30566,7 +30581,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &700 + default: &701 value: attestations_subject_digests: - sha256:abc: @@ -43298,7 +43313,7 @@ paths: parameters: - *74 - *255 - - &681 + - &682 name: repo_name description: repo_name parameter in: path @@ -44377,7 +44392,7 @@ paths: - nuget - container - *74 - - &682 + - &683 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -44418,7 +44433,7 @@ paths: default: *261 '403': *27 '401': *23 - '400': &684 + '400': &685 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -46549,7 +46564,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &768 + - &769 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -47519,7 +47534,7 @@ paths: - updated_at - project_url examples: - default: &704 + default: &705 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47696,7 +47711,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &705 + items: &706 type: object properties: name: @@ -47733,7 +47748,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &706 + iteration_configuration: &707 type: object description: The configuration for iteration fields. properties: @@ -47783,7 +47798,7 @@ paths: value: name: Due date data_type: date - single_select_field: &707 + single_select_field: &708 summary: Create a single select field value: name: Priority @@ -47810,7 +47825,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &708 + iteration_field: &709 summary: Create an iteration field value: name: Sprint @@ -47836,7 +47851,7 @@ paths: application/json: schema: *281 examples: - text_field: &709 + text_field: &710 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -47845,7 +47860,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: &710 + number_field: &711 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -47854,7 +47869,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: &711 + date_field: &712 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -47863,7 +47878,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: &712 + single_select_field: &713 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47897,7 +47912,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &713 + iteration_field: &714 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -47943,7 +47958,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - *278 - - &714 + - &715 name: field_id description: The unique identifier of the field. in: path @@ -47958,7 +47973,7 @@ paths: application/json: schema: *281 examples: - default: &715 + default: &716 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -49169,7 +49184,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &695 + schema: &696 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -49352,7 +49367,7 @@ paths: parameters: - *278 - *74 - - &716 + - &717 name: view_number description: The number that identifies the project view. in: path @@ -52753,6 +52768,22 @@ paths: - bypass - all default: all + - &604 + 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: @@ -52760,7 +52791,7 @@ paths: description: Response content: application/json: - schema: &604 + schema: &605 title: Rule Suites description: Response type: array @@ -52816,7 +52847,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &605 + default: &606 value: - id: 21 actor_id: 12 @@ -52860,7 +52891,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *74 - - &606 + - &607 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -52876,7 +52907,7 @@ paths: description: Response content: application/json: - schema: &607 + schema: &608 title: Rule Suite description: Response type: object @@ -52983,7 +53014,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &608 + default: &609 value: id: 21 actor_id: 12 @@ -53230,7 +53261,7 @@ paths: type: string format: date-time examples: - default: &610 + default: &611 value: - version_id: 3 actor: @@ -53283,7 +53314,7 @@ paths: description: Response content: application/json: - schema: &611 + schema: &612 allOf: - *324 - type: object @@ -53355,7 +53386,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *74 - - &612 + - &613 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -53366,7 +53397,7 @@ paths: enum: - open - resolved - - &613 + - &614 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -53376,7 +53407,7 @@ paths: required: false schema: type: string - - &614 + - &615 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -53387,7 +53418,7 @@ paths: required: false schema: type: string - - &615 + - &616 name: exclude_providers in: query description: |- @@ -53398,7 +53429,7 @@ paths: required: false schema: type: string - - &616 + - &617 name: providers in: query description: |- @@ -53409,7 +53440,7 @@ paths: required: false schema: type: string - - &617 + - &618 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -53418,7 +53449,7 @@ paths: required: false schema: type: string - - &618 + - &619 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -53437,7 +53468,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &619 + - &620 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. @@ -53452,7 +53483,7 @@ paths: - *60 - *19 - *17 - - &620 + - &621 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 @@ -53462,7 +53493,7 @@ paths: required: false schema: type: string - - &621 + - &622 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 @@ -53472,7 +53503,7 @@ paths: required: false schema: type: string - - &622 + - &623 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -53481,7 +53512,7 @@ paths: required: false schema: type: string - - &623 + - &624 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -53490,7 +53521,7 @@ paths: schema: type: boolean default: false - - &624 + - &625 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -53499,7 +53530,7 @@ paths: schema: type: boolean default: false - - &625 + - &626 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -53508,7 +53539,7 @@ paths: schema: type: boolean default: false - - &626 + - &627 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -53542,14 +53573,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &627 + state: &628 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: &628 + resolution: &629 type: - string - 'null' @@ -53668,14 +53699,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &629 + - &630 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &631 + - &632 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -53739,7 +53770,7 @@ paths: - blob_url - commit_sha - commit_url - - &632 + - &633 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. @@ -53800,7 +53831,7 @@ paths: - page_url - commit_sha - commit_url - - &633 + - &634 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -53822,7 +53853,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &634 + - &635 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -53844,7 +53875,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &635 + - &636 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -53866,7 +53897,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &636 + - &637 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -53881,7 +53912,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &637 + - &638 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -53896,7 +53927,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &638 + - &639 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -53911,7 +53942,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &639 + - &640 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. @@ -53933,7 +53964,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &640 + - &641 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. @@ -53955,7 +53986,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &641 + - &642 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. @@ -53977,7 +54008,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &642 + - &643 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. @@ -53999,7 +54030,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &643 + - &644 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 @@ -54520,7 +54551,7 @@ paths: application/json: schema: type: array - items: &647 + items: &648 description: A repository security advisory. type: object properties: @@ -54871,7 +54902,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &648 + default: &649 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -56957,7 +56988,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &663 + response-if-user-is-a-team-maintainer: &664 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -57022,7 +57053,7 @@ paths: application/json: schema: *337 examples: - response-if-users-membership-with-team-is-now-pending: &664 + response-if-users-membership-with-team-is-now-pending: &665 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -57136,7 +57167,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &665 + schema: &666 title: Team Repository description: A team's access to a repository. type: object @@ -57950,7 +57981,7 @@ paths: type: array items: *198 examples: - response-if-child-teams-exist: &666 + response-if-child-teams-exist: &667 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -70099,7 +70130,7 @@ paths: check. type: array items: *85 - deployment: &729 + deployment: &730 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -75597,7 +75628,7 @@ paths: type: array items: *458 examples: - default: &672 + default: &673 value: total_count: 2 machines: @@ -78774,7 +78805,7 @@ paths: application/json: schema: type: array - items: &652 + items: &653 title: Status description: The status of a commit. type: object @@ -80430,7 +80461,7 @@ paths: items: type: object properties: - placeholder_id: &644 + placeholder_id: &645 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -86488,6 +86519,50 @@ 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: + - *338 + - *339 + 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 + examples: + - sha1 + required: + - hash_algorithm + examples: + default: + value: + hash_algorithm: sha1 + '403': *27 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/hooks": get: summary: List repository webhooks @@ -86574,7 +86649,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &760 + last_response: &761 title: Hook Response type: object properties: @@ -87643,7 +87718,7 @@ paths: parameters: - *338 - *339 - - &693 + - &694 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -88077,7 +88152,7 @@ paths: type: array items: *532 examples: - default: &686 + default: &687 value: - id: 1 repository: @@ -102212,7 +102287,7 @@ paths: application/json: schema: *321 examples: - default: &609 + default: &610 value: id: 42 name: super cool ruleset @@ -102266,6 +102341,7 @@ paths: - *601 - *602 - *603 + - *604 - *17 - *19 responses: @@ -102273,9 +102349,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: *605 + default: *606 '404': *6 '500': *53 x-github: @@ -102298,15 +102374,15 @@ paths: parameters: - *338 - *339 - - *606 + - *607 responses: '200': description: Response content: application/json: - schema: *607 + schema: *608 examples: - default: *608 + default: *609 '404': *6 '500': *53 x-github: @@ -102357,7 +102433,7 @@ paths: application/json: schema: *321 examples: - default: *609 + default: *610 '404': *6 '500': *53 put: @@ -102440,7 +102516,7 @@ paths: application/json: schema: *321 examples: - default: *609 + default: *610 '404': *6 '422': *15 '500': *53 @@ -102502,7 +102578,7 @@ paths: type: array items: *324 examples: - default: *610 + default: *611 '404': *6 '500': *53 x-github: @@ -102540,7 +102616,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -102597,7 +102673,6 @@ paths: parameters: - *338 - *339 - - *612 - *613 - *614 - *615 @@ -102605,16 +102680,17 @@ paths: - *617 - *618 - *619 + - *620 - *60 - *19 - *17 - - *620 - *621 - *622 - *623 - *624 - *625 - *626 + - *627 responses: '200': description: Response @@ -102622,7 +102698,7 @@ paths: application/json: schema: type: array - items: &630 + items: &631 type: object properties: number: *178 @@ -102638,8 +102714,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *627 - resolution: *628 + state: *628 + resolution: *629 resolved_at: type: - string @@ -102745,7 +102821,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *629 + - *630 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -102907,13 +102983,13 @@ paths: - *338 - *339 - *434 - - *625 + - *626 responses: '200': description: Response content: application/json: - schema: *630 + schema: *631 examples: default: value: @@ -102977,8 +103053,8 @@ paths: schema: type: object properties: - state: *627 - resolution: *628 + state: *628 + resolution: *629 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -103026,7 +103102,7 @@ paths: description: Response content: application/json: - schema: *630 + schema: *631 examples: default: value: @@ -103138,7 +103214,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &780 + items: &781 type: object properties: type: @@ -103165,7 +103241,6 @@ paths: - commit details: oneOf: - - *631 - *632 - *633 - *634 @@ -103178,6 +103253,7 @@ paths: - *641 - *642 - *643 + - *644 examples: default: value: @@ -103272,14 +103348,14 @@ paths: schema: type: object properties: - reason: &645 + reason: &646 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *644 + placeholder_id: *645 required: - reason - placeholder_id @@ -103296,7 +103372,7 @@ paths: schema: type: object properties: - reason: *645 + reason: *646 expire_at: type: - string @@ -103359,7 +103435,7 @@ paths: properties: incremental_scans: type: array - items: &646 + items: &647 description: Information on a single scan performed by secret scanning on the repository type: object @@ -103392,15 +103468,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *646 + items: *647 backfill_scans: type: array - items: *646 + items: *647 custom_pattern_backfill_scans: type: array items: allOf: - - *646 + - *647 - type: object properties: pattern_name: @@ -103413,7 +103489,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *646 + items: *647 examples: default: value: @@ -103523,9 +103599,9 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: - default: *648 + default: *649 '400': *14 '404': *6 x-github: @@ -103719,9 +103795,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: &650 + default: &651 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -104074,7 +104150,7 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: default: value: @@ -104229,15 +104305,15 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '200': description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: *650 + default: *651 '403': *27 '404': *6 x-github: @@ -104263,7 +104339,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 requestBody: required: true content: @@ -104434,10 +104510,10 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: *650 - add_credit: *650 + default: *651 + add_credit: *651 '403': *27 '404': *6 '422': @@ -104477,7 +104553,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '202': *37 '400': *14 @@ -104506,7 +104582,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '202': description: Response @@ -104647,7 +104723,7 @@ paths: application/json: schema: type: array - items: &651 + items: &652 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -105020,7 +105096,7 @@ paths: application/json: schema: type: array - items: *651 + items: *652 examples: default: value: @@ -105110,7 +105186,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -105204,7 +105280,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &653 + schema: &654 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -105304,7 +105380,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: default: value: @@ -105514,7 +105590,7 @@ paths: description: Response content: application/json: - schema: &654 + schema: &655 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -105526,7 +105602,7 @@ paths: required: - names examples: - default: &655 + default: &656 value: names: - octocat @@ -105581,9 +105657,9 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: - default: *655 + default: *656 '404': *6 '422': *7 x-github: @@ -105606,7 +105682,7 @@ paths: parameters: - *338 - *339 - - &656 + - &657 name: per description: The time frame to display results for. in: query @@ -105637,7 +105713,7 @@ paths: - 128 clones: type: array - items: &657 + items: &658 title: Traffic type: object properties: @@ -105885,7 +105961,7 @@ paths: parameters: - *338 - *339 - - *656 + - *657 responses: '200': description: Response @@ -105906,7 +105982,7 @@ paths: - 3782 views: type: array - items: *657 + items: *658 required: - uniques - count @@ -106685,7 +106761,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &658 + text_matches: &659 title: Search Result Text Matches type: array items: @@ -106848,7 +106924,7 @@ paths: enum: - author-date - committer-date - - &659 + - &660 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 @@ -106968,7 +107044,7 @@ paths: type: number node_id: type: string - text_matches: *658 + text_matches: *659 required: - sha - node_id @@ -107160,7 +107236,7 @@ paths: - interactions - created - updated - - *659 + - *660 - *17 - *19 - name: advanced_search @@ -107274,8 +107350,8 @@ paths: type: - string - 'null' - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -107306,7 +107382,7 @@ paths: - string - 'null' format: date-time - text_matches: *658 + text_matches: *659 pull_request: type: object properties: @@ -107616,7 +107692,7 @@ paths: enum: - created - updated - - *659 + - *660 - *17 - *19 responses: @@ -107661,7 +107737,7 @@ paths: - 'null' score: type: number - text_matches: *658 + text_matches: *659 required: - id - node_id @@ -107746,7 +107822,7 @@ paths: - forks - help-wanted-issues - updated - - *659 + - *660 - *17 - *19 responses: @@ -107992,7 +108068,7 @@ paths: - admin - pull - push - text_matches: *658 + text_matches: *659 temp_clone_token: type: string allow_merge_commit: @@ -108300,7 +108376,7 @@ paths: - string - 'null' format: uri - text_matches: *658 + text_matches: *659 related: type: - array @@ -108493,7 +108569,7 @@ paths: - followers - repositories - joined - - *659 + - *660 - *17 - *19 responses: @@ -108603,7 +108679,7 @@ paths: type: - boolean - 'null' - text_matches: *658 + text_matches: *659 blog: type: - string @@ -108685,7 +108761,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &662 + - &663 name: team_id description: The unique identifier of the team. in: path @@ -108726,7 +108802,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *662 + - *663 requestBody: required: true content: @@ -108827,7 +108903,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *662 + - *663 responses: '204': description: Response @@ -108856,7 +108932,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *662 + - *663 - *17 - *19 responses: @@ -108894,7 +108970,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *662 + - *663 - name: role description: Filters members returned by their role in the team. in: query @@ -108945,7 +109021,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *662 + - *663 - *70 responses: '204': @@ -108982,7 +109058,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *662 + - *663 - *70 responses: '204': @@ -109022,7 +109098,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *662 + - *663 - *70 responses: '204': @@ -109059,7 +109135,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *662 + - *663 - *70 responses: '200': @@ -109068,7 +109144,7 @@ paths: application/json: schema: *337 examples: - response-if-user-is-a-team-maintainer: *663 + response-if-user-is-a-team-maintainer: *664 '404': *6 x-github: githubCloudOnly: false @@ -109101,7 +109177,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *662 + - *663 - *70 requestBody: required: false @@ -109129,7 +109205,7 @@ paths: application/json: schema: *337 examples: - response-if-users-membership-with-team-is-now-pending: *664 + response-if-users-membership-with-team-is-now-pending: *665 '403': description: Forbidden if team synchronization is set up '422': @@ -109163,7 +109239,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *662 + - *663 - *70 responses: '204': @@ -109191,7 +109267,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *662 + - *663 - *17 - *19 responses: @@ -109233,7 +109309,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *662 + - *663 - *338 - *339 responses: @@ -109241,7 +109317,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *665 + schema: *666 examples: alternative-response-with-extra-repository-information: value: @@ -109398,7 +109474,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *662 + - *663 - *338 - *339 requestBody: @@ -109450,7 +109526,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *662 + - *663 - *338 - *339 responses: @@ -109477,7 +109553,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *662 + - *663 - *17 - *19 responses: @@ -109489,7 +109565,7 @@ paths: type: array items: *198 examples: - response-if-child-teams-exist: *666 + response-if-child-teams-exist: *667 headers: Link: *66 '404': *6 @@ -109522,7 +109598,7 @@ paths: application/json: schema: oneOf: - - &668 + - &669 title: Private User description: Private User type: object @@ -109772,7 +109848,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *667 + - *668 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -109932,7 +110008,7 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: default: value: @@ -110330,7 +110406,7 @@ paths: type: integer secrets: type: array - items: &669 + items: &670 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -110450,7 +110526,7 @@ paths: description: Response content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -110863,7 +110939,7 @@ paths: description: Response content: application/json: - schema: &670 + schema: &671 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -110916,7 +110992,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &671 + default: &672 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -110961,9 +111037,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: *671 + default: *672 '404': *6 x-github: githubCloudOnly: false @@ -111002,7 +111078,7 @@ paths: type: array items: *458 examples: - default: *672 + default: *673 '304': *35 '500': *53 '401': *23 @@ -111968,7 +112044,7 @@ paths: type: array items: *260 examples: - default: &683 + default: &684 value: - id: 197 name: hello_docker @@ -112069,7 +112145,7 @@ paths: application/json: schema: type: array - items: &673 + items: &674 title: Email description: Email type: object @@ -112139,9 +112215,9 @@ paths: application/json: schema: type: array - items: *673 + items: *674 examples: - default: &685 + default: &686 value: - email: octocat@github.com verified: true @@ -112218,7 +112294,7 @@ paths: application/json: schema: type: array - items: *673 + items: *674 examples: default: value: @@ -112476,7 +112552,7 @@ paths: application/json: schema: type: array - items: &674 + items: &675 title: GPG Key description: A unique encryption key type: object @@ -112621,7 +112697,7 @@ paths: - subkeys - revoked examples: - default: &702 + default: &703 value: - id: 3 name: Octocat's GPG Key @@ -112706,9 +112782,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: &675 + default: &676 value: id: 3 name: Octocat's GPG Key @@ -112765,7 +112841,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &676 + - &677 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -112777,9 +112853,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '404': *6 '304': *35 '403': *27 @@ -112802,7 +112878,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *676 + - *677 responses: '204': description: Response @@ -113269,7 +113345,7 @@ paths: application/json: schema: type: array - items: &677 + items: &678 title: Key description: Key type: object @@ -113372,9 +113448,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: &678 + default: &679 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -113413,9 +113489,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *678 + default: *679 '404': *6 '304': *35 '403': *27 @@ -113471,7 +113547,7 @@ paths: application/json: schema: type: array - items: &679 + items: &680 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -113550,7 +113626,7 @@ paths: - account - plan examples: - default: &680 + default: &681 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -113612,9 +113688,9 @@ paths: application/json: schema: type: array - items: *679 + items: *680 examples: - default: *680 + default: *681 headers: Link: *66 '304': *35 @@ -114632,7 +114708,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *255 - - *681 + - *682 responses: '204': description: Response @@ -114765,7 +114841,7 @@ paths: - docker - nuget - container - - *682 + - *683 - *19 - *17 responses: @@ -114777,8 +114853,8 @@ paths: type: array items: *260 examples: - default: *683 - '400': *684 + default: *684 + '400': *685 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -114807,7 +114883,7 @@ paths: application/json: schema: *260 examples: - default: &703 + default: &704 value: id: 40201 name: octo-name @@ -115169,9 +115245,9 @@ paths: application/json: schema: type: array - items: *673 + items: *674 examples: - default: *685 + default: *686 headers: Link: *66 '304': *35 @@ -115284,7 +115360,7 @@ paths: type: array items: *78 examples: - default: &692 + default: &693 summary: Default response value: - id: 1296269 @@ -115650,7 +115726,7 @@ paths: type: array items: *532 examples: - default: *686 + default: *687 headers: Link: *66 '304': *35 @@ -115735,7 +115811,7 @@ paths: application/json: schema: type: array - items: &687 + items: &688 title: Social account description: Social media account type: object @@ -115752,7 +115828,7 @@ paths: - provider - url examples: - default: &688 + default: &689 value: - provider: twitter url: https://twitter.com/github @@ -115815,9 +115891,9 @@ paths: application/json: schema: type: array - items: *687 + items: *688 examples: - default: *688 + default: *689 '422': *15 '304': *35 '404': *6 @@ -115905,7 +115981,7 @@ paths: application/json: schema: type: array - items: &689 + items: &690 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -115925,7 +116001,7 @@ paths: - title - created_at examples: - default: &721 + default: &722 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -115990,9 +116066,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: &690 + default: &691 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -116022,7 +116098,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: - - &691 + - &692 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -116034,9 +116110,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: *690 + default: *691 '404': *6 '304': *35 '403': *27 @@ -116059,7 +116135,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: - - *691 + - *692 responses: '204': description: Response @@ -116088,7 +116164,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &722 + - &723 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 @@ -116113,11 +116189,11 @@ paths: type: array items: *78 examples: - default-response: *692 + default-response: *693 application/vnd.github.v3.star+json: schema: type: array - items: &723 + items: &724 title: Starred Repository description: Starred Repository type: object @@ -116486,10 +116562,10 @@ paths: application/json: schema: oneOf: + - *669 - *668 - - *667 examples: - default-response: &696 + default-response: &697 summary: Default response value: login: octocat @@ -116524,7 +116600,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &697 + response-with-git-hub-plan-information: &698 summary: Response with GitHub plan information value: login: octocat @@ -116581,7 +116657,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &694 + - &695 name: user_id description: The unique identifier of the user. in: path @@ -116647,7 +116723,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *693 + - *694 - *17 responses: '200': @@ -116682,7 +116758,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *694 + - *695 - *278 requestBody: required: true @@ -116757,7 +116833,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *695 + schema: *696 examples: table_view: summary: Response for creating a table view @@ -116809,11 +116885,11 @@ paths: application/json: schema: oneOf: + - *669 - *668 - - *667 examples: - default-response: *696 - response-with-git-hub-plan-information: *697 + default-response: *697 + response-with-git-hub-plan-information: *698 '404': *6 x-github: githubCloudOnly: false @@ -116863,8 +116939,8 @@ paths: required: - subject_digests examples: - default: *698 - withPredicateType: *699 + default: *699 + withPredicateType: *700 responses: '200': description: Response @@ -116918,7 +116994,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *700 + default: *701 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117436,7 +117512,7 @@ paths: application/json: schema: *194 examples: - default: &701 + default: &702 summary: Example response for a user copilot space value: id: 42 @@ -117537,7 +117613,7 @@ paths: application/json: schema: *194 examples: - default: *701 + default: *702 '403': *27 '404': *6 x-github: @@ -117663,7 +117739,7 @@ paths: application/json: schema: *194 examples: - default: *701 + default: *702 '403': *27 '404': *6 '422': *15 @@ -118431,7 +118507,7 @@ paths: type: array items: *260 examples: - default: *683 + default: *684 '403': *27 '401': *23 x-github: @@ -118815,9 +118891,9 @@ paths: application/json: schema: type: array - items: *674 + items: *675 examples: - default: *702 + default: *703 headers: Link: *66 x-github: @@ -119046,7 +119122,7 @@ paths: - docker - nuget - container - - *682 + - *683 - *70 - *19 - *17 @@ -119059,10 +119135,10 @@ paths: type: array items: *260 examples: - default: *683 + default: *684 '403': *27 '401': *23 - '400': *684 + '400': *685 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119092,7 +119168,7 @@ paths: application/json: schema: *260 examples: - default: *703 + default: *704 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119441,7 +119517,7 @@ paths: type: array items: *281 examples: - default: *704 + default: *705 headers: Link: *66 '304': *35 @@ -119501,7 +119577,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *705 + items: *706 required: - name - data_type @@ -119517,7 +119593,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *706 + iteration_configuration: *707 required: - name - data_type @@ -119539,8 +119615,8 @@ paths: value: name: Due date data_type: date - single_select_field: *707 - iteration_field: *708 + single_select_field: *708 + iteration_field: *709 responses: '201': description: Response @@ -119548,11 +119624,11 @@ paths: application/json: schema: *281 examples: - text_field: *709 - number_field: *710 - date_field: *711 - single_select_field: *712 - iteration_field: *713 + text_field: *710 + number_field: *711 + date_field: *712 + single_select_field: *713 + iteration_field: *714 '304': *35 '403': *27 '401': *23 @@ -119574,7 +119650,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *278 - - *714 + - *715 - *70 responses: '200': @@ -119583,7 +119659,7 @@ paths: application/json: schema: *281 examples: - default: *715 + default: *716 headers: Link: *66 '304': *35 @@ -119940,7 +120016,7 @@ paths: parameters: - *278 - *70 - - *716 + - *717 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -120215,7 +120291,7 @@ paths: - *116 - *118 - *117 - - *717 + - *718 - *119 responses: '200': @@ -120346,7 +120422,7 @@ paths: parameters: - *70 - *116 - - *718 + - *719 - *117 responses: '200': @@ -120445,9 +120521,9 @@ paths: - *116 - *118 - *117 - - *719 - - *119 - *720 + - *119 + - *721 responses: '200': description: Response when getting a billing usage summary @@ -120581,9 +120657,9 @@ paths: application/json: schema: type: array - items: *687 + items: *688 examples: - default: *688 + default: *689 headers: Link: *66 x-github: @@ -120613,9 +120689,9 @@ paths: application/json: schema: type: array - items: *689 + items: *690 examples: - default: *721 + default: *722 headers: Link: *66 x-github: @@ -120640,7 +120716,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *70 - - *722 + - *723 - *60 - *17 - *19 @@ -120652,11 +120728,11 @@ paths: schema: anyOf: - type: array - items: *723 + items: *724 - type: array items: *78 examples: - default-response: *692 + default-response: *693 headers: Link: *66 x-github: @@ -120816,7 +120892,7 @@ webhooks: type: string enum: - disabled - enterprise: &724 + enterprise: &725 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -120885,7 +120961,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &725 + installation: &726 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -120906,7 +120982,7 @@ webhooks: required: - id - node_id - organization: &726 + organization: &727 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -120979,7 +121055,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &727 + repository: &728 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -121919,10 +121995,10 @@ webhooks: type: string enum: - enabled - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -121998,11 +122074,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: &728 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + rule: &729 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) @@ -122225,11 +122301,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: *728 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + rule: *729 sender: *4 required: - action @@ -122417,11 +122493,11 @@ webhooks: - everyone required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: *728 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + rule: *729 sender: *4 required: - action @@ -122505,7 +122581,7 @@ webhooks: type: string enum: - completed - check_run: &730 + check_run: &731 title: CheckRun description: A check performed on the code of a given code change type: object @@ -122615,7 +122691,7 @@ webhooks: - examples: - neutral - deployment: *729 + deployment: *730 details_url: type: string examples: @@ -122713,10 +122789,10 @@ webhooks: - output - app - pull_requests - installation: *725 - enterprise: *724 - organization: *726 - repository: *727 + installation: *726 + enterprise: *725 + organization: *727 + repository: *728 sender: *4 required: - check_run @@ -123107,11 +123183,11 @@ webhooks: type: string enum: - created - check_run: *730 - installation: *725 - enterprise: *724 - organization: *726 - repository: *727 + check_run: *731 + installation: *726 + enterprise: *725 + organization: *727 + repository: *728 sender: *4 required: - check_run @@ -123505,11 +123581,11 @@ webhooks: type: string enum: - requested_action - check_run: *730 - installation: *725 - enterprise: *724 - organization: *726 - repository: *727 + check_run: *731 + installation: *726 + enterprise: *725 + organization: *727 + repository: *728 requested_action: description: The action requested by the user. type: object @@ -123912,11 +123988,11 @@ webhooks: type: string enum: - rerequested - check_run: *730 - installation: *725 - enterprise: *724 - organization: *726 - repository: *727 + check_run: *731 + installation: *726 + enterprise: *725 + organization: *727 + repository: *728 sender: *4 required: - check_run @@ -124901,10 +124977,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -125613,10 +125689,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -126319,10 +126395,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -126643,20 +126719,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &731 + commit_oid: &732 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: *724 - installation: *725 - organization: *726 - ref: &732 + enterprise: *725 + installation: *726 + organization: *727 + ref: &733 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: *727 + repository: *728 sender: *4 required: - action @@ -127064,12 +127140,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *731 - enterprise: *724 - installation: *725 - organization: *726 - ref: *732 - repository: *727 + commit_oid: *732 + enterprise: *725 + installation: *726 + organization: *727 + ref: *733 + repository: *728 sender: *4 required: - action @@ -127352,12 +127428,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *731 - enterprise: *724 - installation: *725 - organization: *726 - ref: *732 - repository: *727 + commit_oid: *732 + enterprise: *725 + installation: *726 + organization: *727 + ref: *733 + repository: *728 sender: *4 required: - action @@ -127703,12 +127779,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *731 - enterprise: *724 - installation: *725 - organization: *726 - ref: *732 - repository: *727 + commit_oid: *732 + enterprise: *725 + installation: *726 + organization: *727 + ref: *733 + repository: *728 sender: *4 required: - action @@ -127998,9 +128074,9 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -128008,7 +128084,7 @@ webhooks: type: - string - 'null' - repository: *727 + repository: *728 sender: *4 required: - action @@ -128254,12 +128330,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *731 - enterprise: *724 - installation: *725 - organization: *726 - ref: *732 - repository: *727 + commit_oid: *732 + enterprise: *725 + installation: *726 + organization: *727 + ref: *733 + repository: *728 sender: *4 required: - action @@ -128580,10 +128656,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -128843,10 +128919,10 @@ webhooks: - updated_at - author_association - body - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -128927,18 +129003,18 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *726 - pusher_type: &733 + organization: *727 + pusher_type: &734 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &734 + ref: &735 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -128948,7 +129024,7 @@ webhooks: enum: - tag - branch - repository: *727 + repository: *728 sender: *4 required: - ref @@ -129031,9 +129107,9 @@ webhooks: enum: - created definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -129118,9 +129194,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -129198,9 +129274,9 @@ webhooks: enum: - promote_to_enterprise definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -129278,9 +129354,9 @@ webhooks: enum: - updated definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -129357,10 +129433,10 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - repository: *727 - organization: *726 + enterprise: *725 + installation: *726 + repository: *728 + organization: *727 sender: *4 new_property_values: type: array @@ -129445,18 +129521,18 @@ webhooks: title: delete event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - pusher_type: *733 - ref: *734 + enterprise: *725 + installation: *726 + organization: *727 + pusher_type: *734 + ref: *735 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *727 + repository: *728 sender: *4 required: - ref @@ -129537,10 +129613,10 @@ webhooks: enum: - assignees_changed alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -129621,10 +129697,10 @@ webhooks: enum: - auto_dismissed alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -129706,10 +129782,10 @@ webhooks: enum: - auto_reopened alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -129791,10 +129867,10 @@ webhooks: enum: - created alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -129874,10 +129950,10 @@ webhooks: enum: - dismissed alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -129957,10 +130033,10 @@ webhooks: enum: - fixed alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -130041,10 +130117,10 @@ webhooks: enum: - reintroduced alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -130124,10 +130200,10 @@ webhooks: enum: - reopened alert: *489 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + installation: *726 + organization: *727 + enterprise: *725 + repository: *728 sender: *4 required: - action @@ -130204,9 +130280,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - key: &735 + enterprise: *725 + installation: *726 + key: &736 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -130244,8 +130320,8 @@ webhooks: - verified - created_at - read_only - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -130322,11 +130398,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - key: *735 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + key: *736 + organization: *727 + repository: *728 sender: *4 required: - action @@ -130893,12 +130969,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: &739 + workflow: &740 title: Workflow type: - object @@ -131653,9 +131729,9 @@ webhooks: pull_requests: type: array items: *579 - repository: *727 - organization: *726 - installation: *725 + repository: *728 + organization: *727 + installation: *726 sender: *4 responses: '200': @@ -131726,7 +131802,7 @@ webhooks: type: string enum: - approved - approver: &736 + approver: &737 type: object properties: avatar_url: @@ -131769,11 +131845,11 @@ webhooks: type: string comment: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - reviewers: &737 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + reviewers: &738 type: array items: type: object @@ -131854,7 +131930,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &738 + workflow_job_run: &739 type: object properties: conclusion: @@ -132600,18 +132676,18 @@ webhooks: type: string enum: - rejected - approver: *736 + approver: *737 comment: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - reviewers: *737 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + reviewers: *738 sender: *4 since: type: string - workflow_job_run: *738 + workflow_job_run: *739 workflow_job_runs: type: array items: @@ -133328,13 +133404,13 @@ webhooks: type: string enum: - requested - enterprise: *724 + enterprise: *725 environment: type: string - installation: *725 - organization: *726 - repository: *727 - requestor: &744 + installation: *726 + organization: *727 + repository: *728 + requestor: &745 title: User type: - object @@ -135267,12 +135343,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: *739 + workflow: *740 workflow_run: title: Deployment Workflow Run type: @@ -135963,7 +136039,7 @@ webhooks: type: string enum: - answered - answer: &742 + answer: &743 type: object properties: author_association: @@ -136123,11 +136199,11 @@ webhooks: - created_at - updated_at - body - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136254,11 +136330,11 @@ webhooks: - from required: - category - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136341,11 +136417,11 @@ webhooks: type: string enum: - closed - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136427,7 +136503,7 @@ webhooks: type: string enum: - created - comment: &741 + comment: &742 type: object properties: author_association: @@ -136587,11 +136663,11 @@ webhooks: - updated_at - body - reactions - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136674,12 +136750,12 @@ webhooks: type: string enum: - deleted - comment: *741 - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + comment: *742 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136774,12 +136850,12 @@ webhooks: - from required: - body - comment: *741 - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + comment: *742 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136863,11 +136939,11 @@ webhooks: type: string enum: - created - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136949,11 +137025,11 @@ webhooks: type: string enum: - deleted - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -137053,11 +137129,11 @@ webhooks: type: string required: - from - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -137139,10 +137215,10 @@ webhooks: type: string enum: - labeled - discussion: *740 - enterprise: *724 - installation: *725 - label: &743 + discussion: *741 + enterprise: *725 + installation: *726 + label: &744 title: Label type: object properties: @@ -137175,8 +137251,8 @@ webhooks: - color - default - description - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -137259,11 +137335,11 @@ webhooks: type: string enum: - locked - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -137345,11 +137421,11 @@ webhooks: type: string enum: - pinned - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -137431,11 +137507,11 @@ webhooks: type: string enum: - reopened - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -137520,16 +137596,16 @@ webhooks: changes: type: object properties: - new_discussion: *740 - new_repository: *727 + new_discussion: *741 + new_repository: *728 required: - new_discussion - new_repository - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -137612,10 +137688,10 @@ webhooks: type: string enum: - unanswered - discussion: *740 - old_answer: *742 - organization: *726 - repository: *727 + discussion: *741 + old_answer: *743 + organization: *727 + repository: *728 sender: *4 required: - action @@ -137697,12 +137773,12 @@ webhooks: type: string enum: - unlabeled - discussion: *740 - enterprise: *724 - installation: *725 - label: *743 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -137785,11 +137861,11 @@ webhooks: type: string enum: - unlocked - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -137871,11 +137947,11 @@ webhooks: type: string enum: - unpinned - discussion: *740 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *741 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -137948,7 +138024,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *724 + enterprise: *725 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -138626,9 +138702,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - forkee @@ -138774,9 +138850,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pages: description: The pages that were updated. type: array @@ -138814,7 +138890,7 @@ webhooks: - action - sha - html_url - repository: *727 + repository: *728 sender: *4 required: - pages @@ -138890,10 +138966,10 @@ webhooks: type: string enum: - created - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: &745 + organization: *727 + repositories: &746 description: An array of repository objects that the installation can access. type: array @@ -138919,8 +138995,8 @@ webhooks: - name - full_name - private - repository: *727 - requester: *744 + repository: *728 + requester: *745 sender: *4 required: - action @@ -138995,11 +139071,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: *745 - repository: *727 + organization: *727 + repositories: *746 + repository: *728 requester: type: - 'null' @@ -139076,11 +139152,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: *745 - repository: *727 + organization: *727 + repositories: *746 + repository: *728 requester: type: - 'null' @@ -139157,10 +139233,10 @@ webhooks: type: string enum: - added - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories_added: &746 + organization: *727 + repositories_added: &747 description: An array of repository objects, which were added to the installation. type: array @@ -139206,15 +139282,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *727 - repository_selection: &747 + repository: *728 + repository_selection: &748 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *744 + requester: *745 sender: *4 required: - action @@ -139293,10 +139369,10 @@ webhooks: type: string enum: - removed - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories_added: *746 + organization: *727 + repositories_added: *747 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -139323,9 +139399,9 @@ webhooks: - name - full_name - private - repository: *727 - repository_selection: *747 - requester: *744 + repository: *728 + repository_selection: *748 + requester: *745 sender: *4 required: - action @@ -139404,11 +139480,11 @@ webhooks: type: string enum: - suspend - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: *745 - repository: *727 + organization: *727 + repositories: *746 + repository: *728 requester: type: - 'null' @@ -139590,10 +139666,10 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 target_type: type: string @@ -139672,11 +139748,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *724 + enterprise: *725 installation: *20 - organization: *726 - repositories: *745 - repository: *727 + organization: *727 + repositories: *746 + repository: *728 requester: type: - 'null' @@ -139928,8 +140004,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -140741,8 +140817,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -141103,8 +141179,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -141184,7 +141260,7 @@ webhooks: type: string enum: - deleted - comment: &748 + comment: &749 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -141355,8 +141431,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142164,8 +142240,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142528,8 +142604,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -142609,7 +142685,7 @@ webhooks: type: string enum: - edited - changes: &772 + changes: &773 description: The changes to the comment. type: object properties: @@ -142621,9 +142697,9 @@ webhooks: type: string required: - from - comment: *748 - enterprise: *724 - installation: *725 + comment: *749 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143434,8 +143510,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143796,8 +143872,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -143878,9 +143954,9 @@ webhooks: type: string enum: - pinned - comment: *748 - enterprise: *724 - installation: *725 + comment: *749 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -144693,8 +144769,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145057,8 +145133,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145138,9 +145214,9 @@ webhooks: type: string enum: - unpinned - comment: *748 - enterprise: *724 - installation: *725 + comment: *749 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -145953,8 +146029,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146317,8 +146393,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -146407,9 +146483,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -146498,9 +146574,9 @@ webhooks: type: number blocking_issue: *82 blocking_issue_repo: *78 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -146588,9 +146664,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -146679,9 +146755,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -146761,10 +146837,10 @@ webhooks: type: string enum: - assigned - assignee: *744 - enterprise: *724 - installation: *725 - issue: &749 + assignee: *745 + enterprise: *725 + installation: *726 + issue: &750 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -147575,8 +147651,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -147699,8 +147775,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -147780,8 +147856,8 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -148597,8 +148673,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -148864,8 +148940,8 @@ webhooks: required: - state - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -148944,8 +149020,8 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -149752,8 +149828,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -149875,8 +149951,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -149955,8 +150031,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150786,8 +150862,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -150888,7 +150964,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &750 + milestone: &751 title: Milestone description: A collection of related issues and pull requests. type: object @@ -151031,8 +151107,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -151131,8 +151207,8 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151943,8 +152019,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -152067,9 +152143,9 @@ webhooks: - active_lock_reason - body - reactions - label: *743 - organization: *726 - repository: *727 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -152149,9 +152225,9 @@ webhooks: type: string enum: - field_added - enterprise: *724 - installation: *725 - issue: *749 + enterprise: *725 + installation: *726 + issue: *750 issue_field: type: object description: The issue field whose value was set or updated on the @@ -152270,8 +152346,8 @@ webhooks: - id required: - from - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -152351,9 +152427,9 @@ webhooks: type: string enum: - field_removed - enterprise: *724 - installation: *725 - issue: *749 + enterprise: *725 + installation: *726 + issue: *750 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -152416,8 +152492,8 @@ webhooks: - 'null' required: - id - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -152497,8 +152573,8 @@ webhooks: type: string enum: - labeled - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153308,8 +153384,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -153432,9 +153508,9 @@ webhooks: - active_lock_reason - body - reactions - label: *743 - organization: *726 - repository: *727 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -153514,8 +153590,8 @@ webhooks: type: string enum: - locked - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154350,8 +154426,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -154451,8 +154527,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -154531,8 +154607,8 @@ webhooks: type: string enum: - milestoned - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155361,8 +155437,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -155462,9 +155538,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *750 - organization: *726 - repository: *727 + milestone: *751 + organization: *727 + repository: *728 sender: *4 required: - action @@ -156351,8 +156427,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -156947,8 +157023,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -157755,8 +157831,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -157882,8 +157958,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -157963,9 +158039,9 @@ webhooks: type: string enum: - pinned - enterprise: *724 - installation: *725 - issue: &751 + enterprise: *725 + installation: *726 + issue: &752 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -158770,8 +158846,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -158893,8 +158969,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -158973,8 +159049,8 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159807,8 +159883,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -159909,8 +159985,8 @@ webhooks: user_view_type: type: string type: *243 - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -160798,8 +160874,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -161412,11 +161488,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *724 - installation: *725 - issue: *751 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + issue: *752 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161496,12 +161572,12 @@ webhooks: type: string enum: - typed - enterprise: *724 - installation: *725 - issue: *749 + enterprise: *725 + installation: *726 + issue: *750 type: *243 - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161582,7 +161658,7 @@ webhooks: type: string enum: - unassigned - assignee: &775 + assignee: &776 title: User type: - object @@ -161654,11 +161730,11 @@ webhooks: required: - login - id - enterprise: *724 - installation: *725 - issue: *749 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + issue: *750 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161737,12 +161813,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *724 - installation: *725 - issue: *749 - label: *743 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + issue: *750 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161822,8 +161898,8 @@ webhooks: type: string enum: - unlocked - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -162656,8 +162732,8 @@ webhooks: anyOf: - type: 'null' - *83 - sub_issues_summary: *660 - issue_dependencies_summary: *661 + sub_issues_summary: *661 + issue_dependencies_summary: *662 issue_field_values: type: array items: *542 @@ -162757,8 +162833,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -162838,11 +162914,11 @@ webhooks: type: string enum: - unpinned - enterprise: *724 - installation: *725 - issue: *751 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + issue: *752 + organization: *727 + repository: *728 sender: *4 required: - action @@ -162921,12 +162997,12 @@ webhooks: type: string enum: - untyped - enterprise: *724 - installation: *725 - issue: *749 + enterprise: *725 + installation: *726 + issue: *750 type: *243 - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -163006,11 +163082,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - label: *743 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -163088,11 +163164,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - label: *743 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -163202,11 +163278,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - label: *743 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + label: *744 + organization: *727 + repository: *728 sender: *4 required: - action @@ -163288,9 +163364,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: &752 + enterprise: *725 + installation: *726 + marketplace_purchase: &753 title: Marketplace Purchase type: object required: @@ -163378,8 +163454,8 @@ webhooks: type: integer unit_count: type: integer - organization: *726 - previous_marketplace_purchase: &753 + organization: *727 + previous_marketplace_purchase: &754 title: Marketplace Purchase type: object properties: @@ -163463,7 +163539,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -163543,10 +163619,10 @@ webhooks: - changed effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *752 - organization: *726 + enterprise: *725 + installation: *726 + marketplace_purchase: *753 + organization: *727 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -163634,7 +163710,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -163716,10 +163792,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *752 - organization: *726 + enterprise: *725 + installation: *726 + marketplace_purchase: *753 + organization: *727 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -163805,7 +163881,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -163886,8 +163962,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 marketplace_purchase: title: Marketplace Purchase type: object @@ -163973,9 +164049,9 @@ webhooks: type: integer unit_count: type: integer - organization: *726 - previous_marketplace_purchase: *753 - repository: *727 + organization: *727 + previous_marketplace_purchase: *754 + repository: *728 sender: *4 required: - action @@ -164055,12 +164131,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *752 - organization: *726 - previous_marketplace_purchase: *753 - repository: *727 + enterprise: *725 + installation: *726 + marketplace_purchase: *753 + organization: *727 + previous_marketplace_purchase: *754 + repository: *728 sender: *4 required: - action @@ -164162,11 +164238,11 @@ webhooks: type: string required: - to - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164268,11 +164344,11 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164351,11 +164427,11 @@ webhooks: type: string enum: - removed - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164433,11 +164509,11 @@ webhooks: type: string enum: - added - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 scope: description: The scope of the membership. Currently, can only be `team`. @@ -164515,7 +164591,7 @@ webhooks: required: - login - id - team: &754 + team: &755 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -164745,11 +164821,11 @@ webhooks: type: string enum: - removed - enterprise: *724 - installation: *725 - member: *744 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + member: *745 + organization: *727 + repository: *728 scope: description: The scope of the membership. Currently, can only be `team`. @@ -164828,7 +164904,7 @@ webhooks: required: - login - id - team: *754 + team: *755 required: - action - scope @@ -164910,8 +164986,8 @@ webhooks: type: string enum: - checks_requested - installation: *725 - merge_group: &755 + installation: *726 + merge_group: &756 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -164937,8 +165013,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165024,10 +165100,10 @@ webhooks: - merged - invalidated - dequeued - installation: *725 - merge_group: *755 - organization: *726 - repository: *727 + installation: *726 + merge_group: *756 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165100,7 +165176,7 @@ webhooks: type: string enum: - deleted - enterprise: *724 + enterprise: *725 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -165209,12 +165285,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *725 - organization: *726 + installation: *726 + organization: *727 repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -165294,11 +165370,11 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - milestone: *750 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + milestone: *751 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165377,9 +165453,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - milestone: &756 + enterprise: *725 + installation: *726 + milestone: &757 title: Milestone description: A collection of related issues and pull requests. type: object @@ -165521,8 +165597,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165601,11 +165677,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - milestone: *750 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + milestone: *751 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165715,11 +165791,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - milestone: *750 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + milestone: *751 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165799,11 +165875,11 @@ webhooks: type: string enum: - opened - enterprise: *724 - installation: *725 - milestone: *756 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + milestone: *757 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165882,11 +165958,11 @@ webhooks: type: string enum: - blocked - blocked_user: *744 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + blocked_user: *745 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165965,11 +166041,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *744 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + blocked_user: *745 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -166048,9 +166124,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - membership: &757 + enterprise: *725 + installation: *726 + membership: &758 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -166160,8 +166236,8 @@ webhooks: - role - organization_url - user - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -166239,11 +166315,11 @@ webhooks: type: string enum: - member_added - enterprise: *724 - installation: *725 - membership: *757 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + membership: *758 + organization: *727 + repository: *728 sender: *4 required: - action @@ -166322,8 +166398,8 @@ webhooks: type: string enum: - member_invited - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -166445,10 +166521,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 - user: *744 + user: *745 required: - action - invitation @@ -166526,11 +166602,11 @@ webhooks: type: string enum: - member_removed - enterprise: *724 - installation: *725 - membership: *757 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + membership: *758 + organization: *727 + repository: *728 sender: *4 required: - action @@ -166617,11 +166693,11 @@ webhooks: properties: from: type: string - enterprise: *724 - installation: *725 - membership: *757 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + membership: *758 + organization: *727 + repository: *728 sender: *4 required: - action @@ -166698,9 +166774,9 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 package: description: Information about the package. type: object @@ -167223,7 +167299,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &758 + items: &759 title: Ruby Gems metadata type: object properties: @@ -167320,7 +167396,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -167396,9 +167472,9 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 package: description: Information about the package. type: object @@ -167760,7 +167836,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *758 + items: *759 source_url: type: string format: uri @@ -167831,7 +167907,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -168011,12 +168087,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *724 + enterprise: *725 id: type: integer - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - id @@ -168093,7 +168169,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &759 + personal_access_token_request: &760 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -168243,10 +168319,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *724 - organization: *726 + enterprise: *725 + organization: *727 sender: *4 - installation: *725 + installation: *726 required: - action - personal_access_token_request @@ -168323,11 +168399,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *759 - enterprise: *724 - organization: *726 + personal_access_token_request: *760 + enterprise: *725 + organization: *727 sender: *4 - installation: *725 + installation: *726 required: - action - personal_access_token_request @@ -168403,11 +168479,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *759 - enterprise: *724 - organization: *726 + personal_access_token_request: *760 + enterprise: *725 + organization: *727 sender: *4 - installation: *725 + installation: *726 required: - action - personal_access_token_request @@ -168482,11 +168558,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *759 - organization: *726 - enterprise: *724 + personal_access_token_request: *760 + organization: *727 + enterprise: *725 sender: *4 - installation: *725 + installation: *726 required: - action - personal_access_token_request @@ -168591,7 +168667,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *760 + last_response: *761 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -168623,8 +168699,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 zen: description: Random string of GitHub zen. @@ -168869,10 +168945,10 @@ webhooks: - from required: - note - enterprise: *724 - installation: *725 - organization: *726 - project_card: &761 + enterprise: *725 + installation: *726 + organization: *727 + project_card: &762 title: Project Card type: object properties: @@ -168995,7 +169071,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -169076,11 +169152,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project_card: *761 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project_card: *762 + repository: *728 sender: *4 required: - action @@ -169160,9 +169236,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 project_card: title: Project Card type: object @@ -169292,7 +169368,7 @@ webhooks: repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -169386,11 +169462,11 @@ webhooks: - from required: - note - enterprise: *724 - installation: *725 - organization: *726 - project_card: *761 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project_card: *762 + repository: *728 sender: *4 required: - action @@ -169484,9 +169560,9 @@ webhooks: - from required: - column_id - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 project_card: allOf: - title: Project Card @@ -169683,7 +169759,7 @@ webhooks: type: string required: - after_id - repository: *727 + repository: *728 sender: *4 required: - action @@ -169763,10 +169839,10 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - organization: *726 - project: &763 + enterprise: *725 + installation: *726 + organization: *727 + project: &764 title: Project type: object properties: @@ -169893,7 +169969,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -169973,10 +170049,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project_column: &762 + enterprise: *725 + installation: *726 + organization: *727 + project_column: &763 title: Project Column type: object properties: @@ -170016,7 +170092,7 @@ webhooks: - name - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -170095,14 +170171,14 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - project_column: *762 + enterprise: *725 + installation: *726 + organization: *727 + project_column: *763 repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -170191,11 +170267,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - project_column: *762 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project_column: *763 + repository: *728 sender: *4 required: - action @@ -170275,11 +170351,11 @@ webhooks: type: string enum: - moved - enterprise: *724 - installation: *725 - organization: *726 - project_column: *762 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project_column: *763 + repository: *728 sender: *4 required: - action @@ -170359,11 +170435,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project: *763 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project: *764 + repository: *728 sender: *4 required: - action @@ -170443,14 +170519,14 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - project: *763 + enterprise: *725 + installation: *726 + organization: *727 + project: *764 repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -170551,11 +170627,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - project: *763 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project: *764 + repository: *728 sender: *4 required: - action @@ -170634,11 +170710,11 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 - organization: *726 - project: *763 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + project: *764 + repository: *728 sender: *4 required: - action @@ -170719,8 +170795,8 @@ webhooks: type: string enum: - closed - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -170802,8 +170878,8 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -170885,8 +170961,8 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -171008,8 +171084,8 @@ webhooks: type: string to: type: string - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -171093,7 +171169,7 @@ webhooks: type: string enum: - archived - changes: &767 + changes: &768 type: object properties: archived_at: @@ -171109,9 +171185,9 @@ webhooks: - string - 'null' format: date-time - installation: *725 - organization: *726 - projects_v2_item: &764 + installation: *726 + organization: *727 + projects_v2_item: &765 title: Projects v2 Item description: An item belonging to a project type: object @@ -171251,9 +171327,9 @@ webhooks: - 'null' to: type: string - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -171335,9 +171411,9 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -171418,9 +171494,9 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -171525,7 +171601,7 @@ webhooks: oneOf: - type: string - type: integer - - &765 + - &766 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -171549,7 +171625,7 @@ webhooks: required: - id - name - - &766 + - &767 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -171589,8 +171665,8 @@ webhooks: oneOf: - type: string - type: integer - - *765 - *766 + - *767 type: - 'null' - string @@ -171613,9 +171689,9 @@ webhooks: - 'null' required: - body - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -171712,9 +171788,9 @@ webhooks: type: - string - 'null' - installation: *725 - organization: *726 - projects_v2_item: *764 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -171797,10 +171873,10 @@ webhooks: type: string enum: - restored - changes: *767 - installation: *725 - organization: *726 - projects_v2_item: *764 + changes: *768 + installation: *726 + organization: *727 + projects_v2_item: *765 sender: *4 required: - action @@ -171882,8 +171958,8 @@ webhooks: type: string enum: - reopened - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -171965,9 +172041,9 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 - projects_v2_status_update: *768 + installation: *726 + organization: *727 + projects_v2_status_update: *769 sender: *4 required: - action @@ -172048,9 +172124,9 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 - projects_v2_status_update: *768 + installation: *726 + organization: *727 + projects_v2_status_update: *769 sender: *4 required: - action @@ -172196,9 +172272,9 @@ webhooks: - string - 'null' format: date - installation: *725 - organization: *726 - projects_v2_status_update: *768 + installation: *726 + organization: *727 + projects_v2_status_update: *769 sender: *4 required: - action @@ -172269,10 +172345,10 @@ webhooks: title: public event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - repository @@ -172349,13 +172425,13 @@ webhooks: type: string enum: - assigned - assignee: *744 - enterprise: *724 - installation: *725 - number: &769 + assignee: *745 + enterprise: *725 + installation: *726 + number: &770 description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -174726,7 +174802,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -174823,11 +174899,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -177191,7 +177267,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *728 sender: *4 required: - action @@ -177288,11 +177364,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -179656,7 +179732,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *728 sender: *4 required: - action @@ -179753,11 +179829,11 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: &770 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: &771 allOf: - *579 - type: object @@ -179821,7 +179897,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *727 + repository: *728 sender: *4 required: - action @@ -179902,12 +179978,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -179987,11 +180063,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *724 + enterprise: *725 milestone: *279 - number: *769 - organization: *726 - pull_request: &771 + number: *770 + organization: *727 + pull_request: &772 title: Pull Request type: object properties: @@ -182382,7 +182458,7 @@ webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *727 + repository: *728 sender: *4 required: - action @@ -182461,11 +182537,11 @@ webhooks: type: string enum: - dequeued - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -184833,7 +184909,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *727 + repository: *728 sender: *4 required: - action @@ -184965,12 +185041,12 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -185050,11 +185126,11 @@ webhooks: type: string enum: - enqueued - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -187407,7 +187483,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -187495,11 +187571,11 @@ webhooks: type: string enum: - labeled - enterprise: *724 - installation: *725 - label: *743 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + label: *744 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -189869,7 +189945,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -189965,10 +190041,10 @@ webhooks: type: string enum: - locked - enterprise: *724 - installation: *725 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -192336,7 +192412,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -192431,12 +192507,12 @@ webhooks: type: string enum: - milestoned - enterprise: *724 + enterprise: *725 milestone: *279 - number: *769 - organization: *726 - pull_request: *771 - repository: *727 + number: *770 + organization: *727 + pull_request: *772 + repository: *728 sender: *4 required: - action @@ -192515,12 +192591,12 @@ webhooks: type: string enum: - opened - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -192601,12 +192677,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -192686,12 +192762,12 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 - number: *769 - organization: *726 - pull_request: *770 - repository: *727 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 + pull_request: *771 + repository: *728 sender: *4 required: - action @@ -193066,9 +193142,9 @@ webhooks: - start_side - side - reactions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: type: object properties: @@ -195320,7 +195396,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -195415,7 +195491,7 @@ webhooks: type: string enum: - deleted - comment: &773 + comment: &774 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -195708,9 +195784,9 @@ webhooks: - start_side - side - reactions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: type: object properties: @@ -197950,7 +198026,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -198045,11 +198121,11 @@ webhooks: type: string enum: - edited - changes: *772 - comment: *773 - enterprise: *724 - installation: *725 - organization: *726 + changes: *773 + comment: *774 + enterprise: *725 + installation: *726 + organization: *727 pull_request: type: object properties: @@ -200292,7 +200368,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -200388,9 +200464,9 @@ webhooks: type: string enum: - dismissed - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -202645,7 +202721,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 review: description: The review that was affected. type: object @@ -202911,9 +202987,9 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -205027,8 +205103,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: &774 + repository: *728 + review: &775 description: The review that was affected. type: object properties: @@ -205274,12 +205350,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -207648,7 +207724,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_reviewer: title: User type: @@ -207734,12 +207810,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -210115,7 +210191,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_team: title: Team description: Groups of organization members that gives permissions @@ -210333,12 +210409,12 @@ webhooks: type: string enum: - review_requested - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -212709,7 +212785,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_reviewer: title: User type: @@ -212796,12 +212872,12 @@ webhooks: type: string enum: - review_requested - enterprise: *724 - installation: *725 + enterprise: *725 + installation: *726 number: description: The pull request number. type: integer - organization: *726 + organization: *727 pull_request: title: Pull Request type: object @@ -215163,7 +215239,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_team: title: Team description: Groups of organization members that gives permissions @@ -215370,9 +215446,9 @@ webhooks: type: string enum: - submitted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -217630,8 +217706,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: *774 + repository: *728 + review: *775 sender: *4 required: - action @@ -217726,9 +217802,9 @@ webhooks: type: string enum: - resolved - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -219881,7 +219957,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 sender: *4 thread: type: object @@ -220286,9 +220362,9 @@ webhooks: type: string enum: - unresolved - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 pull_request: title: Simple Pull Request type: object @@ -222424,7 +222500,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 sender: *4 thread: type: object @@ -222831,10 +222907,10 @@ webhooks: type: string before: type: string - enterprise: *724 - installation: *725 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -225191,7 +225267,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -225288,11 +225364,11 @@ webhooks: type: string enum: - unassigned - assignee: *775 - enterprise: *724 - installation: *725 - number: *769 - organization: *726 + assignee: *776 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -227664,7 +227740,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -227758,11 +227834,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *724 - installation: *725 - label: *743 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + label: *744 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -230123,7 +230199,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -230219,10 +230295,10 @@ webhooks: type: string enum: - unlocked - enterprise: *724 - installation: *725 - number: *769 - organization: *726 + enterprise: *725 + installation: *726 + number: *770 + organization: *727 pull_request: title: Pull Request type: object @@ -232573,7 +232649,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -232791,7 +232867,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *724 + enterprise: *725 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -232886,8 +232962,8 @@ webhooks: - url - author - committer - installation: *725 - organization: *726 + installation: *726 + organization: *727 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -233486,9 +233562,9 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 registry_package: type: object properties: @@ -233965,7 +234041,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *758 + items: *759 summary: type: string tag_name: @@ -234021,7 +234097,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -234099,9 +234175,9 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 registry_package: type: object properties: @@ -234413,7 +234489,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *758 + items: *759 summary: type: string tag_name: @@ -234463,7 +234539,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -234540,10 +234616,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - release: &776 + enterprise: *725 + installation: *726 + organization: *727 + release: &777 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -234874,7 +234950,7 @@ webhooks: - updated_at - zipball_url - body - repository: *727 + repository: *728 sender: *4 required: - action @@ -234951,11 +235027,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - release: *776 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + release: *777 + repository: *728 sender: *4 required: - action @@ -235072,11 +235148,11 @@ webhooks: type: boolean required: - to - enterprise: *724 - installation: *725 - organization: *726 - release: *776 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + release: *777 + repository: *728 sender: *4 required: - action @@ -235154,9 +235230,9 @@ webhooks: type: string enum: - prereleased - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -235492,7 +235568,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *728 sender: *4 required: - action @@ -235568,10 +235644,10 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - release: &777 + enterprise: *725 + installation: *726 + organization: *727 + release: &778 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -235904,7 +235980,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *728 sender: *4 required: - action @@ -235980,11 +236056,11 @@ webhooks: type: string enum: - released - enterprise: *724 - installation: *725 - organization: *726 - release: *776 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + release: *777 + repository: *728 sender: *4 required: - action @@ -236060,11 +236136,11 @@ webhooks: type: string enum: - unpublished - enterprise: *724 - installation: *725 - organization: *726 - release: *777 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + release: *778 + repository: *728 sender: *4 required: - action @@ -236140,11 +236216,11 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - repository_advisory: *647 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + repository_advisory: *648 sender: *4 required: - action @@ -236220,11 +236296,11 @@ webhooks: type: string enum: - reported - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - repository_advisory: *647 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + repository_advisory: *648 sender: *4 required: - action @@ -236300,10 +236376,10 @@ webhooks: type: string enum: - archived - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236380,10 +236456,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236461,10 +236537,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236549,10 +236625,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236667,10 +236743,10 @@ webhooks: - 'null' items: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236742,10 +236818,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 status: type: string @@ -236826,10 +236902,10 @@ webhooks: type: string enum: - privatized - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -236906,10 +236982,10 @@ webhooks: type: string enum: - publicized - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237003,10 +237079,10 @@ webhooks: - name required: - repository - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237086,10 +237162,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 repository_ruleset: *321 sender: *4 required: @@ -237168,10 +237244,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 repository_ruleset: *321 sender: *4 required: @@ -237250,10 +237326,10 @@ webhooks: type: string enum: - edited - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 repository_ruleset: *321 changes: type: object @@ -237561,10 +237637,10 @@ webhooks: - from required: - owner - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237642,10 +237718,10 @@ webhooks: type: string enum: - unarchived - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -237723,7 +237799,7 @@ webhooks: type: string enum: - create - alert: &778 + alert: &779 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -237848,10 +237924,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -238061,10 +238137,10 @@ webhooks: type: string enum: - dismissed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -238142,11 +238218,11 @@ webhooks: type: string enum: - reopen - alert: *778 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *779 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -238348,10 +238424,10 @@ webhooks: enum: - fixed - open - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -238429,7 +238505,7 @@ webhooks: type: string enum: - assigned - alert: &779 + alert: &780 type: object properties: number: *178 @@ -238569,10 +238645,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -238650,11 +238726,11 @@ webhooks: type: string enum: - created - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -238735,11 +238811,11 @@ webhooks: type: string enum: - created - alert: *779 - installation: *725 - location: *780 - organization: *726 - repository: *727 + alert: *780 + installation: *726 + location: *781 + organization: *727 + repository: *728 sender: *4 required: - location @@ -238977,11 +239053,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -239059,11 +239135,11 @@ webhooks: type: string enum: - reopened - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -239141,11 +239217,11 @@ webhooks: type: string enum: - resolved - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -239223,12 +239299,12 @@ webhooks: type: string enum: - unassigned - alert: *779 + alert: *780 assignee: *4 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -239306,11 +239382,11 @@ webhooks: type: string enum: - validated - alert: *779 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *780 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -239440,10 +239516,10 @@ webhooks: - organization - enterprise - - repository: *727 - enterprise: *724 - installation: *725 - organization: *726 + repository: *728 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -239521,11 +239597,11 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - security_advisory: &781 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + security_advisory: &782 description: The details of the security advisory, including summary, description, and severity. type: object @@ -239729,11 +239805,11 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - security_advisory: *781 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 + security_advisory: *782 sender: *4 required: - action @@ -239806,10 +239882,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -240004,9 +240080,9 @@ webhooks: type: object properties: security_and_analysis: *294 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: *341 sender: *4 required: @@ -240085,12 +240161,12 @@ webhooks: type: string enum: - cancelled - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: &782 + sponsorship: &783 type: object properties: created_at: @@ -240395,12 +240471,12 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - sponsorship @@ -240488,12 +240564,12 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - changes @@ -240570,17 +240646,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &783 + effective_date: &784 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: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - sponsorship @@ -240654,7 +240730,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &784 + changes: &785 type: object properties: tier: @@ -240698,13 +240774,13 @@ webhooks: - from required: - tier - effective_date: *783 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + effective_date: *784 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - changes @@ -240781,13 +240857,13 @@ webhooks: type: string enum: - tier_changed - changes: *784 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + changes: *785 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - sponsorship: *782 + sponsorship: *783 required: - action - changes @@ -240861,10 +240937,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -240948,10 +241024,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -241385,15 +241461,15 @@ webhooks: type: - string - 'null' - enterprise: *724 + enterprise: *725 id: description: The unique identifier of the status. type: integer - installation: *725 + installation: *726 name: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 sha: description: The Commit SHA. @@ -241509,9 +241585,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -241600,9 +241676,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -241691,9 +241767,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -241782,9 +241858,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *82 - installation: *725 - organization: *726 - repository: *727 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -241860,12 +241936,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - team: &785 + team: &786 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -242095,9 +242171,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -242567,7 +242643,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -242643,9 +242719,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -243115,7 +243191,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -243192,9 +243268,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -243664,7 +243740,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -243808,9 +243884,9 @@ webhooks: - from required: - permissions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -244280,7 +244356,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - changes @@ -244358,9 +244434,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 repository: title: Repository description: A git repository @@ -244830,7 +244906,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -244906,10 +244982,10 @@ webhooks: type: string enum: - started - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 required: - action @@ -244982,17 +245058,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *724 + enterprise: *725 inputs: type: - object - 'null' additionalProperties: true - installation: *725 - organization: *726 + installation: *726 + organization: *727 ref: type: string - repository: *727 + repository: *728 sender: *4 workflow: type: string @@ -245074,10 +245150,10 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 workflow_job: allOf: @@ -245412,10 +245488,10 @@ webhooks: type: string enum: - in_progress - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 workflow_job: allOf: @@ -245776,10 +245852,10 @@ webhooks: type: string enum: - queued - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 workflow_job: type: object @@ -246004,10 +246080,10 @@ webhooks: type: string enum: - waiting - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 workflow_job: type: object @@ -246234,12 +246310,12 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: *739 + workflow: *740 workflow_run: title: Workflow Run type: object @@ -247258,12 +247334,12 @@ webhooks: type: string enum: - in_progress - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: *739 + workflow: *740 workflow_run: title: Workflow Run type: object @@ -248267,12 +248343,12 @@ webhooks: type: string enum: - requested - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + installation: *726 + organization: *727 + repository: *728 sender: *4 - workflow: *739 + workflow: *740 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 9d65f9336..c3c30a2e8 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -29844,6 +29844,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -29874,6 +29884,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -29899,6 +29910,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -30264,6 +30276,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -30290,6 +30312,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -30315,6 +30338,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -30636,6 +30660,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -33038,6 +33072,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -33058,6 +33102,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -153458,6 +153503,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -153484,6 +153539,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -153509,6 +153565,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -153878,6 +153935,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -153904,6 +153971,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -153929,6 +153997,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -154250,6 +154319,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -156652,6 +156731,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -156672,6 +156761,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -306575,6 +306665,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).\"", @@ -345794,6 +345899,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -345820,6 +345935,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -345845,6 +345961,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -346184,6 +346301,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -348613,6 +348740,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -348633,6 +348770,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -503831,6 +503969,135 @@ } } }, + "/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" + ], + "examples": [ + "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", @@ -702790,6 +703057,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-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index f612fa55b..cf5c66e69 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -1088,7 +1088,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: - - &760 + - &761 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4361,7 +4361,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &769 + schema: &770 title: Scim Error description: Scim Error type: object @@ -12016,7 +12016,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &770 + '401': &771 description: Authorization failure '404': *6 x-github: @@ -13312,6 +13312,15 @@ 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. + type: + - string + - 'null' + examples: + - 2.323.0 required: - id - name @@ -13333,6 +13342,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -13349,6 +13359,7 @@ paths: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -13842,6 +13853,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -26356,14 +26368,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &738 + state: &739 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: &739 + resolution: &740 type: - string - 'null' @@ -26482,14 +26494,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &740 + - &741 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &742 + - &743 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -26553,7 +26565,7 @@ paths: - blob_url - commit_sha - commit_url - - &743 + - &744 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. @@ -26614,7 +26626,7 @@ paths: - page_url - commit_sha - commit_url - - &744 + - &745 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -26636,7 +26648,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &745 + - &746 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -26658,7 +26670,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &746 + - &747 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -26680,7 +26692,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &747 + - &748 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -26695,7 +26707,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &748 + - &749 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -26710,7 +26722,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &749 + - &750 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -26725,7 +26737,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &750 + - &751 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. @@ -26747,7 +26759,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &751 + - &752 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. @@ -26769,7 +26781,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &752 + - &753 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. @@ -26791,7 +26803,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &753 + - &754 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. @@ -26813,7 +26825,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &754 + - &755 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 @@ -30556,7 +30568,7 @@ paths: properties: action: type: string - discussion: &875 + discussion: &876 title: Discussion description: A Discussion in a repository. type: object @@ -31342,7 +31354,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &797 + sub_issues_summary: &798 title: Sub-issues Summary type: object properties: @@ -31453,7 +31465,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &798 + issue_dependencies_summary: &799 title: Issue Dependencies Summary type: object properties: @@ -32926,7 +32938,7 @@ paths: url: type: string format: uri - user: &804 + user: &805 title: Public User description: Public User type: object @@ -44668,12 +44680,12 @@ paths: required: - subject_digests examples: - default: &835 + default: &836 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &836 + withPredicateType: &837 value: subject_digests: - sha256:abc123 @@ -44732,7 +44744,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &837 + default: &838 value: attestations_subject_digests: - sha256:abc: @@ -57787,7 +57799,7 @@ paths: parameters: - *87 - *398 - - &818 + - &819 name: repo_name description: repo_name parameter in: path @@ -59135,7 +59147,7 @@ paths: - nuget - container - *87 - - &819 + - &820 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -59176,7 +59188,7 @@ paths: default: *403 '403': *27 '401': *23 - '400': &821 + '400': &822 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -61307,7 +61319,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &908 + - &909 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -62205,7 +62217,7 @@ paths: - updated_at - project_url examples: - default: &841 + default: &842 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62382,7 +62394,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &842 + items: &843 type: object properties: name: @@ -62419,7 +62431,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &843 + iteration_configuration: &844 type: object description: The configuration for iteration fields. properties: @@ -62469,7 +62481,7 @@ paths: value: name: Due date data_type: date - single_select_field: &844 + single_select_field: &845 summary: Create a single select field value: name: Priority @@ -62496,7 +62508,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &845 + iteration_field: &846 summary: Create an iteration field value: name: Sprint @@ -62522,7 +62534,7 @@ paths: application/json: schema: *423 examples: - text_field: &846 + text_field: &847 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -62531,7 +62543,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: &847 + number_field: &848 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -62540,7 +62552,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: &848 + date_field: &849 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -62549,7 +62561,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: &849 + single_select_field: &850 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62583,7 +62595,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &850 + iteration_field: &851 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -62629,7 +62641,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - *420 - - &851 + - &852 name: field_id description: The unique identifier of the field. in: path @@ -62644,7 +62656,7 @@ paths: application/json: schema: *423 examples: - default: &852 + default: &853 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63855,7 +63867,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &832 + schema: &833 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -64038,7 +64050,7 @@ paths: parameters: - *420 - *87 - - &853 + - &854 name: view_number description: The number that identifies the project view. in: path @@ -66202,6 +66214,22 @@ paths: - bypass - all default: all + - &730 + 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: @@ -66209,7 +66237,7 @@ paths: description: Response content: application/json: - schema: &730 + schema: &731 title: Rule Suites description: Response type: array @@ -66265,7 +66293,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &731 + default: &732 value: - id: 21 actor_id: 12 @@ -66309,7 +66337,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *87 - - &732 + - &733 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -66325,7 +66353,7 @@ paths: description: Response content: application/json: - schema: &733 + schema: &734 title: Rule Suite description: Response type: object @@ -66432,7 +66460,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &734 + default: &735 value: id: 21 actor_id: 12 @@ -66768,7 +66796,7 @@ paths: - *110 - *19 - *17 - - &736 + - &737 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 @@ -66778,7 +66806,7 @@ paths: required: false schema: type: string - - &737 + - &738 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 @@ -66992,7 +67020,7 @@ paths: application/json: schema: type: array - items: &758 + items: &759 description: A repository security advisory. type: object properties: @@ -67311,7 +67339,7 @@ paths: - private_fork additionalProperties: false examples: - default: &759 + default: &760 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -69489,7 +69517,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &800 + response-if-user-is-a-team-maintainer: &801 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -69554,7 +69582,7 @@ paths: application/json: schema: *472 examples: - response-if-users-membership-with-team-is-now-pending: &801 + response-if-users-membership-with-team-is-now-pending: &802 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -69668,7 +69696,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &802 + schema: &803 title: Team Repository description: A team's access to a repository. type: object @@ -70508,7 +70536,7 @@ paths: type: array items: *314 examples: - response-if-child-teams-exist: &803 + response-if-child-teams-exist: &804 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -82964,7 +82992,7 @@ paths: check. type: array items: *222 - deployment: &864 + deployment: &865 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -88219,7 +88247,7 @@ paths: type: array items: *576 examples: - default: &809 + default: &810 value: total_count: 2 machines: @@ -91396,7 +91424,7 @@ paths: application/json: schema: type: array - items: &763 + items: &764 title: Status description: The status of a commit. type: object @@ -93022,7 +93050,7 @@ paths: items: type: object properties: - placeholder_id: &755 + placeholder_id: &756 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -99736,6 +99764,50 @@ 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: + - *473 + - *474 + 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 + examples: + - sha1 + required: + - hash_algorithm + examples: + default: + value: + hash_algorithm: sha1 + '403': *27 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/hooks": get: summary: List repository webhooks @@ -99822,7 +99894,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &900 + last_response: &901 title: Hook Response type: object properties: @@ -100891,7 +100963,7 @@ paths: parameters: - *473 - *474 - - &830 + - &831 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -101325,7 +101397,7 @@ paths: type: array items: *657 examples: - default: &823 + default: &824 value: - id: 1 repository: @@ -115359,7 +115431,7 @@ paths: application/json: schema: *187 examples: - default: &735 + default: &736 value: id: 42 name: super cool ruleset @@ -115413,6 +115485,7 @@ paths: - *105 - *728 - *729 + - *730 - *17 - *19 responses: @@ -115420,9 +115493,9 @@ paths: description: Response content: application/json: - schema: *730 + schema: *731 examples: - default: *731 + default: *732 '404': *6 '500': *38 x-github: @@ -115445,15 +115518,15 @@ paths: parameters: - *473 - *474 - - *732 + - *733 responses: '200': description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: *734 + default: *735 '404': *6 '500': *38 x-github: @@ -115504,7 +115577,7 @@ paths: application/json: schema: *187 examples: - default: *735 + default: *736 '404': *6 '500': *38 put: @@ -115587,7 +115660,7 @@ paths: application/json: schema: *187 examples: - default: *735 + default: *736 '404': *6 '422': *15 '500': *38 @@ -115755,8 +115828,8 @@ paths: - *110 - *19 - *17 - - *736 - *737 + - *738 - *448 - *449 - *450 @@ -115769,7 +115842,7 @@ paths: application/json: schema: type: array - items: &741 + items: &742 type: object properties: number: *127 @@ -115785,8 +115858,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *738 - resolution: *739 + state: *739 + resolution: *740 resolved_at: type: - string @@ -115892,7 +115965,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *740 + - *741 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -116060,7 +116133,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *742 examples: default: value: @@ -116124,8 +116197,8 @@ paths: schema: type: object properties: - state: *738 - resolution: *739 + state: *739 + resolution: *740 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -116173,7 +116246,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *742 examples: default: value: @@ -116285,7 +116358,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &920 + items: &921 type: object properties: type: @@ -116312,7 +116385,6 @@ paths: - commit details: oneOf: - - *742 - *743 - *744 - *745 @@ -116325,6 +116397,7 @@ paths: - *752 - *753 - *754 + - *755 examples: default: value: @@ -116419,14 +116492,14 @@ paths: schema: type: object properties: - reason: &756 + reason: &757 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *755 + placeholder_id: *756 required: - reason - placeholder_id @@ -116443,7 +116516,7 @@ paths: schema: type: object properties: - reason: *756 + reason: *757 expire_at: type: - string @@ -116506,7 +116579,7 @@ paths: properties: incremental_scans: type: array - items: &757 + items: &758 description: Information on a single scan performed by secret scanning on the repository type: object @@ -116539,15 +116612,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *757 + items: *758 backfill_scans: type: array - items: *757 + items: *758 custom_pattern_backfill_scans: type: array items: allOf: - - *757 + - *758 - type: object properties: pattern_name: @@ -116560,7 +116633,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *757 + items: *758 examples: default: value: @@ -116670,9 +116743,9 @@ paths: application/json: schema: type: array - items: *758 + items: *759 examples: - default: *759 + default: *760 '400': *14 '404': *6 x-github: @@ -116866,9 +116939,9 @@ paths: description: Response content: application/json: - schema: *758 + schema: *759 examples: - default: &761 + default: &762 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -117215,7 +117288,7 @@ paths: description: Response content: application/json: - schema: *758 + schema: *759 examples: default: value: @@ -117364,15 +117437,15 @@ paths: parameters: - *473 - *474 - - *760 + - *761 responses: '200': description: Response content: application/json: - schema: *758 + schema: *759 examples: - default: *761 + default: *762 '403': *27 '404': *6 x-github: @@ -117398,7 +117471,7 @@ paths: parameters: - *473 - *474 - - *760 + - *761 requestBody: required: true content: @@ -117569,10 +117642,10 @@ paths: description: Response content: application/json: - schema: *758 + schema: *759 examples: - default: *761 - add_credit: *761 + default: *762 + add_credit: *762 '403': *27 '404': *6 '422': @@ -117612,7 +117685,7 @@ paths: parameters: - *473 - *474 - - *760 + - *761 responses: '202': *37 '400': *14 @@ -117641,7 +117714,7 @@ paths: parameters: - *473 - *474 - - *760 + - *761 responses: '202': description: Response @@ -117782,7 +117855,7 @@ paths: application/json: schema: type: array - items: &762 + items: &763 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -118155,7 +118228,7 @@ paths: application/json: schema: type: array - items: *762 + items: *763 examples: default: value: @@ -118245,7 +118318,7 @@ paths: description: Response content: application/json: - schema: *763 + schema: *764 examples: default: value: @@ -118339,7 +118412,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &764 + schema: &765 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -118439,7 +118512,7 @@ paths: description: Response content: application/json: - schema: *764 + schema: *765 examples: default: value: @@ -118649,7 +118722,7 @@ paths: description: Response content: application/json: - schema: &765 + schema: &766 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -118661,7 +118734,7 @@ paths: required: - names examples: - default: &766 + default: &767 value: names: - octocat @@ -118716,9 +118789,9 @@ paths: description: Response content: application/json: - schema: *765 + schema: *766 examples: - default: *766 + default: *767 '404': *6 '422': *7 x-github: @@ -118741,7 +118814,7 @@ paths: parameters: - *473 - *474 - - &767 + - &768 name: per description: The time frame to display results for. in: query @@ -118772,7 +118845,7 @@ paths: - 128 clones: type: array - items: &768 + items: &769 title: Traffic type: object properties: @@ -119020,7 +119093,7 @@ paths: parameters: - *473 - *474 - - *767 + - *768 responses: '200': description: Response @@ -119041,7 +119114,7 @@ paths: - 3782 views: type: array - items: *768 + items: *769 required: - uniques - count @@ -119713,7 +119786,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &776 + - &777 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -119723,7 +119796,7 @@ paths: type: string examples: - members - - &781 + - &782 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -119735,7 +119808,7 @@ paths: format: int32 examples: - 1 - - &782 + - &783 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -119779,7 +119852,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &771 + items: &772 allOf: - type: object required: @@ -119861,7 +119934,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: &783 + meta: &784 type: object description: The metadata associated with the creation/updates to the user. @@ -119926,30 +119999,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &772 + '400': &773 description: Bad request content: application/json: - schema: *769 + schema: *770 application/scim+json: - schema: *769 - '401': *770 - '403': &773 + schema: *770 + '401': *771 + '403': &774 description: Permission denied - '429': &774 + '429': &775 description: Too many requests content: application/json: - schema: *769 + schema: *770 application/scim+json: - schema: *769 - '500': &775 + schema: *770 + '500': &776 description: Internal server error content: application/json: - schema: *769 + schema: *770 application/scim+json: - schema: *769 + schema: *770 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119973,7 +120046,7 @@ paths: required: true content: application/json: - schema: &779 + schema: &780 type: object required: - schemas @@ -120037,9 +120110,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *771 + schema: *772 examples: - group: &777 + group: &778 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -120058,13 +120131,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': *772 - '401': *770 - '403': *773 - '409': &780 + '400': *773 + '401': *771 + '403': *774 + '409': &781 description: Duplicate record detected - '429': *774 - '500': *775 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120081,7 +120154,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: - - &778 + - &779 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -120090,22 +120163,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *776 + - *777 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *771 + schema: *772 examples: - default: *777 - '400': *772 - '401': *770 - '403': *773 + default: *778 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '429': *774 - '500': *775 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120124,13 +120197,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: - - *778 + - *779 - *39 requestBody: required: true content: application/json: - schema: *779 + schema: *780 examples: group: summary: Group @@ -120156,17 +120229,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *771 + schema: *772 examples: - group: *777 - groupWithMembers: *777 - '400': *772 - '401': *770 - '403': *773 + group: *778 + groupWithMembers: *778 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *781 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120190,13 +120263,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: - - *778 + - *779 - *39 requestBody: required: true content: application/json: - schema: &790 + schema: &791 type: object required: - Operations @@ -120256,17 +120329,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *771 + schema: *772 examples: - updateGroup: *777 - addMembers: *777 - '400': *772 - '401': *770 - '403': *773 + updateGroup: *778 + addMembers: *778 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *781 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120282,17 +120355,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: - - *778 + - *779 - *39 responses: '204': description: Group was deleted, no content - '400': *772 - '401': *770 - '403': *773 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '429': *774 - '500': *775 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120326,8 +120399,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *781 - *782 + - *783 - *39 responses: '200': @@ -120361,7 +120434,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &785 + items: &786 allOf: - type: object required: @@ -120453,7 +120526,7 @@ paths: address. examples: - true - roles: &784 + roles: &785 type: array description: The roles assigned to the user. items: @@ -120512,7 +120585,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *783 + meta: *784 startIndex: type: integer description: A starting index for the returned page @@ -120551,11 +120624,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *772 - '401': *770 - '403': *773 - '429': *774 - '500': *775 + '400': *773 + '401': *771 + '403': *774 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120579,7 +120652,7 @@ paths: required: true content: application/json: - schema: &788 + schema: &789 type: object required: - schemas @@ -120672,9 +120745,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *784 + roles: *785 examples: - user: &789 + user: &790 summary: User value: schemas: @@ -120721,9 +120794,9 @@ paths: description: User has been created content: application/scim+json: - schema: *785 + schema: *786 examples: - user: &786 + user: &787 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -120749,13 +120822,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: *786 - '400': *772 - '401': *770 - '403': *773 - '409': *780 - '429': *774 - '500': *775 + enterpriseOwner: *787 + '400': *773 + '401': *771 + '403': *774 + '409': *781 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120772,7 +120845,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: - - &787 + - &788 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -120785,15 +120858,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *785 + schema: *786 examples: - default: *786 - '400': *772 - '401': *770 - '403': *773 + default: *787 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '429': *774 - '500': *775 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120844,30 +120917,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: - - *787 + - *788 - *39 requestBody: required: true content: application/json: - schema: *788 + schema: *789 examples: - user: *789 + user: *790 responses: '200': description: User was updated content: application/scim+json: - schema: *785 + schema: *786 examples: - user: *786 - '400': *772 - '401': *770 - '403': *773 + user: *787 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *781 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120908,13 +120981,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: - - *787 + - *788 - *39 requestBody: required: true content: application/json: - schema: *790 + schema: *791 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -120954,18 +121027,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *785 - examples: - userMultiValuedProperties: *786 - userSingleValuedProperties: *786 - disableUser: *786 - '400': *772 - '401': *770 - '403': *773 + schema: *786 + examples: + userMultiValuedProperties: *787 + userSingleValuedProperties: *787 + disableUser: *787 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *781 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120985,17 +121058,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: - - *787 + - *788 - *39 responses: '204': description: User was deleted, no content - '400': *772 - '401': *770 - '403': *773 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '429': *774 - '500': *775 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -121086,7 +121159,7 @@ paths: - 1 Resources: type: array - items: &791 + items: &792 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -121333,22 +121406,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': *35 - '404': &792 + '404': &793 description: Resource not found content: application/json: - schema: *769 + schema: *770 application/scim+json: - schema: *769 - '403': &793 + schema: *770 + '403': &794 description: Forbidden content: application/json: - schema: *769 + schema: *770 application/scim+json: - schema: *769 - '400': *772 - '429': *774 + schema: *770 + '400': *773 + '429': *775 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -121374,9 +121447,9 @@ paths: description: Response content: application/scim+json: - schema: *791 + schema: *792 examples: - default: &794 + default: &795 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -121399,17 +121472,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': *35 - '404': *792 - '403': *793 - '500': *775 + '404': *793 + '403': *794 + '500': *776 '409': description: Conflict content: application/json: - schema: *769 + schema: *770 application/scim+json: - schema: *769 - '400': *772 + schema: *770 + '400': *773 requestBody: required: true content: @@ -121509,17 +121582,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *87 - - *787 + - *788 responses: '200': description: Response content: application/scim+json: - schema: *791 + schema: *792 examples: - default: *794 - '404': *792 - '403': *793 + default: *795 + '404': *793 + '403': *794 '304': *35 x-github: githubCloudOnly: true @@ -121543,18 +121616,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *87 - - *787 + - *788 responses: '200': description: Response content: application/scim+json: - schema: *791 + schema: *792 examples: - default: *794 + default: *795 '304': *35 - '404': *792 - '403': *793 + '404': *793 + '403': *794 requestBody: required: true content: @@ -121669,19 +121742,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *87 - - *787 + - *788 responses: '200': description: Response content: application/scim+json: - schema: *791 + schema: *792 examples: - default: *794 + default: *795 '304': *35 - '404': *792 - '403': *793 - '400': *772 + '404': *793 + '403': *794 + '400': *773 '429': description: Response content: @@ -121777,12 +121850,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *87 - - *787 + - *788 responses: '204': description: Response - '404': *792 - '403': *793 + '404': *793 + '403': *794 '304': *35 x-github: githubCloudOnly: true @@ -121919,7 +121992,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &795 + text_matches: &796 title: Search Result Text Matches type: array items: @@ -122083,7 +122156,7 @@ paths: enum: - author-date - committer-date - - &796 + - &797 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 @@ -122203,7 +122276,7 @@ paths: type: number node_id: type: string - text_matches: *795 + text_matches: *796 required: - sha - node_id @@ -122396,7 +122469,7 @@ paths: - interactions - created - updated - - *796 + - *797 - *17 - *19 - name: advanced_search @@ -122510,8 +122583,8 @@ paths: type: - string - 'null' - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -122542,7 +122615,7 @@ paths: - string - 'null' format: date-time - text_matches: *795 + text_matches: *796 pull_request: type: object properties: @@ -122818,7 +122891,7 @@ paths: enum: - created - updated - - *796 + - *797 - *17 - *19 responses: @@ -122863,7 +122936,7 @@ paths: - 'null' score: type: number - text_matches: *795 + text_matches: *796 required: - id - node_id @@ -122949,7 +123022,7 @@ paths: - forks - help-wanted-issues - updated - - *796 + - *797 - *17 - *19 responses: @@ -123195,7 +123268,7 @@ paths: - admin - pull - push - text_matches: *795 + text_matches: *796 temp_clone_token: type: string allow_merge_commit: @@ -123504,7 +123577,7 @@ paths: - string - 'null' format: uri - text_matches: *795 + text_matches: *796 related: type: - array @@ -123699,7 +123772,7 @@ paths: - followers - repositories - joined - - *796 + - *797 - *17 - *19 responses: @@ -123809,7 +123882,7 @@ paths: type: - boolean - 'null' - text_matches: *795 + text_matches: *796 blog: type: - string @@ -123891,7 +123964,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &799 + - &800 name: team_id description: The unique identifier of the team. in: path @@ -123932,7 +124005,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *799 + - *800 requestBody: required: true content: @@ -124033,7 +124106,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *799 + - *800 responses: '204': description: Response @@ -124062,7 +124135,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *799 + - *800 - *17 - *19 responses: @@ -124100,7 +124173,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *799 + - *800 - name: role description: Filters members returned by their role in the team. in: query @@ -124151,7 +124224,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *799 + - *800 - *140 responses: '204': @@ -124188,7 +124261,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *799 + - *800 - *140 responses: '204': @@ -124228,7 +124301,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *799 + - *800 - *140 responses: '204': @@ -124265,7 +124338,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: - - *799 + - *800 - *140 responses: '200': @@ -124274,7 +124347,7 @@ paths: application/json: schema: *472 examples: - response-if-user-is-a-team-maintainer: *800 + response-if-user-is-a-team-maintainer: *801 '404': *6 x-github: githubCloudOnly: false @@ -124307,7 +124380,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: - - *799 + - *800 - *140 requestBody: required: false @@ -124335,7 +124408,7 @@ paths: application/json: schema: *472 examples: - response-if-users-membership-with-team-is-now-pending: *801 + response-if-users-membership-with-team-is-now-pending: *802 '403': description: Forbidden if team synchronization is set up '422': @@ -124369,7 +124442,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: - - *799 + - *800 - *140 responses: '204': @@ -124397,7 +124470,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *799 + - *800 - *17 - *19 responses: @@ -124439,7 +124512,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: - - *799 + - *800 - *473 - *474 responses: @@ -124447,7 +124520,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *802 + schema: *803 examples: alternative-response-with-extra-repository-information: value: @@ -124598,7 +124671,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: - - *799 + - *800 - *473 - *474 requestBody: @@ -124650,7 +124723,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: - - *799 + - *800 - *473 - *474 responses: @@ -124681,7 +124754,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: - - *799 + - *800 responses: '200': description: Response @@ -124716,7 +124789,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: - - *799 + - *800 requestBody: required: true content: @@ -124808,7 +124881,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *799 + - *800 - *17 - *19 responses: @@ -124820,7 +124893,7 @@ paths: type: array items: *314 examples: - response-if-child-teams-exist: *803 + response-if-child-teams-exist: *804 headers: Link: *45 '404': *6 @@ -124853,7 +124926,7 @@ paths: application/json: schema: oneOf: - - &805 + - &806 title: Private User description: Private User type: object @@ -125103,7 +125176,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *804 + - *805 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -125263,7 +125336,7 @@ paths: description: Response content: application/json: - schema: *805 + schema: *806 examples: default: value: @@ -125661,7 +125734,7 @@ paths: type: integer secrets: type: array - items: &806 + items: &807 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -125781,7 +125854,7 @@ paths: description: Response content: application/json: - schema: *806 + schema: *807 examples: default: value: @@ -126194,7 +126267,7 @@ paths: description: Response content: application/json: - schema: &807 + schema: &808 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -126247,7 +126320,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &808 + default: &809 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -126292,9 +126365,9 @@ paths: description: Response content: application/json: - schema: *807 + schema: *808 examples: - default: *808 + default: *809 '404': *6 x-github: githubCloudOnly: false @@ -126333,7 +126406,7 @@ paths: type: array items: *576 examples: - default: *809 + default: *810 '304': *35 '500': *38 '401': *23 @@ -127299,7 +127372,7 @@ paths: type: array items: *402 examples: - default: &820 + default: &821 value: - id: 197 name: hello_docker @@ -127400,7 +127473,7 @@ paths: application/json: schema: type: array - items: &810 + items: &811 title: Email description: Email type: object @@ -127470,9 +127543,9 @@ paths: application/json: schema: type: array - items: *810 + items: *811 examples: - default: &822 + default: &823 value: - email: octocat@github.com verified: true @@ -127549,7 +127622,7 @@ paths: application/json: schema: type: array - items: *810 + items: *811 examples: default: value: @@ -127807,7 +127880,7 @@ paths: application/json: schema: type: array - items: &811 + items: &812 title: GPG Key description: A unique encryption key type: object @@ -127952,7 +128025,7 @@ paths: - subkeys - revoked examples: - default: &839 + default: &840 value: - id: 3 name: Octocat's GPG Key @@ -128037,9 +128110,9 @@ paths: description: Response content: application/json: - schema: *811 + schema: *812 examples: - default: &812 + default: &813 value: id: 3 name: Octocat's GPG Key @@ -128096,7 +128169,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: - - &813 + - &814 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -128108,9 +128181,9 @@ paths: description: Response content: application/json: - schema: *811 + schema: *812 examples: - default: *812 + default: *813 '404': *6 '304': *35 '403': *27 @@ -128133,7 +128206,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: - - *813 + - *814 responses: '204': description: Response @@ -128600,7 +128673,7 @@ paths: application/json: schema: type: array - items: &814 + items: &815 title: Key description: Key type: object @@ -128703,9 +128776,9 @@ paths: description: Response content: application/json: - schema: *814 + schema: *815 examples: - default: &815 + default: &816 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -128744,9 +128817,9 @@ paths: description: Response content: application/json: - schema: *814 + schema: *815 examples: - default: *815 + default: *816 '404': *6 '304': *35 '403': *27 @@ -128802,7 +128875,7 @@ paths: application/json: schema: type: array - items: &816 + items: &817 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -128881,7 +128954,7 @@ paths: - account - plan examples: - default: &817 + default: &818 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -128943,9 +129016,9 @@ paths: application/json: schema: type: array - items: *816 + items: *817 examples: - default: *817 + default: *818 headers: Link: *45 '304': *35 @@ -129963,7 +130036,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - *398 - - *818 + - *819 responses: '204': description: Response @@ -130078,7 +130151,7 @@ paths: - docker - nuget - container - - *819 + - *820 - *19 - *17 responses: @@ -130090,8 +130163,8 @@ paths: type: array items: *402 examples: - default: *820 - '400': *821 + default: *821 + '400': *822 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -130120,7 +130193,7 @@ paths: application/json: schema: *402 examples: - default: &840 + default: &841 value: id: 40201 name: octo-name @@ -130482,9 +130555,9 @@ paths: application/json: schema: type: array - items: *810 + items: *811 examples: - default: *822 + default: *823 headers: Link: *45 '304': *35 @@ -130597,7 +130670,7 @@ paths: type: array items: *78 examples: - default: &829 + default: &830 summary: Default response value: - id: 1296269 @@ -130957,7 +131030,7 @@ paths: type: array items: *657 examples: - default: *823 + default: *824 headers: Link: *45 '304': *35 @@ -131036,7 +131109,7 @@ paths: application/json: schema: type: array - items: &824 + items: &825 title: Social account description: Social media account type: object @@ -131053,7 +131126,7 @@ paths: - provider - url examples: - default: &825 + default: &826 value: - provider: twitter url: https://twitter.com/github @@ -131116,9 +131189,9 @@ paths: application/json: schema: type: array - items: *824 + items: *825 examples: - default: *825 + default: *826 '422': *15 '304': *35 '404': *6 @@ -131206,7 +131279,7 @@ paths: application/json: schema: type: array - items: &826 + items: &827 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -131226,7 +131299,7 @@ paths: - title - created_at examples: - default: &854 + default: &855 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -131291,9 +131364,9 @@ paths: description: Response content: application/json: - schema: *826 + schema: *827 examples: - default: &827 + default: &828 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -131323,7 +131396,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: - - &828 + - &829 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -131335,9 +131408,9 @@ paths: description: Response content: application/json: - schema: *826 + schema: *827 examples: - default: *827 + default: *828 '404': *6 '304': *35 '403': *27 @@ -131360,7 +131433,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: - - *828 + - *829 responses: '204': description: Response @@ -131389,7 +131462,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: - - &855 + - &856 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 @@ -131414,11 +131487,11 @@ paths: type: array items: *78 examples: - default-response: *829 + default-response: *830 application/vnd.github.v3.star+json: schema: type: array - items: &856 + items: &857 title: Starred Repository description: Starred Repository type: object @@ -131787,10 +131860,10 @@ paths: application/json: schema: oneOf: + - *806 - *805 - - *804 examples: - default-response: &833 + default-response: &834 summary: Default response value: login: octocat @@ -131825,7 +131898,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &834 + response-with-git-hub-plan-information: &835 summary: Response with GitHub plan information value: login: octocat @@ -131882,7 +131955,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: - - &831 + - &832 name: user_id description: The unique identifier of the user. in: path @@ -131948,7 +132021,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *830 + - *831 - *17 responses: '200': @@ -131983,7 +132056,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: - - *831 + - *832 - *420 requestBody: required: true @@ -132058,7 +132131,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *832 + schema: *833 examples: table_view: summary: Response for creating a table view @@ -132110,11 +132183,11 @@ paths: application/json: schema: oneOf: + - *806 - *805 - - *804 examples: - default-response: *833 - response-with-git-hub-plan-information: *834 + default-response: *834 + response-with-git-hub-plan-information: *835 '404': *6 x-github: githubCloudOnly: false @@ -132164,8 +132237,8 @@ paths: required: - subject_digests examples: - default: *835 - withPredicateType: *836 + default: *836 + withPredicateType: *837 responses: '200': description: Response @@ -132219,7 +132292,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *837 + default: *838 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -132708,7 +132781,7 @@ paths: application/json: schema: *329 examples: - default: &838 + default: &839 summary: Example response for a user copilot space value: id: 42 @@ -132809,7 +132882,7 @@ paths: application/json: schema: *329 examples: - default: *838 + default: *839 '403': *27 '404': *6 x-github: @@ -132935,7 +133008,7 @@ paths: application/json: schema: *329 examples: - default: *838 + default: *839 '403': *27 '404': *6 '422': *15 @@ -133703,7 +133776,7 @@ paths: type: array items: *402 examples: - default: *820 + default: *821 '403': *27 '401': *23 x-github: @@ -134087,9 +134160,9 @@ paths: application/json: schema: type: array - items: *811 + items: *812 examples: - default: *839 + default: *840 headers: Link: *45 x-github: @@ -134318,7 +134391,7 @@ paths: - docker - nuget - container - - *819 + - *820 - *140 - *19 - *17 @@ -134331,10 +134404,10 @@ paths: type: array items: *402 examples: - default: *820 + default: *821 '403': *27 '401': *23 - '400': *821 + '400': *822 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -134364,7 +134437,7 @@ paths: application/json: schema: *402 examples: - default: *840 + default: *841 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -134713,7 +134786,7 @@ paths: type: array items: *423 examples: - default: *841 + default: *842 headers: Link: *45 '304': *35 @@ -134773,7 +134846,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *842 + items: *843 required: - name - data_type @@ -134789,7 +134862,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *843 + iteration_configuration: *844 required: - name - data_type @@ -134811,8 +134884,8 @@ paths: value: name: Due date data_type: date - single_select_field: *844 - iteration_field: *845 + single_select_field: *845 + iteration_field: *846 responses: '201': description: Response @@ -134820,11 +134893,11 @@ paths: application/json: schema: *423 examples: - text_field: *846 - number_field: *847 - date_field: *848 - single_select_field: *849 - iteration_field: *850 + text_field: *847 + number_field: *848 + date_field: *849 + single_select_field: *850 + iteration_field: *851 '304': *35 '403': *27 '401': *23 @@ -134846,7 +134919,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - *420 - - *851 + - *852 - *140 responses: '200': @@ -134855,7 +134928,7 @@ paths: application/json: schema: *423 examples: - default: *852 + default: *853 headers: Link: *45 '304': *35 @@ -135212,7 +135285,7 @@ paths: parameters: - *420 - *140 - - *853 + - *854 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -135491,9 +135564,9 @@ paths: application/json: schema: type: array - items: *824 + items: *825 examples: - default: *825 + default: *826 headers: Link: *45 x-github: @@ -135523,9 +135596,9 @@ paths: application/json: schema: type: array - items: *826 + items: *827 examples: - default: *854 + default: *855 headers: Link: *45 x-github: @@ -135550,7 +135623,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *140 - - *855 + - *856 - *110 - *17 - *19 @@ -135562,11 +135635,11 @@ paths: schema: anyOf: - type: array - items: *856 + items: *857 - type: array items: *78 examples: - default-response: *829 + default-response: *830 headers: Link: *45 x-github: @@ -135726,7 +135799,7 @@ webhooks: type: string enum: - disabled - enterprise: &857 + enterprise: &858 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -135795,7 +135868,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &858 + installation: &859 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -135816,7 +135889,7 @@ webhooks: required: - id - node_id - organization: &859 + organization: &860 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -135889,7 +135962,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &860 + repository: &861 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -136815,10 +136888,10 @@ webhooks: type: string enum: - enabled - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -136894,11 +136967,11 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - rule: &861 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + rule: &862 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) @@ -137121,11 +137194,11 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - rule: *861 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + rule: *862 sender: *4 required: - action @@ -137313,11 +137386,11 @@ webhooks: - everyone required: - from - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - rule: *861 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + rule: *862 sender: *4 required: - action @@ -137390,7 +137463,7 @@ webhooks: required: true content: application/json: - schema: &881 + schema: &882 title: Exemption request cancellation event type: object properties: @@ -137398,11 +137471,11 @@ webhooks: type: string enum: - cancelled - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - exemption_request: &862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: &863 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -137711,7 +137784,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &863 + items: &864 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -137823,7 +137896,7 @@ webhooks: required: true content: application/json: - schema: &882 + schema: &883 title: Exemption request completed event type: object properties: @@ -137831,11 +137904,11 @@ webhooks: type: string enum: - completed - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - exemption_request: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 sender: *4 required: - action @@ -137907,7 +137980,7 @@ webhooks: required: true content: application/json: - schema: &879 + schema: &880 title: Exemption request created event type: object properties: @@ -137915,11 +137988,11 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - exemption_request: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 sender: *4 required: - action @@ -137991,7 +138064,7 @@ webhooks: required: true content: application/json: - schema: &883 + schema: &884 title: Exemption response dismissed event type: object properties: @@ -137999,12 +138072,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - exemption_request: *862 - exemption_response: *863 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 + exemption_response: *864 sender: *4 required: - action @@ -138078,7 +138151,7 @@ webhooks: required: true content: application/json: - schema: &880 + schema: &881 title: Exemption response submitted event type: object properties: @@ -138086,12 +138159,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - exemption_request: *862 - exemption_response: *863 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 + exemption_response: *864 sender: *4 required: - action @@ -138175,7 +138248,7 @@ webhooks: type: string enum: - completed - check_run: &865 + check_run: &866 title: CheckRun description: A check performed on the code of a given code change type: object @@ -138285,7 +138358,7 @@ webhooks: - examples: - neutral - deployment: *864 + deployment: *865 details_url: type: string examples: @@ -138383,10 +138456,10 @@ webhooks: - output - app - pull_requests - installation: *858 - enterprise: *857 - organization: *859 - repository: *860 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 sender: *4 required: - check_run @@ -138777,11 +138850,11 @@ webhooks: type: string enum: - created - check_run: *865 - installation: *858 - enterprise: *857 - organization: *859 - repository: *860 + check_run: *866 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 sender: *4 required: - check_run @@ -139175,11 +139248,11 @@ webhooks: type: string enum: - requested_action - check_run: *865 - installation: *858 - enterprise: *857 - organization: *859 - repository: *860 + check_run: *866 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 requested_action: description: The action requested by the user. type: object @@ -139582,11 +139655,11 @@ webhooks: type: string enum: - rerequested - check_run: *865 - installation: *858 - enterprise: *857 - organization: *859 - repository: *860 + check_run: *866 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 sender: *4 required: - check_run @@ -140571,10 +140644,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -141283,10 +141356,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -141989,10 +142062,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -142313,20 +142386,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &866 + commit_oid: &867 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: *857 - installation: *858 - organization: *859 - ref: &867 + enterprise: *858 + installation: *859 + organization: *860 + ref: &868 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: *860 + repository: *861 sender: *4 required: - action @@ -142734,12 +142807,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *866 - enterprise: *857 - installation: *858 - organization: *859 - ref: *867 - repository: *860 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -143022,12 +143095,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *866 - enterprise: *857 - installation: *858 - organization: *859 - ref: *867 - repository: *860 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -143373,12 +143446,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *866 - enterprise: *857 - installation: *858 - organization: *859 - ref: *867 - repository: *860 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -143668,9 +143741,9 @@ webhooks: type: - string - 'null' - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -143678,7 +143751,7 @@ webhooks: type: - string - 'null' - repository: *860 + repository: *861 sender: *4 required: - action @@ -143924,12 +143997,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *866 - enterprise: *857 - installation: *858 - organization: *859 - ref: *867 - repository: *860 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -144250,10 +144323,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -144513,10 +144586,10 @@ webhooks: - updated_at - author_association - body - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -144597,18 +144670,18 @@ webhooks: type: - string - 'null' - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *859 - pusher_type: &868 + organization: *860 + pusher_type: &869 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &869 + ref: &870 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -144618,7 +144691,7 @@ webhooks: enum: - tag - branch - repository: *860 + repository: *861 sender: *4 required: - ref @@ -144701,9 +144774,9 @@ webhooks: enum: - created definition: *153 - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -144788,9 +144861,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -144868,9 +144941,9 @@ webhooks: enum: - promote_to_enterprise definition: *153 - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -144948,9 +145021,9 @@ webhooks: enum: - updated definition: *153 - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -145027,10 +145100,10 @@ webhooks: type: string enum: - updated - enterprise: *857 - installation: *858 - repository: *860 - organization: *859 + enterprise: *858 + installation: *859 + repository: *861 + organization: *860 sender: *4 new_property_values: type: array @@ -145115,18 +145188,18 @@ webhooks: title: delete event type: object properties: - enterprise: *857 - installation: *858 - organization: *859 - pusher_type: *868 - ref: *869 + enterprise: *858 + installation: *859 + organization: *860 + pusher_type: *869 + ref: *870 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *860 + repository: *861 sender: *4 required: - ref @@ -145207,10 +145280,10 @@ webhooks: enum: - assignees_changed alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145291,10 +145364,10 @@ webhooks: enum: - auto_dismissed alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145376,10 +145449,10 @@ webhooks: enum: - auto_reopened alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145461,10 +145534,10 @@ webhooks: enum: - created alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145544,10 +145617,10 @@ webhooks: enum: - dismissed alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145627,10 +145700,10 @@ webhooks: enum: - fixed alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145711,10 +145784,10 @@ webhooks: enum: - reintroduced alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145794,10 +145867,10 @@ webhooks: enum: - reopened alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145874,9 +145947,9 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - key: &870 + enterprise: *858 + installation: *859 + key: &871 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -145914,8 +145987,8 @@ webhooks: - verified - created_at - read_only - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -145992,11 +146065,11 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - key: *870 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + key: *871 + organization: *860 + repository: *861 sender: *4 required: - action @@ -146563,12 +146636,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: &874 + workflow: &875 title: Workflow type: - object @@ -147323,9 +147396,9 @@ webhooks: pull_requests: type: array items: *706 - repository: *860 - organization: *859 - installation: *858 + repository: *861 + organization: *860 + installation: *859 sender: *4 responses: '200': @@ -147396,7 +147469,7 @@ webhooks: type: string enum: - approved - approver: &871 + approver: &872 type: object properties: avatar_url: @@ -147439,11 +147512,11 @@ webhooks: type: string comment: type: string - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - reviewers: &872 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + reviewers: &873 type: array items: type: object @@ -147524,7 +147597,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &873 + workflow_job_run: &874 type: object properties: conclusion: @@ -148270,18 +148343,18 @@ webhooks: type: string enum: - rejected - approver: *871 + approver: *872 comment: type: string - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - reviewers: *872 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + reviewers: *873 sender: *4 since: type: string - workflow_job_run: *873 + workflow_job_run: *874 workflow_job_runs: type: array items: @@ -148998,13 +149071,13 @@ webhooks: type: string enum: - requested - enterprise: *857 + enterprise: *858 environment: type: string - installation: *858 - organization: *859 - repository: *860 - requestor: &884 + installation: *859 + organization: *860 + repository: *861 + requestor: &885 title: User type: - object @@ -150937,12 +151010,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *874 + workflow: *875 workflow_run: title: Deployment Workflow Run type: @@ -151633,7 +151706,7 @@ webhooks: type: string enum: - answered - answer: &877 + answer: &878 type: object properties: author_association: @@ -151793,11 +151866,11 @@ webhooks: - created_at - updated_at - body - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -151924,11 +151997,11 @@ webhooks: - from required: - category - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152011,11 +152084,11 @@ webhooks: type: string enum: - closed - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152097,7 +152170,7 @@ webhooks: type: string enum: - created - comment: &876 + comment: &877 type: object properties: author_association: @@ -152257,11 +152330,11 @@ webhooks: - updated_at - body - reactions - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152344,12 +152417,12 @@ webhooks: type: string enum: - deleted - comment: *876 - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + comment: *877 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152444,12 +152517,12 @@ webhooks: - from required: - body - comment: *876 - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + comment: *877 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152533,11 +152606,11 @@ webhooks: type: string enum: - created - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152619,11 +152692,11 @@ webhooks: type: string enum: - deleted - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152723,11 +152796,11 @@ webhooks: type: string required: - from - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152809,10 +152882,10 @@ webhooks: type: string enum: - labeled - discussion: *875 - enterprise: *857 - installation: *858 - label: &878 + discussion: *876 + enterprise: *858 + installation: *859 + label: &879 title: Label type: object properties: @@ -152845,8 +152918,8 @@ webhooks: - color - default - description - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152929,11 +153002,11 @@ webhooks: type: string enum: - locked - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153015,11 +153088,11 @@ webhooks: type: string enum: - pinned - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153101,11 +153174,11 @@ webhooks: type: string enum: - reopened - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153190,16 +153263,16 @@ webhooks: changes: type: object properties: - new_discussion: *875 - new_repository: *860 + new_discussion: *876 + new_repository: *861 required: - new_discussion - new_repository - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153282,10 +153355,10 @@ webhooks: type: string enum: - unanswered - discussion: *875 - old_answer: *877 - organization: *859 - repository: *860 + discussion: *876 + old_answer: *878 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153367,12 +153440,12 @@ webhooks: type: string enum: - unlabeled - discussion: *875 - enterprise: *857 - installation: *858 - label: *878 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153455,11 +153528,11 @@ webhooks: type: string enum: - unlocked - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153541,11 +153614,11 @@ webhooks: type: string enum: - unpinned - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153614,7 +153687,7 @@ webhooks: required: true content: application/json: - schema: *879 + schema: *880 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153677,7 +153750,7 @@ webhooks: required: true content: application/json: - schema: *880 + schema: *881 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153740,7 +153813,7 @@ webhooks: required: true content: application/json: - schema: *881 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153803,7 +153876,7 @@ webhooks: required: true content: application/json: - schema: *879 + schema: *880 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153866,7 +153939,7 @@ webhooks: required: true content: application/json: - schema: *880 + schema: *881 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153932,7 +154005,7 @@ webhooks: required: true content: application/json: - schema: *881 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153998,7 +154071,7 @@ webhooks: required: true content: application/json: - schema: *882 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154064,7 +154137,7 @@ webhooks: required: true content: application/json: - schema: *879 + schema: *880 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154130,7 +154203,7 @@ webhooks: required: true content: application/json: - schema: *883 + schema: *884 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154196,7 +154269,7 @@ webhooks: required: true content: application/json: - schema: *880 + schema: *881 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154261,7 +154334,7 @@ webhooks: required: true content: application/json: - schema: *881 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154326,7 +154399,7 @@ webhooks: required: true content: application/json: - schema: *882 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154391,7 +154464,7 @@ webhooks: required: true content: application/json: - schema: *879 + schema: *880 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154456,7 +154529,7 @@ webhooks: required: true content: application/json: - schema: *883 + schema: *884 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154522,7 +154595,7 @@ webhooks: required: true content: application/json: - schema: *880 + schema: *881 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154589,7 +154662,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *857 + enterprise: *858 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -155267,9 +155340,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - forkee @@ -155415,9 +155488,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pages: description: The pages that were updated. type: array @@ -155455,7 +155528,7 @@ webhooks: - action - sha - html_url - repository: *860 + repository: *861 sender: *4 required: - pages @@ -155531,10 +155604,10 @@ webhooks: type: string enum: - created - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories: &885 + organization: *860 + repositories: &886 description: An array of repository objects that the installation can access. type: array @@ -155560,8 +155633,8 @@ webhooks: - name - full_name - private - repository: *860 - requester: *884 + repository: *861 + requester: *885 sender: *4 required: - action @@ -155636,11 +155709,11 @@ webhooks: type: string enum: - deleted - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories: *885 - repository: *860 + organization: *860 + repositories: *886 + repository: *861 requester: type: - 'null' @@ -155717,11 +155790,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories: *885 - repository: *860 + organization: *860 + repositories: *886 + repository: *861 requester: type: - 'null' @@ -155798,10 +155871,10 @@ webhooks: type: string enum: - added - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories_added: &886 + organization: *860 + repositories_added: &887 description: An array of repository objects, which were added to the installation. type: array @@ -155847,15 +155920,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *860 - repository_selection: &887 + repository: *861 + repository_selection: &888 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *884 + requester: *885 sender: *4 required: - action @@ -155934,10 +156007,10 @@ webhooks: type: string enum: - removed - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories_added: *886 + organization: *860 + repositories_added: *887 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -155964,9 +156037,9 @@ webhooks: - name - full_name - private - repository: *860 - repository_selection: *887 - requester: *884 + repository: *861 + repository_selection: *888 + requester: *885 sender: *4 required: - action @@ -156045,11 +156118,11 @@ webhooks: type: string enum: - suspend - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories: *885 - repository: *860 + organization: *860 + repositories: *886 + repository: *861 requester: type: - 'null' @@ -156232,10 +156305,10 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 target_type: type: string @@ -156314,11 +156387,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories: *885 - repository: *860 + organization: *860 + repositories: *886 + repository: *861 requester: type: - 'null' @@ -156570,8 +156643,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -157383,8 +157456,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157745,8 +157818,8 @@ webhooks: - state - locked - assignee - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -157826,7 +157899,7 @@ webhooks: type: string enum: - deleted - comment: &888 + comment: &889 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -157997,8 +158070,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -158806,8 +158879,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159170,8 +159243,8 @@ webhooks: - state - locked - assignee - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -159251,7 +159324,7 @@ webhooks: type: string enum: - edited - changes: &912 + changes: &913 description: The changes to the comment. type: object properties: @@ -159263,9 +159336,9 @@ webhooks: type: string required: - from - comment: *888 - enterprise: *857 - installation: *858 + comment: *889 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -160076,8 +160149,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160438,8 +160511,8 @@ webhooks: - state - locked - assignee - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -160520,9 +160593,9 @@ webhooks: type: string enum: - pinned - comment: *888 - enterprise: *857 - installation: *858 + comment: *889 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -161335,8 +161408,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161699,8 +161772,8 @@ webhooks: - state - locked - assignee - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -161780,9 +161853,9 @@ webhooks: type: string enum: - unpinned - comment: *888 - enterprise: *857 - installation: *858 + comment: *889 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -162595,8 +162668,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162959,8 +163032,8 @@ webhooks: - state - locked - assignee - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163049,9 +163122,9 @@ webhooks: type: number blocking_issue: *219 blocking_issue_repo: *78 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163140,9 +163213,9 @@ webhooks: type: number blocking_issue: *219 blocking_issue_repo: *78 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163230,9 +163303,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *219 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163321,9 +163394,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *219 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163403,10 +163476,10 @@ webhooks: type: string enum: - assigned - assignee: *884 - enterprise: *857 - installation: *858 - issue: &889 + assignee: *885 + enterprise: *858 + installation: *859 + issue: &890 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -164217,8 +164290,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -164341,8 +164414,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -164422,8 +164495,8 @@ webhooks: type: string enum: - closed - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -165239,8 +165312,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -165506,8 +165579,8 @@ webhooks: required: - state - closed_at - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -165586,8 +165659,8 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -166394,8 +166467,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -166517,8 +166590,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -166597,8 +166670,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -167428,8 +167501,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -167530,7 +167603,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &890 + milestone: &891 title: Milestone description: A collection of related issues and pull requests. type: object @@ -167673,8 +167746,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167773,8 +167846,8 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -168585,8 +168658,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -168709,9 +168782,9 @@ webhooks: - active_lock_reason - body - reactions - label: *878 - organization: *859 - repository: *860 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168791,9 +168864,9 @@ webhooks: type: string enum: - field_added - enterprise: *857 - installation: *858 - issue: *889 + enterprise: *858 + installation: *859 + issue: *890 issue_field: type: object description: The issue field whose value was set or updated on the @@ -168912,8 +168985,8 @@ webhooks: - id required: - from - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168993,9 +169066,9 @@ webhooks: type: string enum: - field_removed - enterprise: *857 - installation: *858 - issue: *889 + enterprise: *858 + installation: *859 + issue: *890 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -169058,8 +169131,8 @@ webhooks: - 'null' required: - id - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -169139,8 +169212,8 @@ webhooks: type: string enum: - labeled - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -169950,8 +170023,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -170074,9 +170147,9 @@ webhooks: - active_lock_reason - body - reactions - label: *878 - organization: *859 - repository: *860 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -170156,8 +170229,8 @@ webhooks: type: string enum: - locked - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170992,8 +171065,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -171093,8 +171166,8 @@ webhooks: format: uri user_view_type: type: string - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -171173,8 +171246,8 @@ webhooks: type: string enum: - milestoned - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -172003,8 +172076,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -172104,9 +172177,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *890 - organization: *859 - repository: *860 + milestone: *891 + organization: *860 + repository: *861 sender: *4 required: - action @@ -172993,8 +173066,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -173589,8 +173662,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -174397,8 +174470,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -174524,8 +174597,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -174605,9 +174678,9 @@ webhooks: type: string enum: - pinned - enterprise: *857 - installation: *858 - issue: &891 + enterprise: *858 + installation: *859 + issue: &892 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -175412,8 +175485,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -175535,8 +175608,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -175615,8 +175688,8 @@ webhooks: type: string enum: - reopened - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -176449,8 +176522,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -176551,8 +176624,8 @@ webhooks: user_view_type: type: string type: *387 - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -177440,8 +177513,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -178054,11 +178127,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *857 - installation: *858 - issue: *891 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + issue: *892 + organization: *860 + repository: *861 sender: *4 required: - action @@ -178138,12 +178211,12 @@ webhooks: type: string enum: - typed - enterprise: *857 - installation: *858 - issue: *889 + enterprise: *858 + installation: *859 + issue: *890 type: *387 - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -178224,7 +178297,7 @@ webhooks: type: string enum: - unassigned - assignee: &915 + assignee: &916 title: User type: - object @@ -178296,11 +178369,11 @@ webhooks: required: - login - id - enterprise: *857 - installation: *858 - issue: *889 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + issue: *890 + organization: *860 + repository: *861 sender: *4 required: - action @@ -178379,12 +178452,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *857 - installation: *858 - issue: *889 - label: *878 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + issue: *890 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -178464,8 +178537,8 @@ webhooks: type: string enum: - unlocked - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -179298,8 +179371,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -179399,8 +179472,8 @@ webhooks: format: uri user_view_type: type: string - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -179480,11 +179553,11 @@ webhooks: type: string enum: - unpinned - enterprise: *857 - installation: *858 - issue: *891 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + issue: *892 + organization: *860 + repository: *861 sender: *4 required: - action @@ -179563,12 +179636,12 @@ webhooks: type: string enum: - untyped - enterprise: *857 - installation: *858 - issue: *889 + enterprise: *858 + installation: *859 + issue: *890 type: *387 - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -179648,11 +179721,11 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - label: *878 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -179730,11 +179803,11 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - label: *878 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -179844,11 +179917,11 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - label: *878 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -179930,9 +180003,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *857 - installation: *858 - marketplace_purchase: &892 + enterprise: *858 + installation: *859 + marketplace_purchase: &893 title: Marketplace Purchase type: object required: @@ -180020,8 +180093,8 @@ webhooks: type: integer unit_count: type: integer - organization: *859 - previous_marketplace_purchase: &893 + organization: *860 + previous_marketplace_purchase: &894 title: Marketplace Purchase type: object properties: @@ -180105,7 +180178,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *860 + repository: *861 sender: *4 required: - action @@ -180185,10 +180258,10 @@ webhooks: - changed effective_date: type: string - enterprise: *857 - installation: *858 - marketplace_purchase: *892 - organization: *859 + enterprise: *858 + installation: *859 + marketplace_purchase: *893 + organization: *860 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -180276,7 +180349,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *860 + repository: *861 sender: *4 required: - action @@ -180358,10 +180431,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *857 - installation: *858 - marketplace_purchase: *892 - organization: *859 + enterprise: *858 + installation: *859 + marketplace_purchase: *893 + organization: *860 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -180447,7 +180520,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *860 + repository: *861 sender: *4 required: - action @@ -180528,8 +180601,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 marketplace_purchase: title: Marketplace Purchase type: object @@ -180615,9 +180688,9 @@ webhooks: type: integer unit_count: type: integer - organization: *859 - previous_marketplace_purchase: *893 - repository: *860 + organization: *860 + previous_marketplace_purchase: *894 + repository: *861 sender: *4 required: - action @@ -180697,12 +180770,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *857 - installation: *858 - marketplace_purchase: *892 - organization: *859 - previous_marketplace_purchase: *893 - repository: *860 + enterprise: *858 + installation: *859 + marketplace_purchase: *893 + organization: *860 + previous_marketplace_purchase: *894 + repository: *861 sender: *4 required: - action @@ -180804,11 +180877,11 @@ webhooks: type: string required: - to - enterprise: *857 - installation: *858 - member: *884 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + member: *885 + organization: *860 + repository: *861 sender: *4 required: - action @@ -180910,11 +180983,11 @@ webhooks: type: - string - 'null' - enterprise: *857 - installation: *858 - member: *884 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + member: *885 + organization: *860 + repository: *861 sender: *4 required: - action @@ -180993,11 +181066,11 @@ webhooks: type: string enum: - removed - enterprise: *857 - installation: *858 - member: *884 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + member: *885 + organization: *860 + repository: *861 sender: *4 required: - action @@ -181075,11 +181148,11 @@ webhooks: type: string enum: - added - enterprise: *857 - installation: *858 - member: *884 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + member: *885 + organization: *860 + repository: *861 scope: description: The scope of the membership. Currently, can only be `team`. @@ -181157,7 +181230,7 @@ webhooks: required: - login - id - team: &894 + team: &895 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -181387,11 +181460,11 @@ webhooks: type: string enum: - removed - enterprise: *857 - installation: *858 - member: *884 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + member: *885 + organization: *860 + repository: *861 scope: description: The scope of the membership. Currently, can only be `team`. @@ -181470,7 +181543,7 @@ webhooks: required: - login - id - team: *894 + team: *895 required: - action - scope @@ -181552,8 +181625,8 @@ webhooks: type: string enum: - checks_requested - installation: *858 - merge_group: &895 + installation: *859 + merge_group: &896 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -181579,8 +181652,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -181666,10 +181739,10 @@ webhooks: - merged - invalidated - dequeued - installation: *858 - merge_group: *895 - organization: *859 - repository: *860 + installation: *859 + merge_group: *896 + organization: *860 + repository: *861 sender: *4 required: - action @@ -181742,7 +181815,7 @@ webhooks: type: string enum: - deleted - enterprise: *857 + enterprise: *858 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -181851,12 +181924,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *858 - organization: *859 + installation: *859 + organization: *860 repository: anyOf: - type: 'null' - - *860 + - *861 sender: *4 required: - action @@ -181936,11 +182009,11 @@ webhooks: type: string enum: - closed - enterprise: *857 - installation: *858 - milestone: *890 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + milestone: *891 + organization: *860 + repository: *861 sender: *4 required: - action @@ -182019,9 +182092,9 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - milestone: &896 + enterprise: *858 + installation: *859 + milestone: &897 title: Milestone description: A collection of related issues and pull requests. type: object @@ -182163,8 +182236,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -182243,11 +182316,11 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - milestone: *890 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + milestone: *891 + organization: *860 + repository: *861 sender: *4 required: - action @@ -182357,11 +182430,11 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - milestone: *890 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + milestone: *891 + organization: *860 + repository: *861 sender: *4 required: - action @@ -182441,11 +182514,11 @@ webhooks: type: string enum: - opened - enterprise: *857 - installation: *858 - milestone: *896 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + milestone: *897 + organization: *860 + repository: *861 sender: *4 required: - action @@ -182524,11 +182597,11 @@ webhooks: type: string enum: - blocked - blocked_user: *884 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + blocked_user: *885 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -182607,11 +182680,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *884 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + blocked_user: *885 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -182687,7 +182760,7 @@ webhooks: enum: - created definition: *148 - enterprise: *857 + enterprise: *858 sender: *4 required: - action @@ -182767,8 +182840,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 sender: *4 required: - action @@ -182841,8 +182914,8 @@ webhooks: enum: - updated definition: *148 - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 sender: *4 required: - action @@ -182914,9 +182987,9 @@ webhooks: type: string enum: - updated - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 new_property_values: type: array @@ -183004,9 +183077,9 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - membership: &897 + enterprise: *858 + installation: *859 + membership: &898 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -183116,8 +183189,8 @@ webhooks: - role - organization_url - user - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -183195,11 +183268,11 @@ webhooks: type: string enum: - member_added - enterprise: *857 - installation: *858 - membership: *897 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + membership: *898 + organization: *860 + repository: *861 sender: *4 required: - action @@ -183278,8 +183351,8 @@ webhooks: type: string enum: - member_invited - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -183401,10 +183474,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 - user: *884 + user: *885 required: - action - invitation @@ -183482,11 +183555,11 @@ webhooks: type: string enum: - member_removed - enterprise: *857 - installation: *858 - membership: *897 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + membership: *898 + organization: *860 + repository: *861 sender: *4 required: - action @@ -183573,11 +183646,11 @@ webhooks: properties: from: type: string - enterprise: *857 - installation: *858 - membership: *897 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + membership: *898 + organization: *860 + repository: *861 sender: *4 required: - action @@ -183655,9 +183728,9 @@ webhooks: type: string enum: - published - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 package: description: Information about the package. type: object @@ -184180,7 +184253,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &898 + items: &899 title: Ruby Gems metadata type: object properties: @@ -184277,7 +184350,7 @@ webhooks: - owner - package_version - registry - repository: *860 + repository: *861 sender: *4 required: - action @@ -184354,9 +184427,9 @@ webhooks: type: string enum: - updated - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 package: description: Information about the package. type: object @@ -184718,7 +184791,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *898 + items: *899 source_url: type: string format: uri @@ -184789,7 +184862,7 @@ webhooks: - owner - package_version - registry - repository: *860 + repository: *861 sender: *4 required: - action @@ -184969,12 +185042,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *857 + enterprise: *858 id: type: integer - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - id @@ -185051,7 +185124,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &899 + personal_access_token_request: &900 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -185201,10 +185274,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *857 - organization: *859 + enterprise: *858 + organization: *860 sender: *4 - installation: *858 + installation: *859 required: - action - personal_access_token_request @@ -185281,11 +185354,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *899 - enterprise: *857 - organization: *859 + personal_access_token_request: *900 + enterprise: *858 + organization: *860 sender: *4 - installation: *858 + installation: *859 required: - action - personal_access_token_request @@ -185361,11 +185434,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *899 - enterprise: *857 - organization: *859 + personal_access_token_request: *900 + enterprise: *858 + organization: *860 sender: *4 - installation: *858 + installation: *859 required: - action - personal_access_token_request @@ -185440,11 +185513,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *899 - organization: *859 - enterprise: *857 + personal_access_token_request: *900 + organization: *860 + enterprise: *858 sender: *4 - installation: *858 + installation: *859 required: - action - personal_access_token_request @@ -185549,7 +185622,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *900 + last_response: *901 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -185581,8 +185654,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 zen: description: Random string of GitHub zen. @@ -185827,10 +185900,10 @@ webhooks: - from required: - note - enterprise: *857 - installation: *858 - organization: *859 - project_card: &901 + enterprise: *858 + installation: *859 + organization: *860 + project_card: &902 title: Project Card type: object properties: @@ -185953,7 +186026,7 @@ webhooks: - creator - created_at - updated_at - repository: *860 + repository: *861 sender: *4 required: - action @@ -186034,11 +186107,11 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - project_card: *901 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project_card: *902 + repository: *861 sender: *4 required: - action @@ -186118,9 +186191,9 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 project_card: title: Project Card type: object @@ -186250,7 +186323,7 @@ webhooks: repository: anyOf: - type: 'null' - - *860 + - *861 sender: *4 required: - action @@ -186344,11 +186417,11 @@ webhooks: - from required: - note - enterprise: *857 - installation: *858 - organization: *859 - project_card: *901 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project_card: *902 + repository: *861 sender: *4 required: - action @@ -186442,9 +186515,9 @@ webhooks: - from required: - column_id - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 project_card: allOf: - title: Project Card @@ -186641,7 +186714,7 @@ webhooks: type: string required: - after_id - repository: *860 + repository: *861 sender: *4 required: - action @@ -186721,10 +186794,10 @@ webhooks: type: string enum: - closed - enterprise: *857 - installation: *858 - organization: *859 - project: &903 + enterprise: *858 + installation: *859 + organization: *860 + project: &904 title: Project type: object properties: @@ -186851,7 +186924,7 @@ webhooks: - creator - created_at - updated_at - repository: *860 + repository: *861 sender: *4 required: - action @@ -186931,10 +187004,10 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - project_column: &902 + enterprise: *858 + installation: *859 + organization: *860 + project_column: &903 title: Project Column type: object properties: @@ -186974,7 +187047,7 @@ webhooks: - name - created_at - updated_at - repository: *860 + repository: *861 sender: *4 required: - action @@ -187053,14 +187126,14 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - project_column: *902 + enterprise: *858 + installation: *859 + organization: *860 + project_column: *903 repository: anyOf: - type: 'null' - - *860 + - *861 sender: *4 required: - action @@ -187149,11 +187222,11 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - organization: *859 - project_column: *902 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project_column: *903 + repository: *861 sender: *4 required: - action @@ -187233,11 +187306,11 @@ webhooks: type: string enum: - moved - enterprise: *857 - installation: *858 - organization: *859 - project_column: *902 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project_column: *903 + repository: *861 sender: *4 required: - action @@ -187317,11 +187390,11 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - project: *903 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project: *904 + repository: *861 sender: *4 required: - action @@ -187401,14 +187474,14 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - project: *903 + enterprise: *858 + installation: *859 + organization: *860 + project: *904 repository: anyOf: - type: 'null' - - *860 + - *861 sender: *4 required: - action @@ -187509,11 +187582,11 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - organization: *859 - project: *903 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project: *904 + repository: *861 sender: *4 required: - action @@ -187592,11 +187665,11 @@ webhooks: type: string enum: - reopened - enterprise: *857 - installation: *858 - organization: *859 - project: *903 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project: *904 + repository: *861 sender: *4 required: - action @@ -187677,8 +187750,8 @@ webhooks: type: string enum: - closed - installation: *858 - organization: *859 + installation: *859 + organization: *860 projects_v2: *418 sender: *4 required: @@ -187760,8 +187833,8 @@ webhooks: type: string enum: - created - installation: *858 - organization: *859 + installation: *859 + organization: *860 projects_v2: *418 sender: *4 required: @@ -187843,8 +187916,8 @@ webhooks: type: string enum: - deleted - installation: *858 - organization: *859 + installation: *859 + organization: *860 projects_v2: *418 sender: *4 required: @@ -187966,8 +188039,8 @@ webhooks: type: string to: type: string - installation: *858 - organization: *859 + installation: *859 + organization: *860 projects_v2: *418 sender: *4 required: @@ -188051,7 +188124,7 @@ webhooks: type: string enum: - archived - changes: &907 + changes: &908 type: object properties: archived_at: @@ -188067,9 +188140,9 @@ webhooks: - string - 'null' format: date-time - installation: *858 - organization: *859 - projects_v2_item: &904 + installation: *859 + organization: *860 + projects_v2_item: &905 title: Projects v2 Item description: An item belonging to a project type: object @@ -188209,9 +188282,9 @@ webhooks: - 'null' to: type: string - installation: *858 - organization: *859 - projects_v2_item: *904 + installation: *859 + organization: *860 + projects_v2_item: *905 sender: *4 required: - action @@ -188293,9 +188366,9 @@ webhooks: type: string enum: - created - installation: *858 - organization: *859 - projects_v2_item: *904 + installation: *859 + organization: *860 + projects_v2_item: *905 sender: *4 required: - action @@ -188376,9 +188449,9 @@ webhooks: type: string enum: - deleted - installation: *858 - organization: *859 - projects_v2_item: *904 + installation: *859 + organization: *860 + projects_v2_item: *905 sender: *4 required: - action @@ -188483,7 +188556,7 @@ webhooks: oneOf: - type: string - type: integer - - &905 + - &906 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -188507,7 +188580,7 @@ webhooks: required: - id - name - - &906 + - &907 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -188547,8 +188620,8 @@ webhooks: oneOf: - type: string - type: integer - - *905 - *906 + - *907 type: - 'null' - string @@ -188571,9 +188644,9 @@ webhooks: - 'null' required: - body - installation: *858 - organization: *859 - projects_v2_item: *904 + installation: *859 + organization: *860 + projects_v2_item: *905 sender: *4 required: - action @@ -188670,9 +188743,9 @@ webhooks: type: - string - 'null' - installation: *858 - organization: *859 - projects_v2_item: *904 + installation: *859 + organization: *860 + projects_v2_item: *905 sender: *4 required: - action @@ -188755,10 +188828,10 @@ webhooks: type: string enum: - restored - changes: *907 - installation: *858 - organization: *859 - projects_v2_item: *904 + changes: *908 + installation: *859 + organization: *860 + projects_v2_item: *905 sender: *4 required: - action @@ -188840,8 +188913,8 @@ webhooks: type: string enum: - reopened - installation: *858 - organization: *859 + installation: *859 + organization: *860 projects_v2: *418 sender: *4 required: @@ -188923,9 +188996,9 @@ webhooks: type: string enum: - created - installation: *858 - organization: *859 - projects_v2_status_update: *908 + installation: *859 + organization: *860 + projects_v2_status_update: *909 sender: *4 required: - action @@ -189006,9 +189079,9 @@ webhooks: type: string enum: - deleted - installation: *858 - organization: *859 - projects_v2_status_update: *908 + installation: *859 + organization: *860 + projects_v2_status_update: *909 sender: *4 required: - action @@ -189154,9 +189227,9 @@ webhooks: - string - 'null' format: date - installation: *858 - organization: *859 - projects_v2_status_update: *908 + installation: *859 + organization: *860 + projects_v2_status_update: *909 sender: *4 required: - action @@ -189227,10 +189300,10 @@ webhooks: title: public event type: object properties: - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - repository @@ -189307,13 +189380,13 @@ webhooks: type: string enum: - assigned - assignee: *884 - enterprise: *857 - installation: *858 - number: &909 + assignee: *885 + enterprise: *858 + installation: *859 + number: &910 description: The pull request number. type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -191684,7 +191757,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -191766,11 +191839,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -194134,7 +194207,7 @@ webhooks: - draft reason: type: string - repository: *860 + repository: *861 sender: *4 required: - action @@ -194216,11 +194289,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -196584,7 +196657,7 @@ webhooks: - draft reason: type: string - repository: *860 + repository: *861 sender: *4 required: - action @@ -196666,11 +196739,11 @@ webhooks: type: string enum: - closed - enterprise: *857 - installation: *858 - number: *909 - organization: *859 - pull_request: &910 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 + pull_request: &911 allOf: - *706 - type: object @@ -196734,7 +196807,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *860 + repository: *861 sender: *4 required: - action @@ -196815,12 +196888,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *857 - installation: *858 - number: *909 - organization: *859 - pull_request: *910 - repository: *860 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 + pull_request: *911 + repository: *861 sender: *4 required: - action @@ -196900,11 +196973,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *857 + enterprise: *858 milestone: *421 - number: *909 - organization: *859 - pull_request: &911 + number: *910 + organization: *860 + pull_request: &912 title: Pull Request type: object properties: @@ -199253,7 +199326,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -199332,11 +199405,11 @@ webhooks: type: string enum: - dequeued - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -201704,7 +201777,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *860 + repository: *861 sender: *4 required: - action @@ -201828,12 +201901,12 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - number: *909 - organization: *859 - pull_request: *910 - repository: *860 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 + pull_request: *911 + repository: *861 sender: *4 required: - action @@ -201913,11 +201986,11 @@ webhooks: type: string enum: - enqueued - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -204270,7 +204343,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -204350,11 +204423,11 @@ webhooks: type: string enum: - labeled - enterprise: *857 - installation: *858 - label: *878 - number: *909 - organization: *859 + enterprise: *858 + installation: *859 + label: *879 + number: *910 + organization: *860 pull_request: title: Pull Request type: object @@ -206724,7 +206797,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -206805,10 +206878,10 @@ webhooks: type: string enum: - locked - enterprise: *857 - installation: *858 - number: *909 - organization: *859 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 pull_request: title: Pull Request type: object @@ -209176,7 +209249,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -209256,12 +209329,12 @@ webhooks: type: string enum: - milestoned - enterprise: *857 + enterprise: *858 milestone: *421 - number: *909 - organization: *859 - pull_request: *911 - repository: *860 + number: *910 + organization: *860 + pull_request: *912 + repository: *861 sender: *4 required: - action @@ -209340,12 +209413,12 @@ webhooks: type: string enum: - opened - enterprise: *857 - installation: *858 - number: *909 - organization: *859 - pull_request: *910 - repository: *860 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 + pull_request: *911 + repository: *861 sender: *4 required: - action @@ -209426,12 +209499,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *857 - installation: *858 - number: *909 - organization: *859 - pull_request: *910 - repository: *860 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 + pull_request: *911 + repository: *861 sender: *4 required: - action @@ -209511,12 +209584,12 @@ webhooks: type: string enum: - reopened - enterprise: *857 - installation: *858 - number: *909 - organization: *859 - pull_request: *910 - repository: *860 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 + pull_request: *911 + repository: *861 sender: *4 required: - action @@ -209891,9 +209964,9 @@ webhooks: - start_side - side - reactions - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: type: object properties: @@ -212145,7 +212218,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *860 + repository: *861 sender: *4 required: - action @@ -212225,7 +212298,7 @@ webhooks: type: string enum: - deleted - comment: &913 + comment: &914 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. @@ -212518,9 +212591,9 @@ webhooks: - start_side - side - reactions - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: type: object properties: @@ -214760,7 +214833,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *860 + repository: *861 sender: *4 required: - action @@ -214840,11 +214913,11 @@ webhooks: type: string enum: - edited - changes: *912 - comment: *913 - enterprise: *857 - installation: *858 - organization: *859 + changes: *913 + comment: *914 + enterprise: *858 + installation: *859 + organization: *860 pull_request: type: object properties: @@ -217087,7 +217160,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *860 + repository: *861 sender: *4 required: - action @@ -217168,9 +217241,9 @@ webhooks: type: string enum: - dismissed - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -219425,7 +219498,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *860 + repository: *861 review: description: The review that was affected. type: object @@ -219676,9 +219749,9 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -221792,8 +221865,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *860 - review: &914 + repository: *861 + review: &915 description: The review that was affected. type: object properties: @@ -222031,12 +222104,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -224405,7 +224478,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 requested_reviewer: title: User type: @@ -224491,12 +224564,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -226872,7 +226945,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 requested_team: title: Team description: Groups of organization members that gives permissions @@ -227067,12 +227140,12 @@ webhooks: type: string enum: - review_requested - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -229443,7 +229516,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 requested_reviewer: title: User type: @@ -229530,12 +229603,12 @@ webhooks: type: string enum: - review_requested - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -231897,7 +231970,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 requested_team: title: Team description: Groups of organization members that gives permissions @@ -232081,9 +232154,9 @@ webhooks: type: string enum: - submitted - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -234341,8 +234414,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *860 - review: *914 + repository: *861 + review: *915 sender: *4 required: - action @@ -234422,9 +234495,9 @@ webhooks: type: string enum: - resolved - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -236577,7 +236650,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *860 + repository: *861 sender: *4 thread: type: object @@ -236974,9 +237047,9 @@ webhooks: type: string enum: - unresolved - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -239112,7 +239185,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *860 + repository: *861 sender: *4 thread: type: object @@ -239511,10 +239584,10 @@ webhooks: type: string before: type: string - enterprise: *857 - installation: *858 - number: *909 - organization: *859 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 pull_request: title: Pull Request type: object @@ -241871,7 +241944,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -241953,11 +242026,11 @@ webhooks: type: string enum: - unassigned - assignee: *915 - enterprise: *857 - installation: *858 - number: *909 - organization: *859 + assignee: *916 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 pull_request: title: Pull Request type: object @@ -244329,7 +244402,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -244408,11 +244481,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *857 - installation: *858 - label: *878 - number: *909 - organization: *859 + enterprise: *858 + installation: *859 + label: *879 + number: *910 + organization: *860 pull_request: title: Pull Request type: object @@ -246773,7 +246846,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -246854,10 +246927,10 @@ webhooks: type: string enum: - unlocked - enterprise: *857 - installation: *858 - number: *909 - organization: *859 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 pull_request: title: Pull Request type: object @@ -249208,7 +249281,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -249411,7 +249484,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *857 + enterprise: *858 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -249506,8 +249579,8 @@ webhooks: - url - author - committer - installation: *858 - organization: *859 + installation: *859 + organization: *860 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -250106,9 +250179,9 @@ webhooks: type: string enum: - published - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 registry_package: type: object properties: @@ -250585,7 +250658,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *898 + items: *899 summary: type: string tag_name: @@ -250641,7 +250714,7 @@ webhooks: - owner - package_version - registry - repository: *860 + repository: *861 sender: *4 required: - action @@ -250719,9 +250792,9 @@ webhooks: type: string enum: - updated - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 registry_package: type: object properties: @@ -251033,7 +251106,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *898 + items: *899 summary: type: string tag_name: @@ -251083,7 +251156,7 @@ webhooks: - owner - package_version - registry - repository: *860 + repository: *861 sender: *4 required: - action @@ -251160,10 +251233,10 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - release: &916 + enterprise: *858 + installation: *859 + organization: *860 + release: &917 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -251494,7 +251567,7 @@ webhooks: - updated_at - zipball_url - body - repository: *860 + repository: *861 sender: *4 required: - action @@ -251571,11 +251644,11 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - release: *916 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + release: *917 + repository: *861 sender: *4 required: - action @@ -251692,11 +251765,11 @@ webhooks: type: boolean required: - to - enterprise: *857 - installation: *858 - organization: *859 - release: *916 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + release: *917 + repository: *861 sender: *4 required: - action @@ -251774,9 +251847,9 @@ webhooks: type: string enum: - prereleased - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -252112,7 +252185,7 @@ webhooks: - string - 'null' format: uri - repository: *860 + repository: *861 sender: *4 required: - action @@ -252188,10 +252261,10 @@ webhooks: type: string enum: - published - enterprise: *857 - installation: *858 - organization: *859 - release: &917 + enterprise: *858 + installation: *859 + organization: *860 + release: &918 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -252524,7 +252597,7 @@ webhooks: - string - 'null' format: uri - repository: *860 + repository: *861 sender: *4 required: - action @@ -252600,11 +252673,11 @@ webhooks: type: string enum: - released - enterprise: *857 - installation: *858 - organization: *859 - release: *916 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + release: *917 + repository: *861 sender: *4 required: - action @@ -252680,11 +252753,11 @@ webhooks: type: string enum: - unpublished - enterprise: *857 - installation: *858 - organization: *859 - release: *917 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + release: *918 + repository: *861 sender: *4 required: - action @@ -252760,11 +252833,11 @@ webhooks: type: string enum: - published - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - repository_advisory: *758 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + repository_advisory: *759 sender: *4 required: - action @@ -252840,11 +252913,11 @@ webhooks: type: string enum: - reported - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - repository_advisory: *758 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + repository_advisory: *759 sender: *4 required: - action @@ -252920,10 +252993,10 @@ webhooks: type: string enum: - archived - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -253000,10 +253073,10 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -253081,10 +253154,10 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -253169,10 +253242,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -253287,10 +253360,10 @@ webhooks: - 'null' items: type: string - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -253362,10 +253435,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 status: type: string @@ -253446,10 +253519,10 @@ webhooks: type: string enum: - privatized - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -253526,10 +253599,10 @@ webhooks: type: string enum: - publicized - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -253623,10 +253696,10 @@ webhooks: - name required: - repository - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -253706,10 +253779,10 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_ruleset: *187 sender: *4 required: @@ -253788,10 +253861,10 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_ruleset: *187 sender: *4 required: @@ -253870,10 +253943,10 @@ webhooks: type: string enum: - edited - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_ruleset: *187 changes: type: object @@ -254181,10 +254254,10 @@ webhooks: - from required: - owner - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -254262,10 +254335,10 @@ webhooks: type: string enum: - unarchived - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -254343,7 +254416,7 @@ webhooks: type: string enum: - create - alert: &918 + alert: &919 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -254468,10 +254541,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -254681,10 +254754,10 @@ webhooks: type: string enum: - dismissed - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -254762,11 +254835,11 @@ webhooks: type: string enum: - reopen - alert: *918 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + alert: *919 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -254968,10 +255041,10 @@ webhooks: enum: - fixed - open - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -255049,7 +255122,7 @@ webhooks: type: string enum: - assigned - alert: &919 + alert: &920 type: object properties: number: *127 @@ -255189,10 +255262,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -255270,11 +255343,11 @@ webhooks: type: string enum: - created - alert: *919 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + alert: *920 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -255355,11 +255428,11 @@ webhooks: type: string enum: - created - alert: *919 - installation: *858 - location: *920 - organization: *859 - repository: *860 + alert: *920 + installation: *859 + location: *921 + organization: *860 + repository: *861 sender: *4 required: - location @@ -255597,11 +255670,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *919 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + alert: *920 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -255679,11 +255752,11 @@ webhooks: type: string enum: - reopened - alert: *919 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + alert: *920 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -255761,11 +255834,11 @@ webhooks: type: string enum: - resolved - alert: *919 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + alert: *920 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -255843,12 +255916,12 @@ webhooks: type: string enum: - unassigned - alert: *919 + alert: *920 assignee: *4 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -255926,11 +255999,11 @@ webhooks: type: string enum: - validated - alert: *919 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + alert: *920 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -256060,10 +256133,10 @@ webhooks: - organization - enterprise - - repository: *860 - enterprise: *857 - installation: *858 - organization: *859 + repository: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -256141,11 +256214,11 @@ webhooks: type: string enum: - published - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - security_advisory: &921 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + security_advisory: &922 description: The details of the security advisory, including summary, description, and severity. type: object @@ -256331,11 +256404,11 @@ webhooks: type: string enum: - updated - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - security_advisory: *921 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + security_advisory: *922 sender: *4 required: - action @@ -256408,10 +256481,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -256598,9 +256671,9 @@ webhooks: type: object properties: security_and_analysis: *432 - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 repository: *478 sender: *4 required: @@ -256679,12 +256752,12 @@ webhooks: type: string enum: - cancelled - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: &922 + sponsorship: &923 type: object properties: created_at: @@ -256989,12 +257062,12 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *922 + sponsorship: *923 required: - action - sponsorship @@ -257082,12 +257155,12 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *922 + sponsorship: *923 required: - action - changes @@ -257164,17 +257237,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &923 + effective_date: &924 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: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *922 + sponsorship: *923 required: - action - sponsorship @@ -257248,7 +257321,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &924 + changes: &925 type: object properties: tier: @@ -257292,13 +257365,13 @@ webhooks: - from required: - tier - effective_date: *923 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + effective_date: *924 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *922 + sponsorship: *923 required: - action - changes @@ -257375,13 +257448,13 @@ webhooks: type: string enum: - tier_changed - changes: *924 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + changes: *925 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *922 + sponsorship: *923 required: - action - changes @@ -257455,10 +257528,10 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -257542,10 +257615,10 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -257979,15 +258052,15 @@ webhooks: type: - string - 'null' - enterprise: *857 + enterprise: *858 id: description: The unique identifier of the status. type: integer - installation: *858 + installation: *859 name: type: string - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 sha: description: The Commit SHA. @@ -258103,9 +258176,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *219 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -258194,9 +258267,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *219 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -258285,9 +258358,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *219 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -258376,9 +258449,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *219 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -258454,12 +258527,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - team: &925 + team: &926 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -258689,9 +258762,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -259161,7 +259234,7 @@ webhooks: - topics - visibility sender: *4 - team: *925 + team: *926 required: - action - team @@ -259237,9 +259310,9 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -259709,7 +259782,7 @@ webhooks: - topics - visibility sender: *4 - team: *925 + team: *926 required: - action - team @@ -259786,9 +259859,9 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -260258,7 +260331,7 @@ webhooks: - topics - visibility sender: *4 - team: *925 + team: *926 required: - action - team @@ -260402,9 +260475,9 @@ webhooks: - from required: - permissions - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -260874,7 +260947,7 @@ webhooks: - topics - visibility sender: *4 - team: *925 + team: *926 required: - action - changes @@ -260952,9 +261025,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -261424,7 +261497,7 @@ webhooks: - topics - visibility sender: *4 - team: *925 + team: *926 required: - action - team @@ -261500,10 +261573,10 @@ webhooks: type: string enum: - started - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -261576,17 +261649,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *857 + enterprise: *858 inputs: type: - object - 'null' additionalProperties: true - installation: *858 - organization: *859 + installation: *859 + organization: *860 ref: type: string - repository: *860 + repository: *861 sender: *4 workflow: type: string @@ -261668,10 +261741,10 @@ webhooks: type: string enum: - completed - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: allOf: @@ -262006,10 +262079,10 @@ webhooks: type: string enum: - in_progress - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: allOf: @@ -262370,10 +262443,10 @@ webhooks: type: string enum: - queued - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: type: object @@ -262598,10 +262671,10 @@ webhooks: type: string enum: - waiting - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: type: object @@ -262828,12 +262901,12 @@ webhooks: type: string enum: - completed - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *874 + workflow: *875 workflow_run: title: Workflow Run type: object @@ -263852,12 +263925,12 @@ webhooks: type: string enum: - in_progress - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *874 + workflow: *875 workflow_run: title: Workflow Run type: object @@ -264861,12 +264934,12 @@ webhooks: type: string enum: - requested - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *874 + workflow: *875 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json index 6a7fa5657..350f6af5b 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.json @@ -29749,6 +29749,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -29779,6 +29789,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -29804,6 +29815,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -30169,6 +30181,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -30195,6 +30217,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -30220,6 +30243,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -30541,6 +30565,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -32905,6 +32939,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -32925,6 +32969,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -148950,6 +148995,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -148976,6 +149031,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -149001,6 +149057,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -149370,6 +149427,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -149396,6 +149463,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -149421,6 +149489,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -149742,6 +149811,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -152106,6 +152185,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -152126,6 +152215,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -298892,6 +298982,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).\"", @@ -337885,6 +337990,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -337911,6 +338026,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -337936,6 +338052,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -338275,6 +338392,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -340666,6 +340793,16 @@ }, "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.", + "type": [ + "string", + "null" + ], + "examples": [ + "2.323.0" + ] } }, "required": [ @@ -340686,6 +340823,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -495041,6 +495179,135 @@ } } }, + "/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" + ], + "examples": [ + "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", @@ -688883,6 +689150,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-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml index cda90c1b0..98eb1bfcc 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2026-03-10.deref.yaml @@ -1056,7 +1056,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: - - &760 + - &761 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4326,7 +4326,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &769 + schema: &770 title: Scim Error description: Scim Error type: object @@ -11964,7 +11964,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &770 + '401': &771 description: Authorization failure '404': *6 x-github: @@ -13260,6 +13260,15 @@ 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. + type: + - string + - 'null' + examples: + - 2.323.0 required: - id - name @@ -13281,6 +13290,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -13297,6 +13307,7 @@ paths: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -13790,6 +13801,7 @@ paths: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -26281,14 +26293,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &738 + state: &739 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: &739 + resolution: &740 type: - string - 'null' @@ -26407,14 +26419,14 @@ paths: first_location_detected: anyOf: - type: 'null' - - &740 + - &741 description: 'Details on the location where the token was initially detected. This can be a commit, wiki commit, issue, discussion, pull request. ' oneOf: - - &742 + - &743 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -26478,7 +26490,7 @@ paths: - blob_url - commit_sha - commit_url - - &743 + - &744 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. @@ -26539,7 +26551,7 @@ paths: - page_url - commit_sha - commit_url - - &744 + - &745 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -26561,7 +26573,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &745 + - &746 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -26583,7 +26595,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &746 + - &747 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -26605,7 +26617,7 @@ paths: - https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &747 + - &748 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -26620,7 +26632,7 @@ paths: - https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &748 + - &749 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -26635,7 +26647,7 @@ paths: - https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &749 + - &750 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -26650,7 +26662,7 @@ paths: - https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &750 + - &751 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. @@ -26672,7 +26684,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &751 + - &752 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. @@ -26694,7 +26706,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &752 + - &753 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. @@ -26716,7 +26728,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &753 + - &754 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. @@ -26738,7 +26750,7 @@ paths: - https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &754 + - &755 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 @@ -30481,7 +30493,7 @@ paths: properties: action: type: string - discussion: &875 + discussion: &876 title: Discussion description: A Discussion in a repository. type: object @@ -31268,7 +31280,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &797 + sub_issues_summary: &798 title: Sub-issues Summary type: object properties: @@ -31379,7 +31391,7 @@ paths: - url - created_at - updated_at - issue_dependencies_summary: &798 + issue_dependencies_summary: &799 title: Issue Dependencies Summary type: object properties: @@ -44262,12 +44274,12 @@ paths: required: - subject_digests examples: - default: &835 + default: &836 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &836 + withPredicateType: &837 value: subject_digests: - sha256:abc123 @@ -44312,7 +44324,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &837 + default: &838 value: attestations_subject_digests: - sha256:abc: @@ -57419,7 +57431,7 @@ paths: parameters: - *87 - *398 - - &817 + - &818 name: repo_name description: repo_name parameter in: path @@ -58654,7 +58666,7 @@ paths: - nuget - container - *87 - - &818 + - &819 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -58695,7 +58707,7 @@ paths: default: *403 '403': *27 '401': *23 - '400': &820 + '400': &821 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -60937,7 +60949,7 @@ paths: latest_status_update: anyOf: - type: 'null' - - &908 + - &909 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -61823,7 +61835,7 @@ paths: - updated_at - project_url examples: - default: &841 + default: &842 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62000,7 +62012,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &842 + items: &843 type: object properties: name: @@ -62037,7 +62049,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &843 + iteration_configuration: &844 type: object description: The configuration for iteration fields. properties: @@ -62087,7 +62099,7 @@ paths: value: name: Due date data_type: date - single_select_field: &844 + single_select_field: &845 summary: Create a single select field value: name: Priority @@ -62114,7 +62126,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &845 + iteration_field: &846 summary: Create an iteration field value: name: Sprint @@ -62140,7 +62152,7 @@ paths: application/json: schema: *423 examples: - text_field: &846 + text_field: &847 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -62149,7 +62161,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: &847 + number_field: &848 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -62158,7 +62170,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: &848 + date_field: &849 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -62167,7 +62179,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: &849 + single_select_field: &850 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -62201,7 +62213,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &850 + iteration_field: &851 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -62247,7 +62259,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - *420 - - &851 + - &852 name: field_id description: The unique identifier of the field. in: path @@ -62262,7 +62274,7 @@ paths: application/json: schema: *423 examples: - default: &852 + default: &853 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63473,7 +63485,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &832 + schema: &833 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -63656,7 +63668,7 @@ paths: parameters: - *420 - *87 - - &853 + - &854 name: view_number description: The number that identifies the project view. in: path @@ -65812,6 +65824,22 @@ paths: - bypass - all default: all + - &730 + 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: @@ -65819,7 +65847,7 @@ paths: description: Response content: application/json: - schema: &730 + schema: &731 title: Rule Suites description: Response type: array @@ -65875,7 +65903,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &731 + default: &732 value: - id: 21 actor_id: 12 @@ -65919,7 +65947,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *87 - - &732 + - &733 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -65935,7 +65963,7 @@ paths: description: Response content: application/json: - schema: &733 + schema: &734 title: Rule Suite description: Response type: object @@ -66042,7 +66070,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &734 + default: &735 value: id: 21 actor_id: 12 @@ -66378,7 +66406,7 @@ paths: - *110 - *19 - *17 - - &736 + - &737 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 @@ -66388,7 +66416,7 @@ paths: required: false schema: type: string - - &737 + - &738 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 @@ -66602,7 +66630,7 @@ paths: application/json: schema: type: array - items: &758 + items: &759 description: A repository security advisory. type: object properties: @@ -66899,7 +66927,7 @@ paths: - private_fork additionalProperties: false examples: - default: &759 + default: &760 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -69069,7 +69097,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &800 + response-if-user-is-a-team-maintainer: &801 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -69134,7 +69162,7 @@ paths: application/json: schema: *472 examples: - response-if-users-membership-with-team-is-now-pending: &801 + response-if-users-membership-with-team-is-now-pending: &802 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -69248,7 +69276,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &802 + schema: &803 title: Team Repository description: A team's access to a repository. type: object @@ -70080,7 +70108,7 @@ paths: type: array items: *314 examples: - response-if-child-teams-exist: &803 + response-if-child-teams-exist: &804 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -82505,7 +82533,7 @@ paths: check. type: array items: *222 - deployment: &864 + deployment: &865 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -87758,7 +87786,7 @@ paths: type: array items: *576 examples: - default: &808 + default: &809 value: total_count: 2 machines: @@ -90935,7 +90963,7 @@ paths: application/json: schema: type: array - items: &763 + items: &764 title: Status description: The status of a commit. type: object @@ -92561,7 +92589,7 @@ paths: items: type: object properties: - placeholder_id: &755 + placeholder_id: &756 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -99275,6 +99303,50 @@ 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: + - *473 + - *474 + 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 + examples: + - sha1 + required: + - hash_algorithm + examples: + default: + value: + hash_algorithm: sha1 + '403': *27 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: repos + subcategory: repos "/repos/{owner}/{repo}/hooks": get: summary: List repository webhooks @@ -99361,7 +99433,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &900 + last_response: &901 title: Hook Response type: object properties: @@ -100430,7 +100502,7 @@ paths: parameters: - *473 - *474 - - &830 + - &831 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -100864,7 +100936,7 @@ paths: type: array items: *657 examples: - default: &822 + default: &823 value: - id: 1 repository: @@ -114794,7 +114866,7 @@ paths: application/json: schema: *187 examples: - default: &735 + default: &736 value: id: 42 name: super cool ruleset @@ -114848,6 +114920,7 @@ paths: - *105 - *728 - *729 + - *730 - *17 - *19 responses: @@ -114855,9 +114928,9 @@ paths: description: Response content: application/json: - schema: *730 + schema: *731 examples: - default: *731 + default: *732 '404': *6 '500': *38 x-github: @@ -114880,15 +114953,15 @@ paths: parameters: - *473 - *474 - - *732 + - *733 responses: '200': description: Response content: application/json: - schema: *733 + schema: *734 examples: - default: *734 + default: *735 '404': *6 '500': *38 x-github: @@ -114939,7 +115012,7 @@ paths: application/json: schema: *187 examples: - default: *735 + default: *736 '404': *6 '500': *38 put: @@ -115022,7 +115095,7 @@ paths: application/json: schema: *187 examples: - default: *735 + default: *736 '404': *6 '422': *15 '500': *38 @@ -115190,8 +115263,8 @@ paths: - *110 - *19 - *17 - - *736 - *737 + - *738 - *448 - *449 - *450 @@ -115204,7 +115277,7 @@ paths: application/json: schema: type: array - items: &741 + items: &742 type: object properties: number: *127 @@ -115220,8 +115293,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *738 - resolution: *739 + state: *739 + resolution: *740 resolved_at: type: - string @@ -115327,7 +115400,7 @@ paths: first_location_detected: anyOf: - type: 'null' - - *740 + - *741 has_more_locations: type: boolean description: A boolean value representing whether or not the @@ -115495,7 +115568,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *742 examples: default: value: @@ -115559,8 +115632,8 @@ paths: schema: type: object properties: - state: *738 - resolution: *739 + state: *739 + resolution: *740 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -115608,7 +115681,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *742 examples: default: value: @@ -115720,7 +115793,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &920 + items: &921 type: object properties: type: @@ -115747,7 +115820,6 @@ paths: - commit details: oneOf: - - *742 - *743 - *744 - *745 @@ -115760,6 +115832,7 @@ paths: - *752 - *753 - *754 + - *755 examples: default: value: @@ -115854,14 +115927,14 @@ paths: schema: type: object properties: - reason: &756 + reason: &757 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *755 + placeholder_id: *756 required: - reason - placeholder_id @@ -115878,7 +115951,7 @@ paths: schema: type: object properties: - reason: *756 + reason: *757 expire_at: type: - string @@ -115941,7 +116014,7 @@ paths: properties: incremental_scans: type: array - items: &757 + items: &758 description: Information on a single scan performed by secret scanning on the repository type: object @@ -115974,15 +116047,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *757 + items: *758 backfill_scans: type: array - items: *757 + items: *758 custom_pattern_backfill_scans: type: array items: allOf: - - *757 + - *758 - type: object properties: pattern_name: @@ -115995,7 +116068,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *757 + items: *758 examples: default: value: @@ -116105,9 +116178,9 @@ paths: application/json: schema: type: array - items: *758 + items: *759 examples: - default: *759 + default: *760 '400': *14 '404': *6 x-github: @@ -116301,9 +116374,9 @@ paths: description: Response content: application/json: - schema: *758 + schema: *759 examples: - default: &761 + default: &762 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -116647,7 +116720,7 @@ paths: description: Response content: application/json: - schema: *758 + schema: *759 examples: default: value: @@ -116795,15 +116868,15 @@ paths: parameters: - *473 - *474 - - *760 + - *761 responses: '200': description: Response content: application/json: - schema: *758 + schema: *759 examples: - default: *761 + default: *762 '403': *27 '404': *6 x-github: @@ -116829,7 +116902,7 @@ paths: parameters: - *473 - *474 - - *760 + - *761 requestBody: required: true content: @@ -117000,10 +117073,10 @@ paths: description: Response content: application/json: - schema: *758 + schema: *759 examples: - default: *761 - add_credit: *761 + default: *762 + add_credit: *762 '403': *27 '404': *6 '422': @@ -117043,7 +117116,7 @@ paths: parameters: - *473 - *474 - - *760 + - *761 responses: '202': *37 '400': *14 @@ -117072,7 +117145,7 @@ paths: parameters: - *473 - *474 - - *760 + - *761 responses: '202': description: Response @@ -117213,7 +117286,7 @@ paths: application/json: schema: type: array - items: &762 + items: &763 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -117586,7 +117659,7 @@ paths: application/json: schema: type: array - items: *762 + items: *763 examples: default: value: @@ -117676,7 +117749,7 @@ paths: description: Response content: application/json: - schema: *763 + schema: *764 examples: default: value: @@ -117770,7 +117843,7 @@ paths: description: if you subscribe to the repository content: application/json: - schema: &764 + schema: &765 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -117870,7 +117943,7 @@ paths: description: Response content: application/json: - schema: *764 + schema: *765 examples: default: value: @@ -118080,7 +118153,7 @@ paths: description: Response content: application/json: - schema: &765 + schema: &766 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -118092,7 +118165,7 @@ paths: required: - names examples: - default: &766 + default: &767 value: names: - octocat @@ -118147,9 +118220,9 @@ paths: description: Response content: application/json: - schema: *765 + schema: *766 examples: - default: *766 + default: *767 '404': *6 '422': *7 x-github: @@ -118172,7 +118245,7 @@ paths: parameters: - *473 - *474 - - &767 + - &768 name: per description: The time frame to display results for. in: query @@ -118203,7 +118276,7 @@ paths: - 128 clones: type: array - items: &768 + items: &769 title: Traffic type: object properties: @@ -118451,7 +118524,7 @@ paths: parameters: - *473 - *474 - - *767 + - *768 responses: '200': description: Response @@ -118472,7 +118545,7 @@ paths: - 3782 views: type: array - items: *768 + items: *769 required: - uniques - count @@ -119143,7 +119216,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &776 + - &777 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -119153,7 +119226,7 @@ paths: type: string examples: - members - - &781 + - &782 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -119165,7 +119238,7 @@ paths: format: int32 examples: - 1 - - &782 + - &783 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -119209,7 +119282,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &771 + items: &772 allOf: - type: object required: @@ -119291,7 +119364,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: &783 + meta: &784 type: object description: The metadata associated with the creation/updates to the user. @@ -119356,30 +119429,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &772 + '400': &773 description: Bad request content: application/json: - schema: *769 + schema: *770 application/scim+json: - schema: *769 - '401': *770 - '403': &773 + schema: *770 + '401': *771 + '403': &774 description: Permission denied - '429': &774 + '429': &775 description: Too many requests content: application/json: - schema: *769 + schema: *770 application/scim+json: - schema: *769 - '500': &775 + schema: *770 + '500': &776 description: Internal server error content: application/json: - schema: *769 + schema: *770 application/scim+json: - schema: *769 + schema: *770 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119403,7 +119476,7 @@ paths: required: true content: application/json: - schema: &779 + schema: &780 type: object required: - schemas @@ -119467,9 +119540,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *771 + schema: *772 examples: - group: &777 + group: &778 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -119488,13 +119561,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': *772 - '401': *770 - '403': *773 - '409': &780 + '400': *773 + '401': *771 + '403': *774 + '409': &781 description: Duplicate record detected - '429': *774 - '500': *775 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119511,7 +119584,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: - - &778 + - &779 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -119520,22 +119593,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *776 + - *777 - *39 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *771 + schema: *772 examples: - default: *777 - '400': *772 - '401': *770 - '403': *773 + default: *778 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '429': *774 - '500': *775 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119554,13 +119627,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: - - *778 + - *779 - *39 requestBody: required: true content: application/json: - schema: *779 + schema: *780 examples: group: summary: Group @@ -119586,17 +119659,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *771 + schema: *772 examples: - group: *777 - groupWithMembers: *777 - '400': *772 - '401': *770 - '403': *773 + group: *778 + groupWithMembers: *778 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *781 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119620,13 +119693,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: - - *778 + - *779 - *39 requestBody: required: true content: application/json: - schema: &790 + schema: &791 type: object required: - Operations @@ -119686,17 +119759,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *771 + schema: *772 examples: - updateGroup: *777 - addMembers: *777 - '400': *772 - '401': *770 - '403': *773 + updateGroup: *778 + addMembers: *778 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *781 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119712,17 +119785,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: - - *778 + - *779 - *39 responses: '204': description: Group was deleted, no content - '400': *772 - '401': *770 - '403': *773 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '429': *774 - '500': *775 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -119756,8 +119829,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *781 - *782 + - *783 - *39 responses: '200': @@ -119791,7 +119864,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &785 + items: &786 allOf: - type: object required: @@ -119883,7 +119956,7 @@ paths: address. examples: - true - roles: &784 + roles: &785 type: array description: The roles assigned to the user. items: @@ -119942,7 +120015,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *783 + meta: *784 startIndex: type: integer description: A starting index for the returned page @@ -119981,11 +120054,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *772 - '401': *770 - '403': *773 - '429': *774 - '500': *775 + '400': *773 + '401': *771 + '403': *774 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120009,7 +120082,7 @@ paths: required: true content: application/json: - schema: &788 + schema: &789 type: object required: - schemas @@ -120102,9 +120175,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *784 + roles: *785 examples: - user: &789 + user: &790 summary: User value: schemas: @@ -120151,9 +120224,9 @@ paths: description: User has been created content: application/scim+json: - schema: *785 + schema: *786 examples: - user: &786 + user: &787 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -120179,13 +120252,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: *786 - '400': *772 - '401': *770 - '403': *773 - '409': *780 - '429': *774 - '500': *775 + enterpriseOwner: *787 + '400': *773 + '401': *771 + '403': *774 + '409': *781 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120202,7 +120275,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: - - &787 + - &788 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -120215,15 +120288,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *785 + schema: *786 examples: - default: *786 - '400': *772 - '401': *770 - '403': *773 + default: *787 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '429': *774 - '500': *775 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120274,30 +120347,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: - - *787 + - *788 - *39 requestBody: required: true content: application/json: - schema: *788 + schema: *789 examples: - user: *789 + user: *790 responses: '200': description: User was updated content: application/scim+json: - schema: *785 + schema: *786 examples: - user: *786 - '400': *772 - '401': *770 - '403': *773 + user: *787 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *781 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120338,13 +120411,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: - - *787 + - *788 - *39 requestBody: required: true content: application/json: - schema: *790 + schema: *791 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -120384,18 +120457,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *785 - examples: - userMultiValuedProperties: *786 - userSingleValuedProperties: *786 - disableUser: *786 - '400': *772 - '401': *770 - '403': *773 + schema: *786 + examples: + userMultiValuedProperties: *787 + userSingleValuedProperties: *787 + disableUser: *787 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '409': *780 - '429': *774 - '500': *775 + '409': *781 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120415,17 +120488,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: - - *787 + - *788 - *39 responses: '204': description: User was deleted, no content - '400': *772 - '401': *770 - '403': *773 + '400': *773 + '401': *771 + '403': *774 '404': *6 - '429': *774 - '500': *775 + '429': *775 + '500': *776 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -120516,7 +120589,7 @@ paths: - 1 Resources: type: array - items: &791 + items: &792 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -120763,22 +120836,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': *35 - '404': &792 + '404': &793 description: Resource not found content: application/json: - schema: *769 + schema: *770 application/scim+json: - schema: *769 - '403': &793 + schema: *770 + '403': &794 description: Forbidden content: application/json: - schema: *769 + schema: *770 application/scim+json: - schema: *769 - '400': *772 - '429': *774 + schema: *770 + '400': *773 + '429': *775 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -120804,9 +120877,9 @@ paths: description: Response content: application/scim+json: - schema: *791 + schema: *792 examples: - default: &794 + default: &795 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -120829,17 +120902,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': *35 - '404': *792 - '403': *793 - '500': *775 + '404': *793 + '403': *794 + '500': *776 '409': description: Conflict content: application/json: - schema: *769 + schema: *770 application/scim+json: - schema: *769 - '400': *772 + schema: *770 + '400': *773 requestBody: required: true content: @@ -120939,17 +121012,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *87 - - *787 + - *788 responses: '200': description: Response content: application/scim+json: - schema: *791 + schema: *792 examples: - default: *794 - '404': *792 - '403': *793 + default: *795 + '404': *793 + '403': *794 '304': *35 x-github: githubCloudOnly: true @@ -120973,18 +121046,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *87 - - *787 + - *788 responses: '200': description: Response content: application/scim+json: - schema: *791 + schema: *792 examples: - default: *794 + default: *795 '304': *35 - '404': *792 - '403': *793 + '404': *793 + '403': *794 requestBody: required: true content: @@ -121099,19 +121172,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *87 - - *787 + - *788 responses: '200': description: Response content: application/scim+json: - schema: *791 + schema: *792 examples: - default: *794 + default: *795 '304': *35 - '404': *792 - '403': *793 - '400': *772 + '404': *793 + '403': *794 + '400': *773 '429': description: Response content: @@ -121207,12 +121280,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *87 - - *787 + - *788 responses: '204': description: Response - '404': *792 - '403': *793 + '404': *793 + '403': *794 '304': *35 x-github: githubCloudOnly: true @@ -121349,7 +121422,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &795 + text_matches: &796 title: Search Result Text Matches type: array items: @@ -121513,7 +121586,7 @@ paths: enum: - author-date - committer-date - - &796 + - &797 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 @@ -121633,7 +121706,7 @@ paths: type: number node_id: type: string - text_matches: *795 + text_matches: *796 required: - sha - node_id @@ -121826,7 +121899,7 @@ paths: - interactions - created - updated - - *796 + - *797 - *17 - *19 - name: advanced_search @@ -121940,8 +122013,8 @@ paths: type: - string - 'null' - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -121968,7 +122041,7 @@ paths: - string - 'null' format: date-time - text_matches: *795 + text_matches: *796 pull_request: type: object properties: @@ -122242,7 +122315,7 @@ paths: enum: - created - updated - - *796 + - *797 - *17 - *19 responses: @@ -122287,7 +122360,7 @@ paths: - 'null' score: type: number - text_matches: *795 + text_matches: *796 required: - id - node_id @@ -122373,7 +122446,7 @@ paths: - forks - help-wanted-issues - updated - - *796 + - *797 - *17 - *19 responses: @@ -122619,7 +122692,7 @@ paths: - admin - pull - push - text_matches: *795 + text_matches: *796 temp_clone_token: type: string allow_merge_commit: @@ -122928,7 +123001,7 @@ paths: - string - 'null' format: uri - text_matches: *795 + text_matches: *796 related: type: - array @@ -123123,7 +123196,7 @@ paths: - followers - repositories - joined - - *796 + - *797 - *17 - *19 responses: @@ -123233,7 +123306,7 @@ paths: type: - boolean - 'null' - text_matches: *795 + text_matches: *796 blog: type: - string @@ -123315,7 +123388,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &799 + - &800 name: team_id description: The unique identifier of the team. in: path @@ -123356,7 +123429,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *799 + - *800 requestBody: required: true content: @@ -123457,7 +123530,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *799 + - *800 responses: '204': description: Response @@ -123486,7 +123559,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *799 + - *800 - *17 - *19 responses: @@ -123524,7 +123597,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *799 + - *800 - name: role description: Filters members returned by their role in the team. in: query @@ -123575,7 +123648,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *799 + - *800 - *140 responses: '204': @@ -123612,7 +123685,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *799 + - *800 - *140 responses: '204': @@ -123652,7 +123725,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *799 + - *800 - *140 responses: '204': @@ -123689,7 +123762,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: - - *799 + - *800 - *140 responses: '200': @@ -123698,7 +123771,7 @@ paths: application/json: schema: *472 examples: - response-if-user-is-a-team-maintainer: *800 + response-if-user-is-a-team-maintainer: *801 '404': *6 x-github: githubCloudOnly: false @@ -123731,7 +123804,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: - - *799 + - *800 - *140 requestBody: required: false @@ -123759,7 +123832,7 @@ paths: application/json: schema: *472 examples: - response-if-users-membership-with-team-is-now-pending: *801 + response-if-users-membership-with-team-is-now-pending: *802 '403': description: Forbidden if team synchronization is set up '422': @@ -123793,7 +123866,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: - - *799 + - *800 - *140 responses: '204': @@ -123821,7 +123894,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *799 + - *800 - *17 - *19 responses: @@ -123863,7 +123936,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: - - *799 + - *800 - *473 - *474 responses: @@ -123871,7 +123944,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *802 + schema: *803 examples: alternative-response-with-extra-repository-information: value: @@ -124021,7 +124094,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: - - *799 + - *800 - *473 - *474 requestBody: @@ -124073,7 +124146,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: - - *799 + - *800 - *473 - *474 responses: @@ -124104,7 +124177,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: - - *799 + - *800 responses: '200': description: Response @@ -124139,7 +124212,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: - - *799 + - *800 requestBody: required: true content: @@ -124231,7 +124304,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *799 + - *800 - *17 - *19 responses: @@ -124243,7 +124316,7 @@ paths: type: array items: *314 examples: - response-if-child-teams-exist: *803 + response-if-child-teams-exist: *804 headers: Link: *45 '404': *6 @@ -124276,7 +124349,7 @@ paths: application/json: schema: oneOf: - - &804 + - &805 title: Private User description: Private User type: object @@ -124526,7 +124599,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &829 + - &830 title: Public User description: Public User type: object @@ -124860,7 +124933,7 @@ paths: description: Response content: application/json: - schema: *804 + schema: *805 examples: default: value: @@ -125258,7 +125331,7 @@ paths: type: integer secrets: type: array - items: &805 + items: &806 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -125378,7 +125451,7 @@ paths: description: Response content: application/json: - schema: *805 + schema: *806 examples: default: value: @@ -125791,7 +125864,7 @@ paths: description: Response content: application/json: - schema: &806 + schema: &807 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -125844,7 +125917,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &807 + default: &808 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -125889,9 +125962,9 @@ paths: description: Response content: application/json: - schema: *806 + schema: *807 examples: - default: *807 + default: *808 '404': *6 x-github: githubCloudOnly: false @@ -125930,7 +126003,7 @@ paths: type: array items: *576 examples: - default: *808 + default: *809 '304': *35 '500': *38 '401': *23 @@ -126896,7 +126969,7 @@ paths: type: array items: *402 examples: - default: &819 + default: &820 value: - id: 197 name: hello_docker @@ -126997,7 +127070,7 @@ paths: application/json: schema: type: array - items: &809 + items: &810 title: Email description: Email type: object @@ -127067,9 +127140,9 @@ paths: application/json: schema: type: array - items: *809 + items: *810 examples: - default: &821 + default: &822 value: - email: octocat@github.com verified: true @@ -127146,7 +127219,7 @@ paths: application/json: schema: type: array - items: *809 + items: *810 examples: default: value: @@ -127404,7 +127477,7 @@ paths: application/json: schema: type: array - items: &810 + items: &811 title: GPG Key description: A unique encryption key type: object @@ -127549,7 +127622,7 @@ paths: - subkeys - revoked examples: - default: &839 + default: &840 value: - id: 3 name: Octocat's GPG Key @@ -127634,9 +127707,9 @@ paths: description: Response content: application/json: - schema: *810 + schema: *811 examples: - default: &811 + default: &812 value: id: 3 name: Octocat's GPG Key @@ -127693,7 +127766,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: - - &812 + - &813 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -127705,9 +127778,9 @@ paths: description: Response content: application/json: - schema: *810 + schema: *811 examples: - default: *811 + default: *812 '404': *6 '304': *35 '403': *27 @@ -127730,7 +127803,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: - - *812 + - *813 responses: '204': description: Response @@ -128197,7 +128270,7 @@ paths: application/json: schema: type: array - items: &813 + items: &814 title: Key description: Key type: object @@ -128300,9 +128373,9 @@ paths: description: Response content: application/json: - schema: *813 + schema: *814 examples: - default: &814 + default: &815 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -128341,9 +128414,9 @@ paths: description: Response content: application/json: - schema: *813 + schema: *814 examples: - default: *814 + default: *815 '404': *6 '304': *35 '403': *27 @@ -128399,7 +128472,7 @@ paths: application/json: schema: type: array - items: &815 + items: &816 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -128478,7 +128551,7 @@ paths: - account - plan examples: - default: &816 + default: &817 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -128540,9 +128613,9 @@ paths: application/json: schema: type: array - items: *815 + items: *816 examples: - default: *816 + default: *817 headers: Link: *45 '304': *35 @@ -129560,7 +129633,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - *398 - - *817 + - *818 responses: '204': description: Response @@ -129673,7 +129746,7 @@ paths: - docker - nuget - container - - *818 + - *819 - *19 - *17 responses: @@ -129685,8 +129758,8 @@ paths: type: array items: *402 examples: - default: *819 - '400': *820 + default: *820 + '400': *821 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -129715,7 +129788,7 @@ paths: application/json: schema: *402 examples: - default: &840 + default: &841 value: id: 40201 name: octo-name @@ -130077,9 +130150,9 @@ paths: application/json: schema: type: array - items: *809 + items: *810 examples: - default: *821 + default: *822 headers: Link: *45 '304': *35 @@ -130192,7 +130265,7 @@ paths: type: array items: *78 examples: - default: &828 + default: &829 summary: Default response value: - id: 1296269 @@ -130553,7 +130626,7 @@ paths: type: array items: *657 examples: - default: *822 + default: *823 headers: Link: *45 '304': *35 @@ -130633,7 +130706,7 @@ paths: application/json: schema: type: array - items: &823 + items: &824 title: Social account description: Social media account type: object @@ -130650,7 +130723,7 @@ paths: - provider - url examples: - default: &824 + default: &825 value: - provider: twitter url: https://twitter.com/github @@ -130713,9 +130786,9 @@ paths: application/json: schema: type: array - items: *823 + items: *824 examples: - default: *824 + default: *825 '422': *15 '304': *35 '404': *6 @@ -130803,7 +130876,7 @@ paths: application/json: schema: type: array - items: &825 + items: &826 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -130823,7 +130896,7 @@ paths: - title - created_at examples: - default: &854 + default: &855 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -130888,9 +130961,9 @@ paths: description: Response content: application/json: - schema: *825 + schema: *826 examples: - default: &826 + default: &827 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -130920,7 +130993,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: - - &827 + - &828 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -130932,9 +131005,9 @@ paths: description: Response content: application/json: - schema: *825 + schema: *826 examples: - default: *826 + default: *827 '404': *6 '304': *35 '403': *27 @@ -130957,7 +131030,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: - - *827 + - *828 responses: '204': description: Response @@ -130986,7 +131059,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: - - &855 + - &856 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 @@ -131011,11 +131084,11 @@ paths: type: array items: *78 examples: - default-response: *828 + default-response: *829 application/vnd.github.v3.star+json: schema: type: array - items: &856 + items: &857 title: Starred Repository description: Starred Repository type: object @@ -131384,10 +131457,10 @@ paths: application/json: schema: oneOf: - - *804 - - *829 + - *805 + - *830 examples: - default-response: &833 + default-response: &834 summary: Default response value: login: octocat @@ -131422,7 +131495,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &834 + response-with-git-hub-plan-information: &835 summary: Response with GitHub plan information value: login: octocat @@ -131479,7 +131552,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: - - &831 + - &832 name: user_id description: The unique identifier of the user. in: path @@ -131545,7 +131618,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *830 + - *831 - *17 responses: '200': @@ -131580,7 +131653,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: - - *831 + - *832 - *420 requestBody: required: true @@ -131655,7 +131728,7 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *832 + schema: *833 examples: table_view: summary: Response for creating a table view @@ -131707,11 +131780,11 @@ paths: application/json: schema: oneOf: - - *804 - - *829 + - *805 + - *830 examples: - default-response: *833 - response-with-git-hub-plan-information: *834 + default-response: *834 + response-with-git-hub-plan-information: *835 '404': *6 x-github: githubCloudOnly: false @@ -131761,8 +131834,8 @@ paths: required: - subject_digests examples: - default: *835 - withPredicateType: *836 + default: *836 + withPredicateType: *837 responses: '200': description: Response @@ -131802,7 +131875,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *837 + default: *838 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -132275,7 +132348,7 @@ paths: application/json: schema: *329 examples: - default: &838 + default: &839 summary: Example response for a user copilot space value: id: 42 @@ -132376,7 +132449,7 @@ paths: application/json: schema: *329 examples: - default: *838 + default: *839 '403': *27 '404': *6 x-github: @@ -132502,7 +132575,7 @@ paths: application/json: schema: *329 examples: - default: *838 + default: *839 '403': *27 '404': *6 '422': *15 @@ -133270,7 +133343,7 @@ paths: type: array items: *402 examples: - default: *819 + default: *820 '403': *27 '401': *23 x-github: @@ -133654,9 +133727,9 @@ paths: application/json: schema: type: array - items: *810 + items: *811 examples: - default: *839 + default: *840 headers: Link: *45 x-github: @@ -133885,7 +133958,7 @@ paths: - docker - nuget - container - - *818 + - *819 - *140 - *19 - *17 @@ -133898,10 +133971,10 @@ paths: type: array items: *402 examples: - default: *819 + default: *820 '403': *27 '401': *23 - '400': *820 + '400': *821 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -133931,7 +134004,7 @@ paths: application/json: schema: *402 examples: - default: *840 + default: *841 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -134280,7 +134353,7 @@ paths: type: array items: *423 examples: - default: *841 + default: *842 headers: Link: *45 '304': *35 @@ -134340,7 +134413,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *842 + items: *843 required: - name - data_type @@ -134356,7 +134429,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *843 + iteration_configuration: *844 required: - name - data_type @@ -134378,8 +134451,8 @@ paths: value: name: Due date data_type: date - single_select_field: *844 - iteration_field: *845 + single_select_field: *845 + iteration_field: *846 responses: '201': description: Response @@ -134387,11 +134460,11 @@ paths: application/json: schema: *423 examples: - text_field: *846 - number_field: *847 - date_field: *848 - single_select_field: *849 - iteration_field: *850 + text_field: *847 + number_field: *848 + date_field: *849 + single_select_field: *850 + iteration_field: *851 '304': *35 '403': *27 '401': *23 @@ -134413,7 +134486,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - *420 - - *851 + - *852 - *140 responses: '200': @@ -134422,7 +134495,7 @@ paths: application/json: schema: *423 examples: - default: *852 + default: *853 headers: Link: *45 '304': *35 @@ -134779,7 +134852,7 @@ paths: parameters: - *420 - *140 - - *853 + - *854 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -135058,9 +135131,9 @@ paths: application/json: schema: type: array - items: *823 + items: *824 examples: - default: *824 + default: *825 headers: Link: *45 x-github: @@ -135090,9 +135163,9 @@ paths: application/json: schema: type: array - items: *825 + items: *826 examples: - default: *854 + default: *855 headers: Link: *45 x-github: @@ -135117,7 +135190,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *140 - - *855 + - *856 - *110 - *17 - *19 @@ -135129,11 +135202,11 @@ paths: schema: anyOf: - type: array - items: *856 + items: *857 - type: array items: *78 examples: - default-response: *828 + default-response: *829 headers: Link: *45 x-github: @@ -135293,7 +135366,7 @@ webhooks: type: string enum: - disabled - enterprise: &857 + enterprise: &858 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -135362,7 +135435,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &858 + installation: &859 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -135383,7 +135456,7 @@ webhooks: required: - id - node_id - organization: &859 + organization: &860 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -135456,7 +135529,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &860 + repository: &861 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -136371,10 +136444,10 @@ webhooks: type: string enum: - enabled - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -136450,11 +136523,11 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - rule: &861 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + rule: &862 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) @@ -136677,11 +136750,11 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - rule: *861 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + rule: *862 sender: *4 required: - action @@ -136869,11 +136942,11 @@ webhooks: - everyone required: - from - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - rule: *861 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + rule: *862 sender: *4 required: - action @@ -136946,7 +137019,7 @@ webhooks: required: true content: application/json: - schema: &881 + schema: &882 title: Exemption request cancellation event type: object properties: @@ -136954,11 +137027,11 @@ webhooks: type: string enum: - cancelled - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - exemption_request: &862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: &863 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -137267,7 +137340,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &863 + items: &864 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -137379,7 +137452,7 @@ webhooks: required: true content: application/json: - schema: &882 + schema: &883 title: Exemption request completed event type: object properties: @@ -137387,11 +137460,11 @@ webhooks: type: string enum: - completed - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - exemption_request: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 sender: *4 required: - action @@ -137463,7 +137536,7 @@ webhooks: required: true content: application/json: - schema: &879 + schema: &880 title: Exemption request created event type: object properties: @@ -137471,11 +137544,11 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - exemption_request: *862 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 sender: *4 required: - action @@ -137547,7 +137620,7 @@ webhooks: required: true content: application/json: - schema: &883 + schema: &884 title: Exemption response dismissed event type: object properties: @@ -137555,12 +137628,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - exemption_request: *862 - exemption_response: *863 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 + exemption_response: *864 sender: *4 required: - action @@ -137634,7 +137707,7 @@ webhooks: required: true content: application/json: - schema: &880 + schema: &881 title: Exemption response submitted event type: object properties: @@ -137642,12 +137715,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - exemption_request: *862 - exemption_response: *863 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + exemption_request: *863 + exemption_response: *864 sender: *4 required: - action @@ -137731,7 +137804,7 @@ webhooks: type: string enum: - completed - check_run: &865 + check_run: &866 title: CheckRun description: A check performed on the code of a given code change type: object @@ -137841,7 +137914,7 @@ webhooks: - examples: - neutral - deployment: *864 + deployment: *865 details_url: type: string examples: @@ -137939,10 +138012,10 @@ webhooks: - output - app - pull_requests - installation: *858 - enterprise: *857 - organization: *859 - repository: *860 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 sender: *4 required: - check_run @@ -138333,11 +138406,11 @@ webhooks: type: string enum: - created - check_run: *865 - installation: *858 - enterprise: *857 - organization: *859 - repository: *860 + check_run: *866 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 sender: *4 required: - check_run @@ -138731,11 +138804,11 @@ webhooks: type: string enum: - requested_action - check_run: *865 - installation: *858 - enterprise: *857 - organization: *859 - repository: *860 + check_run: *866 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 requested_action: description: The action requested by the user. type: object @@ -139138,11 +139211,11 @@ webhooks: type: string enum: - rerequested - check_run: *865 - installation: *858 - enterprise: *857 - organization: *859 - repository: *860 + check_run: *866 + installation: *859 + enterprise: *858 + organization: *860 + repository: *861 sender: *4 required: - check_run @@ -140127,10 +140200,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -140839,10 +140912,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -141545,10 +141618,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -141869,20 +141942,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &866 + commit_oid: &867 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: *857 - installation: *858 - organization: *859 - ref: &867 + enterprise: *858 + installation: *859 + organization: *860 + ref: &868 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: *860 + repository: *861 sender: *4 required: - action @@ -142290,12 +142363,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *866 - enterprise: *857 - installation: *858 - organization: *859 - ref: *867 - repository: *860 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -142578,12 +142651,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *866 - enterprise: *857 - installation: *858 - organization: *859 - ref: *867 - repository: *860 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -142929,12 +143002,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *866 - enterprise: *857 - installation: *858 - organization: *859 - ref: *867 - repository: *860 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -143224,9 +143297,9 @@ webhooks: type: - string - 'null' - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -143234,7 +143307,7 @@ webhooks: type: - string - 'null' - repository: *860 + repository: *861 sender: *4 required: - action @@ -143480,12 +143553,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *866 - enterprise: *857 - installation: *858 - organization: *859 - ref: *867 - repository: *860 + commit_oid: *867 + enterprise: *858 + installation: *859 + organization: *860 + ref: *868 + repository: *861 sender: *4 required: - action @@ -143806,10 +143879,10 @@ webhooks: - dismissed_reason - rule - tool - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -144069,10 +144142,10 @@ webhooks: - updated_at - author_association - body - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -144153,18 +144226,18 @@ webhooks: type: - string - 'null' - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *859 - pusher_type: &868 + organization: *860 + pusher_type: &869 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &869 + ref: &870 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -144174,7 +144247,7 @@ webhooks: enum: - tag - branch - repository: *860 + repository: *861 sender: *4 required: - ref @@ -144257,9 +144330,9 @@ webhooks: enum: - created definition: *153 - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -144344,9 +144417,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -144424,9 +144497,9 @@ webhooks: enum: - promote_to_enterprise definition: *153 - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -144504,9 +144577,9 @@ webhooks: enum: - updated definition: *153 - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -144583,10 +144656,10 @@ webhooks: type: string enum: - updated - enterprise: *857 - installation: *858 - repository: *860 - organization: *859 + enterprise: *858 + installation: *859 + repository: *861 + organization: *860 sender: *4 new_property_values: type: array @@ -144671,18 +144744,18 @@ webhooks: title: delete event type: object properties: - enterprise: *857 - installation: *858 - organization: *859 - pusher_type: *868 - ref: *869 + enterprise: *858 + installation: *859 + organization: *860 + pusher_type: *869 + ref: *870 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *860 + repository: *861 sender: *4 required: - ref @@ -144763,10 +144836,10 @@ webhooks: enum: - assignees_changed alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -144847,10 +144920,10 @@ webhooks: enum: - auto_dismissed alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -144932,10 +145005,10 @@ webhooks: enum: - auto_reopened alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145017,10 +145090,10 @@ webhooks: enum: - created alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145100,10 +145173,10 @@ webhooks: enum: - dismissed alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145183,10 +145256,10 @@ webhooks: enum: - fixed alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145267,10 +145340,10 @@ webhooks: enum: - reintroduced alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145350,10 +145423,10 @@ webhooks: enum: - reopened alert: *607 - installation: *858 - organization: *859 - enterprise: *857 - repository: *860 + installation: *859 + organization: *860 + enterprise: *858 + repository: *861 sender: *4 required: - action @@ -145430,9 +145503,9 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - key: &870 + enterprise: *858 + installation: *859 + key: &871 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -145470,8 +145543,8 @@ webhooks: - verified - created_at - read_only - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -145548,11 +145621,11 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - key: *870 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + key: *871 + organization: *860 + repository: *861 sender: *4 required: - action @@ -146119,12 +146192,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: &874 + workflow: &875 title: Workflow type: - object @@ -146879,9 +146952,9 @@ webhooks: pull_requests: type: array items: *706 - repository: *860 - organization: *859 - installation: *858 + repository: *861 + organization: *860 + installation: *859 sender: *4 responses: '200': @@ -146952,7 +147025,7 @@ webhooks: type: string enum: - approved - approver: &871 + approver: &872 type: object properties: avatar_url: @@ -146995,11 +147068,11 @@ webhooks: type: string comment: type: string - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - reviewers: &872 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + reviewers: &873 type: array items: type: object @@ -147080,7 +147153,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &873 + workflow_job_run: &874 type: object properties: conclusion: @@ -147826,18 +147899,18 @@ webhooks: type: string enum: - rejected - approver: *871 + approver: *872 comment: type: string - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - reviewers: *872 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + reviewers: *873 sender: *4 since: type: string - workflow_job_run: *873 + workflow_job_run: *874 workflow_job_runs: type: array items: @@ -148554,13 +148627,13 @@ webhooks: type: string enum: - requested - enterprise: *857 + enterprise: *858 environment: type: string - installation: *858 - organization: *859 - repository: *860 - requestor: &884 + installation: *859 + organization: *860 + repository: *861 + requestor: &885 title: User type: - object @@ -150493,12 +150566,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - workflow: *874 + workflow: *875 workflow_run: title: Deployment Workflow Run type: @@ -151189,7 +151262,7 @@ webhooks: type: string enum: - answered - answer: &877 + answer: &878 type: object properties: author_association: @@ -151349,11 +151422,11 @@ webhooks: - created_at - updated_at - body - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -151480,11 +151553,11 @@ webhooks: - from required: - category - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -151567,11 +151640,11 @@ webhooks: type: string enum: - closed - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -151653,7 +151726,7 @@ webhooks: type: string enum: - created - comment: &876 + comment: &877 type: object properties: author_association: @@ -151813,11 +151886,11 @@ webhooks: - updated_at - body - reactions - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -151900,12 +151973,12 @@ webhooks: type: string enum: - deleted - comment: *876 - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + comment: *877 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152000,12 +152073,12 @@ webhooks: - from required: - body - comment: *876 - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + comment: *877 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152089,11 +152162,11 @@ webhooks: type: string enum: - created - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152175,11 +152248,11 @@ webhooks: type: string enum: - deleted - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152279,11 +152352,11 @@ webhooks: type: string required: - from - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152365,10 +152438,10 @@ webhooks: type: string enum: - labeled - discussion: *875 - enterprise: *857 - installation: *858 - label: &878 + discussion: *876 + enterprise: *858 + installation: *859 + label: &879 title: Label type: object properties: @@ -152401,8 +152474,8 @@ webhooks: - color - default - description - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152485,11 +152558,11 @@ webhooks: type: string enum: - locked - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152571,11 +152644,11 @@ webhooks: type: string enum: - pinned - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152657,11 +152730,11 @@ webhooks: type: string enum: - reopened - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152746,16 +152819,16 @@ webhooks: changes: type: object properties: - new_discussion: *875 - new_repository: *860 + new_discussion: *876 + new_repository: *861 required: - new_discussion - new_repository - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152838,10 +152911,10 @@ webhooks: type: string enum: - unanswered - discussion: *875 - old_answer: *877 - organization: *859 - repository: *860 + discussion: *876 + old_answer: *878 + organization: *860 + repository: *861 sender: *4 required: - action @@ -152923,12 +152996,12 @@ webhooks: type: string enum: - unlabeled - discussion: *875 - enterprise: *857 - installation: *858 - label: *878 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153011,11 +153084,11 @@ webhooks: type: string enum: - unlocked - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153097,11 +153170,11 @@ webhooks: type: string enum: - unpinned - discussion: *875 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + discussion: *876 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -153170,7 +153243,7 @@ webhooks: required: true content: application/json: - schema: *879 + schema: *880 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153233,7 +153306,7 @@ webhooks: required: true content: application/json: - schema: *880 + schema: *881 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153296,7 +153369,7 @@ webhooks: required: true content: application/json: - schema: *881 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153359,7 +153432,7 @@ webhooks: required: true content: application/json: - schema: *879 + schema: *880 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153422,7 +153495,7 @@ webhooks: required: true content: application/json: - schema: *880 + schema: *881 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153488,7 +153561,7 @@ webhooks: required: true content: application/json: - schema: *881 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153554,7 +153627,7 @@ webhooks: required: true content: application/json: - schema: *882 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153620,7 +153693,7 @@ webhooks: required: true content: application/json: - schema: *879 + schema: *880 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153686,7 +153759,7 @@ webhooks: required: true content: application/json: - schema: *883 + schema: *884 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153752,7 +153825,7 @@ webhooks: required: true content: application/json: - schema: *880 + schema: *881 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153817,7 +153890,7 @@ webhooks: required: true content: application/json: - schema: *881 + schema: *882 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153882,7 +153955,7 @@ webhooks: required: true content: application/json: - schema: *882 + schema: *883 responses: '200': description: Return a 200 status to indicate that the data was received @@ -153947,7 +154020,7 @@ webhooks: required: true content: application/json: - schema: *879 + schema: *880 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154012,7 +154085,7 @@ webhooks: required: true content: application/json: - schema: *883 + schema: *884 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154078,7 +154151,7 @@ webhooks: required: true content: application/json: - schema: *880 + schema: *881 responses: '200': description: Return a 200 status to indicate that the data was received @@ -154145,7 +154218,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *857 + enterprise: *858 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -154823,9 +154896,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - forkee @@ -154971,9 +155044,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pages: description: The pages that were updated. type: array @@ -155011,7 +155084,7 @@ webhooks: - action - sha - html_url - repository: *860 + repository: *861 sender: *4 required: - pages @@ -155087,10 +155160,10 @@ webhooks: type: string enum: - created - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories: &885 + organization: *860 + repositories: &886 description: An array of repository objects that the installation can access. type: array @@ -155116,8 +155189,8 @@ webhooks: - name - full_name - private - repository: *860 - requester: *884 + repository: *861 + requester: *885 sender: *4 required: - action @@ -155192,11 +155265,11 @@ webhooks: type: string enum: - deleted - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories: *885 - repository: *860 + organization: *860 + repositories: *886 + repository: *861 requester: type: - 'null' @@ -155273,11 +155346,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories: *885 - repository: *860 + organization: *860 + repositories: *886 + repository: *861 requester: type: - 'null' @@ -155354,10 +155427,10 @@ webhooks: type: string enum: - added - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories_added: &886 + organization: *860 + repositories_added: &887 description: An array of repository objects, which were added to the installation. type: array @@ -155403,15 +155476,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *860 - repository_selection: &887 + repository: *861 + repository_selection: &888 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *884 + requester: *885 sender: *4 required: - action @@ -155490,10 +155563,10 @@ webhooks: type: string enum: - removed - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories_added: *886 + organization: *860 + repositories_added: *887 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -155520,9 +155593,9 @@ webhooks: - name - full_name - private - repository: *860 - repository_selection: *887 - requester: *884 + repository: *861 + repository_selection: *888 + requester: *885 sender: *4 required: - action @@ -155601,11 +155674,11 @@ webhooks: type: string enum: - suspend - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories: *885 - repository: *860 + organization: *860 + repositories: *886 + repository: *861 requester: type: - 'null' @@ -155788,10 +155861,10 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 target_type: type: string @@ -155870,11 +155943,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *857 + enterprise: *858 installation: *20 - organization: *859 - repositories: *885 - repository: *860 + organization: *860 + repositories: *886 + repository: *861 requester: type: - 'null' @@ -156126,8 +156199,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -156939,8 +157012,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157301,8 +157374,8 @@ webhooks: - state - locked - assignee - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -157382,7 +157455,7 @@ webhooks: type: string enum: - deleted - comment: &888 + comment: &889 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -157553,8 +157626,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -158362,8 +158435,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158726,8 +158799,8 @@ webhooks: - state - locked - assignee - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -158807,7 +158880,7 @@ webhooks: type: string enum: - edited - changes: &912 + changes: &913 description: The changes to the comment. type: object properties: @@ -158819,9 +158892,9 @@ webhooks: type: string required: - from - comment: *888 - enterprise: *857 - installation: *858 + comment: *889 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -159632,8 +159705,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159994,8 +160067,8 @@ webhooks: - state - locked - assignee - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -160076,9 +160149,9 @@ webhooks: type: string enum: - pinned - comment: *888 - enterprise: *857 - installation: *858 + comment: *889 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -160891,8 +160964,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161255,8 +161328,8 @@ webhooks: - state - locked - assignee - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -161336,9 +161409,9 @@ webhooks: type: string enum: - unpinned - comment: *888 - enterprise: *857 - installation: *858 + comment: *889 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -162151,8 +162224,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162515,8 +162588,8 @@ webhooks: - state - locked - assignee - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -162605,9 +162678,9 @@ webhooks: type: number blocking_issue: *219 blocking_issue_repo: *78 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -162696,9 +162769,9 @@ webhooks: type: number blocking_issue: *219 blocking_issue_repo: *78 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -162786,9 +162859,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *219 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -162877,9 +162950,9 @@ webhooks: description: The ID of the blocking issue. type: number blocking_issue: *219 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -162959,10 +163032,10 @@ webhooks: type: string enum: - assigned - assignee: *884 - enterprise: *857 - installation: *858 - issue: &889 + assignee: *885 + enterprise: *858 + installation: *859 + issue: &890 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -163773,8 +163846,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -163897,8 +163970,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -163978,8 +164051,8 @@ webhooks: type: string enum: - closed - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -164795,8 +164868,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -165062,8 +165135,8 @@ webhooks: required: - state - closed_at - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -165142,8 +165215,8 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -165950,8 +166023,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -166073,8 +166146,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -166153,8 +166226,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -166984,8 +167057,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -167086,7 +167159,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &890 + milestone: &891 title: Milestone description: A collection of related issues and pull requests. type: object @@ -167229,8 +167302,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -167329,8 +167402,8 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -168141,8 +168214,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -168265,9 +168338,9 @@ webhooks: - active_lock_reason - body - reactions - label: *878 - organization: *859 - repository: *860 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168347,9 +168420,9 @@ webhooks: type: string enum: - field_added - enterprise: *857 - installation: *858 - issue: *889 + enterprise: *858 + installation: *859 + issue: *890 issue_field: type: object description: The issue field whose value was set or updated on the @@ -168468,8 +168541,8 @@ webhooks: - id required: - from - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168549,9 +168622,9 @@ webhooks: type: string enum: - field_removed - enterprise: *857 - installation: *858 - issue: *889 + enterprise: *858 + installation: *859 + issue: *890 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -168614,8 +168687,8 @@ webhooks: - 'null' required: - id - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -168695,8 +168768,8 @@ webhooks: type: string enum: - labeled - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -169506,8 +169579,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -169630,9 +169703,9 @@ webhooks: - active_lock_reason - body - reactions - label: *878 - organization: *859 - repository: *860 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -169712,8 +169785,8 @@ webhooks: type: string enum: - locked - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170548,8 +170621,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -170649,8 +170722,8 @@ webhooks: format: uri user_view_type: type: string - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -170729,8 +170802,8 @@ webhooks: type: string enum: - milestoned - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -171559,8 +171632,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -171660,9 +171733,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *890 - organization: *859 - repository: *860 + milestone: *891 + organization: *860 + repository: *861 sender: *4 required: - action @@ -172549,8 +172622,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -173145,8 +173218,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -173953,8 +174026,8 @@ webhooks: repository_url: type: string format: uri - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -174080,8 +174153,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -174161,9 +174234,9 @@ webhooks: type: string enum: - pinned - enterprise: *857 - installation: *858 - issue: &891 + enterprise: *858 + installation: *859 + issue: &892 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -174968,8 +175041,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -175091,8 +175164,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -175171,8 +175244,8 @@ webhooks: type: string enum: - reopened - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -176005,8 +176078,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -176107,8 +176180,8 @@ webhooks: user_view_type: type: string type: *387 - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -176996,8 +177069,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -177610,11 +177683,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *857 - installation: *858 - issue: *891 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + issue: *892 + organization: *860 + repository: *861 sender: *4 required: - action @@ -177694,12 +177767,12 @@ webhooks: type: string enum: - typed - enterprise: *857 - installation: *858 - issue: *889 + enterprise: *858 + installation: *859 + issue: *890 type: *387 - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -177780,7 +177853,7 @@ webhooks: type: string enum: - unassigned - assignee: &915 + assignee: &916 title: User type: - object @@ -177852,11 +177925,11 @@ webhooks: required: - login - id - enterprise: *857 - installation: *858 - issue: *889 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + issue: *890 + organization: *860 + repository: *861 sender: *4 required: - action @@ -177935,12 +178008,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *857 - installation: *858 - issue: *889 - label: *878 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + issue: *890 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -178020,8 +178093,8 @@ webhooks: type: string enum: - unlocked - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -178854,8 +178927,8 @@ webhooks: anyOf: - type: 'null' - *220 - sub_issues_summary: *797 - issue_dependencies_summary: *798 + sub_issues_summary: *798 + issue_dependencies_summary: *799 issue_field_values: type: array items: *667 @@ -178955,8 +179028,8 @@ webhooks: format: uri user_view_type: type: string - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -179036,11 +179109,11 @@ webhooks: type: string enum: - unpinned - enterprise: *857 - installation: *858 - issue: *891 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + issue: *892 + organization: *860 + repository: *861 sender: *4 required: - action @@ -179119,12 +179192,12 @@ webhooks: type: string enum: - untyped - enterprise: *857 - installation: *858 - issue: *889 + enterprise: *858 + installation: *859 + issue: *890 type: *387 - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -179204,11 +179277,11 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - label: *878 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -179286,11 +179359,11 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - label: *878 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -179400,11 +179473,11 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - label: *878 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + label: *879 + organization: *860 + repository: *861 sender: *4 required: - action @@ -179486,9 +179559,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *857 - installation: *858 - marketplace_purchase: &892 + enterprise: *858 + installation: *859 + marketplace_purchase: &893 title: Marketplace Purchase type: object required: @@ -179576,8 +179649,8 @@ webhooks: type: integer unit_count: type: integer - organization: *859 - previous_marketplace_purchase: &893 + organization: *860 + previous_marketplace_purchase: &894 title: Marketplace Purchase type: object properties: @@ -179661,7 +179734,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *860 + repository: *861 sender: *4 required: - action @@ -179741,10 +179814,10 @@ webhooks: - changed effective_date: type: string - enterprise: *857 - installation: *858 - marketplace_purchase: *892 - organization: *859 + enterprise: *858 + installation: *859 + marketplace_purchase: *893 + organization: *860 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -179832,7 +179905,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *860 + repository: *861 sender: *4 required: - action @@ -179914,10 +179987,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *857 - installation: *858 - marketplace_purchase: *892 - organization: *859 + enterprise: *858 + installation: *859 + marketplace_purchase: *893 + organization: *860 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -180003,7 +180076,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *860 + repository: *861 sender: *4 required: - action @@ -180084,8 +180157,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 marketplace_purchase: title: Marketplace Purchase type: object @@ -180171,9 +180244,9 @@ webhooks: type: integer unit_count: type: integer - organization: *859 - previous_marketplace_purchase: *893 - repository: *860 + organization: *860 + previous_marketplace_purchase: *894 + repository: *861 sender: *4 required: - action @@ -180253,12 +180326,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *857 - installation: *858 - marketplace_purchase: *892 - organization: *859 - previous_marketplace_purchase: *893 - repository: *860 + enterprise: *858 + installation: *859 + marketplace_purchase: *893 + organization: *860 + previous_marketplace_purchase: *894 + repository: *861 sender: *4 required: - action @@ -180360,11 +180433,11 @@ webhooks: type: string required: - to - enterprise: *857 - installation: *858 - member: *884 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + member: *885 + organization: *860 + repository: *861 sender: *4 required: - action @@ -180466,11 +180539,11 @@ webhooks: type: - string - 'null' - enterprise: *857 - installation: *858 - member: *884 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + member: *885 + organization: *860 + repository: *861 sender: *4 required: - action @@ -180549,11 +180622,11 @@ webhooks: type: string enum: - removed - enterprise: *857 - installation: *858 - member: *884 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + member: *885 + organization: *860 + repository: *861 sender: *4 required: - action @@ -180631,11 +180704,11 @@ webhooks: type: string enum: - added - enterprise: *857 - installation: *858 - member: *884 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + member: *885 + organization: *860 + repository: *861 scope: description: The scope of the membership. Currently, can only be `team`. @@ -180713,7 +180786,7 @@ webhooks: required: - login - id - team: &894 + team: &895 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -180943,11 +181016,11 @@ webhooks: type: string enum: - removed - enterprise: *857 - installation: *858 - member: *884 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + member: *885 + organization: *860 + repository: *861 scope: description: The scope of the membership. Currently, can only be `team`. @@ -181026,7 +181099,7 @@ webhooks: required: - login - id - team: *894 + team: *895 required: - action - scope @@ -181108,8 +181181,8 @@ webhooks: type: string enum: - checks_requested - installation: *858 - merge_group: &895 + installation: *859 + merge_group: &896 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -181135,8 +181208,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -181222,10 +181295,10 @@ webhooks: - merged - invalidated - dequeued - installation: *858 - merge_group: *895 - organization: *859 - repository: *860 + installation: *859 + merge_group: *896 + organization: *860 + repository: *861 sender: *4 required: - action @@ -181298,7 +181371,7 @@ webhooks: type: string enum: - deleted - enterprise: *857 + enterprise: *858 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -181407,12 +181480,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *858 - organization: *859 + installation: *859 + organization: *860 repository: anyOf: - type: 'null' - - *860 + - *861 sender: *4 required: - action @@ -181492,11 +181565,11 @@ webhooks: type: string enum: - closed - enterprise: *857 - installation: *858 - milestone: *890 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + milestone: *891 + organization: *860 + repository: *861 sender: *4 required: - action @@ -181575,9 +181648,9 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - milestone: &896 + enterprise: *858 + installation: *859 + milestone: &897 title: Milestone description: A collection of related issues and pull requests. type: object @@ -181719,8 +181792,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -181799,11 +181872,11 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - milestone: *890 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + milestone: *891 + organization: *860 + repository: *861 sender: *4 required: - action @@ -181913,11 +181986,11 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - milestone: *890 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + milestone: *891 + organization: *860 + repository: *861 sender: *4 required: - action @@ -181997,11 +182070,11 @@ webhooks: type: string enum: - opened - enterprise: *857 - installation: *858 - milestone: *896 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + milestone: *897 + organization: *860 + repository: *861 sender: *4 required: - action @@ -182080,11 +182153,11 @@ webhooks: type: string enum: - blocked - blocked_user: *884 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + blocked_user: *885 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -182163,11 +182236,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *884 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + blocked_user: *885 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -182243,7 +182316,7 @@ webhooks: enum: - created definition: *148 - enterprise: *857 + enterprise: *858 sender: *4 required: - action @@ -182323,8 +182396,8 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 sender: *4 required: - action @@ -182397,8 +182470,8 @@ webhooks: enum: - updated definition: *148 - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 sender: *4 required: - action @@ -182470,9 +182543,9 @@ webhooks: type: string enum: - updated - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 new_property_values: type: array @@ -182560,9 +182633,9 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - membership: &897 + enterprise: *858 + installation: *859 + membership: &898 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -182672,8 +182745,8 @@ webhooks: - role - organization_url - user - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 required: - action @@ -182751,11 +182824,11 @@ webhooks: type: string enum: - member_added - enterprise: *857 - installation: *858 - membership: *897 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + membership: *898 + organization: *860 + repository: *861 sender: *4 required: - action @@ -182834,8 +182907,8 @@ webhooks: type: string enum: - member_invited - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -182957,10 +183030,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 - user: *884 + user: *885 required: - action - invitation @@ -183038,11 +183111,11 @@ webhooks: type: string enum: - member_removed - enterprise: *857 - installation: *858 - membership: *897 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + membership: *898 + organization: *860 + repository: *861 sender: *4 required: - action @@ -183129,11 +183202,11 @@ webhooks: properties: from: type: string - enterprise: *857 - installation: *858 - membership: *897 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + membership: *898 + organization: *860 + repository: *861 sender: *4 required: - action @@ -183211,9 +183284,9 @@ webhooks: type: string enum: - published - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 package: description: Information about the package. type: object @@ -183736,7 +183809,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &898 + items: &899 title: Ruby Gems metadata type: object properties: @@ -183833,7 +183906,7 @@ webhooks: - owner - package_version - registry - repository: *860 + repository: *861 sender: *4 required: - action @@ -183910,9 +183983,9 @@ webhooks: type: string enum: - updated - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 package: description: Information about the package. type: object @@ -184274,7 +184347,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *898 + items: *899 source_url: type: string format: uri @@ -184345,7 +184418,7 @@ webhooks: - owner - package_version - registry - repository: *860 + repository: *861 sender: *4 required: - action @@ -184525,12 +184598,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *857 + enterprise: *858 id: type: integer - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - id @@ -184607,7 +184680,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &899 + personal_access_token_request: &900 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -184757,10 +184830,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *857 - organization: *859 + enterprise: *858 + organization: *860 sender: *4 - installation: *858 + installation: *859 required: - action - personal_access_token_request @@ -184837,11 +184910,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *899 - enterprise: *857 - organization: *859 + personal_access_token_request: *900 + enterprise: *858 + organization: *860 sender: *4 - installation: *858 + installation: *859 required: - action - personal_access_token_request @@ -184917,11 +184990,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *899 - enterprise: *857 - organization: *859 + personal_access_token_request: *900 + enterprise: *858 + organization: *860 sender: *4 - installation: *858 + installation: *859 required: - action - personal_access_token_request @@ -184996,11 +185069,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *899 - organization: *859 - enterprise: *857 + personal_access_token_request: *900 + organization: *860 + enterprise: *858 sender: *4 - installation: *858 + installation: *859 required: - action - personal_access_token_request @@ -185105,7 +185178,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *900 + last_response: *901 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -185137,8 +185210,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 zen: description: Random string of GitHub zen. @@ -185383,10 +185456,10 @@ webhooks: - from required: - note - enterprise: *857 - installation: *858 - organization: *859 - project_card: &901 + enterprise: *858 + installation: *859 + organization: *860 + project_card: &902 title: Project Card type: object properties: @@ -185509,7 +185582,7 @@ webhooks: - creator - created_at - updated_at - repository: *860 + repository: *861 sender: *4 required: - action @@ -185590,11 +185663,11 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - project_card: *901 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project_card: *902 + repository: *861 sender: *4 required: - action @@ -185674,9 +185747,9 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 project_card: title: Project Card type: object @@ -185806,7 +185879,7 @@ webhooks: repository: anyOf: - type: 'null' - - *860 + - *861 sender: *4 required: - action @@ -185900,11 +185973,11 @@ webhooks: - from required: - note - enterprise: *857 - installation: *858 - organization: *859 - project_card: *901 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project_card: *902 + repository: *861 sender: *4 required: - action @@ -185998,9 +186071,9 @@ webhooks: - from required: - column_id - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 project_card: allOf: - title: Project Card @@ -186197,7 +186270,7 @@ webhooks: type: string required: - after_id - repository: *860 + repository: *861 sender: *4 required: - action @@ -186277,10 +186350,10 @@ webhooks: type: string enum: - closed - enterprise: *857 - installation: *858 - organization: *859 - project: &903 + enterprise: *858 + installation: *859 + organization: *860 + project: &904 title: Project type: object properties: @@ -186407,7 +186480,7 @@ webhooks: - creator - created_at - updated_at - repository: *860 + repository: *861 sender: *4 required: - action @@ -186487,10 +186560,10 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - project_column: &902 + enterprise: *858 + installation: *859 + organization: *860 + project_column: &903 title: Project Column type: object properties: @@ -186530,7 +186603,7 @@ webhooks: - name - created_at - updated_at - repository: *860 + repository: *861 sender: *4 required: - action @@ -186609,14 +186682,14 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - project_column: *902 + enterprise: *858 + installation: *859 + organization: *860 + project_column: *903 repository: anyOf: - type: 'null' - - *860 + - *861 sender: *4 required: - action @@ -186705,11 +186778,11 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - organization: *859 - project_column: *902 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project_column: *903 + repository: *861 sender: *4 required: - action @@ -186789,11 +186862,11 @@ webhooks: type: string enum: - moved - enterprise: *857 - installation: *858 - organization: *859 - project_column: *902 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project_column: *903 + repository: *861 sender: *4 required: - action @@ -186873,11 +186946,11 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - project: *903 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project: *904 + repository: *861 sender: *4 required: - action @@ -186957,14 +187030,14 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - project: *903 + enterprise: *858 + installation: *859 + organization: *860 + project: *904 repository: anyOf: - type: 'null' - - *860 + - *861 sender: *4 required: - action @@ -187065,11 +187138,11 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - organization: *859 - project: *903 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project: *904 + repository: *861 sender: *4 required: - action @@ -187148,11 +187221,11 @@ webhooks: type: string enum: - reopened - enterprise: *857 - installation: *858 - organization: *859 - project: *903 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + project: *904 + repository: *861 sender: *4 required: - action @@ -187233,8 +187306,8 @@ webhooks: type: string enum: - closed - installation: *858 - organization: *859 + installation: *859 + organization: *860 projects_v2: *418 sender: *4 required: @@ -187316,8 +187389,8 @@ webhooks: type: string enum: - created - installation: *858 - organization: *859 + installation: *859 + organization: *860 projects_v2: *418 sender: *4 required: @@ -187399,8 +187472,8 @@ webhooks: type: string enum: - deleted - installation: *858 - organization: *859 + installation: *859 + organization: *860 projects_v2: *418 sender: *4 required: @@ -187522,8 +187595,8 @@ webhooks: type: string to: type: string - installation: *858 - organization: *859 + installation: *859 + organization: *860 projects_v2: *418 sender: *4 required: @@ -187607,7 +187680,7 @@ webhooks: type: string enum: - archived - changes: &907 + changes: &908 type: object properties: archived_at: @@ -187623,9 +187696,9 @@ webhooks: - string - 'null' format: date-time - installation: *858 - organization: *859 - projects_v2_item: &904 + installation: *859 + organization: *860 + projects_v2_item: &905 title: Projects v2 Item description: An item belonging to a project type: object @@ -187765,9 +187838,9 @@ webhooks: - 'null' to: type: string - installation: *858 - organization: *859 - projects_v2_item: *904 + installation: *859 + organization: *860 + projects_v2_item: *905 sender: *4 required: - action @@ -187849,9 +187922,9 @@ webhooks: type: string enum: - created - installation: *858 - organization: *859 - projects_v2_item: *904 + installation: *859 + organization: *860 + projects_v2_item: *905 sender: *4 required: - action @@ -187932,9 +188005,9 @@ webhooks: type: string enum: - deleted - installation: *858 - organization: *859 - projects_v2_item: *904 + installation: *859 + organization: *860 + projects_v2_item: *905 sender: *4 required: - action @@ -188039,7 +188112,7 @@ webhooks: oneOf: - type: string - type: integer - - &905 + - &906 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -188063,7 +188136,7 @@ webhooks: required: - id - name - - &906 + - &907 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -188103,8 +188176,8 @@ webhooks: oneOf: - type: string - type: integer - - *905 - *906 + - *907 type: - 'null' - string @@ -188127,9 +188200,9 @@ webhooks: - 'null' required: - body - installation: *858 - organization: *859 - projects_v2_item: *904 + installation: *859 + organization: *860 + projects_v2_item: *905 sender: *4 required: - action @@ -188226,9 +188299,9 @@ webhooks: type: - string - 'null' - installation: *858 - organization: *859 - projects_v2_item: *904 + installation: *859 + organization: *860 + projects_v2_item: *905 sender: *4 required: - action @@ -188311,10 +188384,10 @@ webhooks: type: string enum: - restored - changes: *907 - installation: *858 - organization: *859 - projects_v2_item: *904 + changes: *908 + installation: *859 + organization: *860 + projects_v2_item: *905 sender: *4 required: - action @@ -188396,8 +188469,8 @@ webhooks: type: string enum: - reopened - installation: *858 - organization: *859 + installation: *859 + organization: *860 projects_v2: *418 sender: *4 required: @@ -188479,9 +188552,9 @@ webhooks: type: string enum: - created - installation: *858 - organization: *859 - projects_v2_status_update: *908 + installation: *859 + organization: *860 + projects_v2_status_update: *909 sender: *4 required: - action @@ -188562,9 +188635,9 @@ webhooks: type: string enum: - deleted - installation: *858 - organization: *859 - projects_v2_status_update: *908 + installation: *859 + organization: *860 + projects_v2_status_update: *909 sender: *4 required: - action @@ -188710,9 +188783,9 @@ webhooks: - string - 'null' format: date - installation: *858 - organization: *859 - projects_v2_status_update: *908 + installation: *859 + organization: *860 + projects_v2_status_update: *909 sender: *4 required: - action @@ -188783,10 +188856,10 @@ webhooks: title: public event type: object properties: - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - repository @@ -188863,13 +188936,13 @@ webhooks: type: string enum: - assigned - assignee: *884 - enterprise: *857 - installation: *858 - number: &909 + assignee: *885 + enterprise: *858 + installation: *859 + number: &910 description: The pull request number. type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -191221,7 +191294,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -191303,11 +191376,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -193652,7 +193725,7 @@ webhooks: - draft reason: type: string - repository: *860 + repository: *861 sender: *4 required: - action @@ -193734,11 +193807,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -196083,7 +196156,7 @@ webhooks: - draft reason: type: string - repository: *860 + repository: *861 sender: *4 required: - action @@ -196165,11 +196238,11 @@ webhooks: type: string enum: - closed - enterprise: *857 - installation: *858 - number: *909 - organization: *859 - pull_request: &910 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 + pull_request: &911 allOf: - *706 - type: object @@ -196233,7 +196306,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *860 + repository: *861 sender: *4 required: - action @@ -196314,12 +196387,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *857 - installation: *858 - number: *909 - organization: *859 - pull_request: *910 - repository: *860 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 + pull_request: *911 + repository: *861 sender: *4 required: - action @@ -196399,11 +196472,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *857 + enterprise: *858 milestone: *421 - number: *909 - organization: *859 - pull_request: &911 + number: *910 + organization: *860 + pull_request: &912 title: Pull Request type: object properties: @@ -198747,7 +198820,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -198826,11 +198899,11 @@ webhooks: type: string enum: - dequeued - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -201193,7 +201266,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *860 + repository: *861 sender: *4 required: - action @@ -201317,12 +201390,12 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - number: *909 - organization: *859 - pull_request: *910 - repository: *860 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 + pull_request: *911 + repository: *861 sender: *4 required: - action @@ -201402,11 +201475,11 @@ webhooks: type: string enum: - enqueued - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -203754,7 +203827,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -203834,11 +203907,11 @@ webhooks: type: string enum: - labeled - enterprise: *857 - installation: *858 - label: *878 - number: *909 - organization: *859 + enterprise: *858 + installation: *859 + label: *879 + number: *910 + organization: *860 pull_request: title: Pull Request type: object @@ -206189,7 +206262,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -206270,10 +206343,10 @@ webhooks: type: string enum: - locked - enterprise: *857 - installation: *858 - number: *909 - organization: *859 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 pull_request: title: Pull Request type: object @@ -208622,7 +208695,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -208702,12 +208775,12 @@ webhooks: type: string enum: - milestoned - enterprise: *857 + enterprise: *858 milestone: *421 - number: *909 - organization: *859 - pull_request: *911 - repository: *860 + number: *910 + organization: *860 + pull_request: *912 + repository: *861 sender: *4 required: - action @@ -208786,12 +208859,12 @@ webhooks: type: string enum: - opened - enterprise: *857 - installation: *858 - number: *909 - organization: *859 - pull_request: *910 - repository: *860 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 + pull_request: *911 + repository: *861 sender: *4 required: - action @@ -208872,12 +208945,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *857 - installation: *858 - number: *909 - organization: *859 - pull_request: *910 - repository: *860 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 + pull_request: *911 + repository: *861 sender: *4 required: - action @@ -208957,12 +209030,12 @@ webhooks: type: string enum: - reopened - enterprise: *857 - installation: *858 - number: *909 - organization: *859 - pull_request: *910 - repository: *860 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 + pull_request: *911 + repository: *861 sender: *4 required: - action @@ -209337,9 +209410,9 @@ webhooks: - start_side - side - reactions - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: type: object properties: @@ -211572,7 +211645,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *860 + repository: *861 sender: *4 required: - action @@ -211652,7 +211725,7 @@ webhooks: type: string enum: - deleted - comment: &913 + comment: &914 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. @@ -211945,9 +212018,9 @@ webhooks: - start_side - side - reactions - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: type: object properties: @@ -214168,7 +214241,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *860 + repository: *861 sender: *4 required: - action @@ -214248,11 +214321,11 @@ webhooks: type: string enum: - edited - changes: *912 - comment: *913 - enterprise: *857 - installation: *858 - organization: *859 + changes: *913 + comment: *914 + enterprise: *858 + installation: *859 + organization: *860 pull_request: type: object properties: @@ -216476,7 +216549,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *860 + repository: *861 sender: *4 required: - action @@ -216557,9 +216630,9 @@ webhooks: type: string enum: - dismissed - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -218795,7 +218868,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *860 + repository: *861 review: description: The review that was affected. type: object @@ -219046,9 +219119,9 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -221157,8 +221230,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *860 - review: &914 + repository: *861 + review: &915 description: The review that was affected. type: object properties: @@ -221396,12 +221469,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -223751,7 +223824,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 requested_reviewer: title: User type: @@ -223837,12 +223910,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -226199,7 +226272,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 requested_team: title: Team description: Groups of organization members that gives permissions @@ -226394,12 +226467,12 @@ webhooks: type: string enum: - review_requested - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -228751,7 +228824,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 requested_reviewer: title: User type: @@ -228838,12 +228911,12 @@ webhooks: type: string enum: - review_requested - enterprise: *857 - installation: *858 + enterprise: *858 + installation: *859 number: description: The pull request number. type: integer - organization: *859 + organization: *860 pull_request: title: Pull Request type: object @@ -231186,7 +231259,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 requested_team: title: Team description: Groups of organization members that gives permissions @@ -231370,9 +231443,9 @@ webhooks: type: string enum: - submitted - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -233611,8 +233684,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *860 - review: *914 + repository: *861 + review: *915 sender: *4 required: - action @@ -233692,9 +233765,9 @@ webhooks: type: string enum: - resolved - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -235842,7 +235915,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *860 + repository: *861 sender: *4 thread: type: object @@ -236239,9 +236312,9 @@ webhooks: type: string enum: - unresolved - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 pull_request: title: Simple Pull Request type: object @@ -238372,7 +238445,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *860 + repository: *861 sender: *4 thread: type: object @@ -238771,10 +238844,10 @@ webhooks: type: string before: type: string - enterprise: *857 - installation: *858 - number: *909 - organization: *859 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 pull_request: title: Pull Request type: object @@ -241112,7 +241185,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -241194,11 +241267,11 @@ webhooks: type: string enum: - unassigned - assignee: *915 - enterprise: *857 - installation: *858 - number: *909 - organization: *859 + assignee: *916 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 pull_request: title: Pull Request type: object @@ -243551,7 +243624,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -243630,11 +243703,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *857 - installation: *858 - label: *878 - number: *909 - organization: *859 + enterprise: *858 + installation: *859 + label: *879 + number: *910 + organization: *860 pull_request: title: Pull Request type: object @@ -245976,7 +246049,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -246057,10 +246130,10 @@ webhooks: type: string enum: - unlocked - enterprise: *857 - installation: *858 - number: *909 - organization: *859 + enterprise: *858 + installation: *859 + number: *910 + organization: *860 pull_request: title: Pull Request type: object @@ -248392,7 +248465,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *860 + repository: *861 sender: *4 required: - action @@ -248595,7 +248668,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *857 + enterprise: *858 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -248690,8 +248763,8 @@ webhooks: - url - author - committer - installation: *858 - organization: *859 + installation: *859 + organization: *860 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -249290,9 +249363,9 @@ webhooks: type: string enum: - published - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 registry_package: type: object properties: @@ -249769,7 +249842,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *898 + items: *899 summary: type: string tag_name: @@ -249825,7 +249898,7 @@ webhooks: - owner - package_version - registry - repository: *860 + repository: *861 sender: *4 required: - action @@ -249903,9 +249976,9 @@ webhooks: type: string enum: - updated - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 registry_package: type: object properties: @@ -250217,7 +250290,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *898 + items: *899 summary: type: string tag_name: @@ -250267,7 +250340,7 @@ webhooks: - owner - package_version - registry - repository: *860 + repository: *861 sender: *4 required: - action @@ -250344,10 +250417,10 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - release: &916 + enterprise: *858 + installation: *859 + organization: *860 + release: &917 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -250678,7 +250751,7 @@ webhooks: - updated_at - zipball_url - body - repository: *860 + repository: *861 sender: *4 required: - action @@ -250755,11 +250828,11 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - release: *916 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + release: *917 + repository: *861 sender: *4 required: - action @@ -250876,11 +250949,11 @@ webhooks: type: boolean required: - to - enterprise: *857 - installation: *858 - organization: *859 - release: *916 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + release: *917 + repository: *861 sender: *4 required: - action @@ -250958,9 +251031,9 @@ webhooks: type: string enum: - prereleased - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -251296,7 +251369,7 @@ webhooks: - string - 'null' format: uri - repository: *860 + repository: *861 sender: *4 required: - action @@ -251372,10 +251445,10 @@ webhooks: type: string enum: - published - enterprise: *857 - installation: *858 - organization: *859 - release: &917 + enterprise: *858 + installation: *859 + organization: *860 + release: &918 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -251708,7 +251781,7 @@ webhooks: - string - 'null' format: uri - repository: *860 + repository: *861 sender: *4 required: - action @@ -251784,11 +251857,11 @@ webhooks: type: string enum: - released - enterprise: *857 - installation: *858 - organization: *859 - release: *916 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + release: *917 + repository: *861 sender: *4 required: - action @@ -251864,11 +251937,11 @@ webhooks: type: string enum: - unpublished - enterprise: *857 - installation: *858 - organization: *859 - release: *917 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + release: *918 + repository: *861 sender: *4 required: - action @@ -251944,11 +252017,11 @@ webhooks: type: string enum: - published - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - repository_advisory: *758 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + repository_advisory: *759 sender: *4 required: - action @@ -252024,11 +252097,11 @@ webhooks: type: string enum: - reported - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - repository_advisory: *758 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + repository_advisory: *759 sender: *4 required: - action @@ -252104,10 +252177,10 @@ webhooks: type: string enum: - archived - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -252184,10 +252257,10 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -252265,10 +252338,10 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -252353,10 +252426,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -252471,10 +252544,10 @@ webhooks: - 'null' items: type: string - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -252546,10 +252619,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 status: type: string @@ -252630,10 +252703,10 @@ webhooks: type: string enum: - privatized - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -252710,10 +252783,10 @@ webhooks: type: string enum: - publicized - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -252807,10 +252880,10 @@ webhooks: - name required: - repository - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -252890,10 +252963,10 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_ruleset: *187 sender: *4 required: @@ -252972,10 +253045,10 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_ruleset: *187 sender: *4 required: @@ -253054,10 +253127,10 @@ webhooks: type: string enum: - edited - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 repository_ruleset: *187 changes: type: object @@ -253365,10 +253438,10 @@ webhooks: - from required: - owner - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -253446,10 +253519,10 @@ webhooks: type: string enum: - unarchived - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -253527,7 +253600,7 @@ webhooks: type: string enum: - create - alert: &918 + alert: &919 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -253652,10 +253725,10 @@ webhooks: enum: - auto_dismissed - open - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -253865,10 +253938,10 @@ webhooks: type: string enum: - dismissed - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -253946,11 +254019,11 @@ webhooks: type: string enum: - reopen - alert: *918 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + alert: *919 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -254152,10 +254225,10 @@ webhooks: enum: - fixed - open - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -254233,7 +254306,7 @@ webhooks: type: string enum: - assigned - alert: &919 + alert: &920 type: object properties: number: *127 @@ -254373,10 +254446,10 @@ webhooks: - type: 'null' - *4 assignee: *4 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -254454,11 +254527,11 @@ webhooks: type: string enum: - created - alert: *919 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + alert: *920 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -254539,11 +254612,11 @@ webhooks: type: string enum: - created - alert: *919 - installation: *858 - location: *920 - organization: *859 - repository: *860 + alert: *920 + installation: *859 + location: *921 + organization: *860 + repository: *861 sender: *4 required: - location @@ -254781,11 +254854,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *919 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + alert: *920 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -254863,11 +254936,11 @@ webhooks: type: string enum: - reopened - alert: *919 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + alert: *920 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -254945,11 +255018,11 @@ webhooks: type: string enum: - resolved - alert: *919 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + alert: *920 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -255027,12 +255100,12 @@ webhooks: type: string enum: - unassigned - alert: *919 + alert: *920 assignee: *4 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -255110,11 +255183,11 @@ webhooks: type: string enum: - validated - alert: *919 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + alert: *920 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -255244,10 +255317,10 @@ webhooks: - organization - enterprise - - repository: *860 - enterprise: *857 - installation: *858 - organization: *859 + repository: *861 + enterprise: *858 + installation: *859 + organization: *860 sender: *4 required: - action @@ -255325,11 +255398,11 @@ webhooks: type: string enum: - published - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - security_advisory: &921 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + security_advisory: &922 description: The details of the security advisory, including summary, description, and severity. type: object @@ -255502,11 +255575,11 @@ webhooks: type: string enum: - updated - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 - security_advisory: *921 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 + security_advisory: *922 sender: *4 required: - action @@ -255579,10 +255652,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -255756,9 +255829,9 @@ webhooks: type: object properties: security_and_analysis: *432 - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 repository: *478 sender: *4 required: @@ -255837,12 +255910,12 @@ webhooks: type: string enum: - cancelled - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: &922 + sponsorship: &923 type: object properties: created_at: @@ -256147,12 +256220,12 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *922 + sponsorship: *923 required: - action - sponsorship @@ -256240,12 +256313,12 @@ webhooks: type: string required: - from - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *922 + sponsorship: *923 required: - action - changes @@ -256322,17 +256395,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &923 + effective_date: &924 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: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *922 + sponsorship: *923 required: - action - sponsorship @@ -256406,7 +256479,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &924 + changes: &925 type: object properties: tier: @@ -256450,13 +256523,13 @@ webhooks: - from required: - tier - effective_date: *923 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + effective_date: *924 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *922 + sponsorship: *923 required: - action - changes @@ -256533,13 +256606,13 @@ webhooks: type: string enum: - tier_changed - changes: *924 - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + changes: *925 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - sponsorship: *922 + sponsorship: *923 required: - action - changes @@ -256613,10 +256686,10 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -256700,10 +256773,10 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -257137,15 +257210,15 @@ webhooks: type: - string - 'null' - enterprise: *857 + enterprise: *858 id: description: The unique identifier of the status. type: integer - installation: *858 + installation: *859 name: type: string - organization: *859 - repository: *860 + organization: *860 + repository: *861 sender: *4 sha: description: The Commit SHA. @@ -257261,9 +257334,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *219 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -257352,9 +257425,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *219 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -257443,9 +257516,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *219 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -257534,9 +257607,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *219 - installation: *858 - organization: *859 - repository: *860 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -257612,12 +257685,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 - team: &925 + team: &926 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -257847,9 +257920,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -258319,7 +258392,7 @@ webhooks: - topics - visibility sender: *4 - team: *925 + team: *926 required: - action - team @@ -258395,9 +258468,9 @@ webhooks: type: string enum: - created - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -258867,7 +258940,7 @@ webhooks: - topics - visibility sender: *4 - team: *925 + team: *926 required: - action - team @@ -258944,9 +259017,9 @@ webhooks: type: string enum: - deleted - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -259416,7 +259489,7 @@ webhooks: - topics - visibility sender: *4 - team: *925 + team: *926 required: - action - team @@ -259560,9 +259633,9 @@ webhooks: - from required: - permissions - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -260032,7 +260105,7 @@ webhooks: - topics - visibility sender: *4 - team: *925 + team: *926 required: - action - changes @@ -260110,9 +260183,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *857 - installation: *858 - organization: *859 + enterprise: *858 + installation: *859 + organization: *860 repository: title: Repository description: A git repository @@ -260582,7 +260655,7 @@ webhooks: - topics - visibility sender: *4 - team: *925 + team: *926 required: - action - team @@ -260658,10 +260731,10 @@ webhooks: type: string enum: - started - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 required: - action @@ -260734,17 +260807,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *857 + enterprise: *858 inputs: type: - object - 'null' additionalProperties: true - installation: *858 - organization: *859 + installation: *859 + organization: *860 ref: type: string - repository: *860 + repository: *861 sender: *4 workflow: type: string @@ -260826,10 +260899,10 @@ webhooks: type: string enum: - completed - enterprise: *857 - installation: *858 - organization: *859 - repository: *860 + enterprise: *858 + installation: *859 + organization: *860 + repository: *861 sender: *4 workflow_job: allOf: @@ -261164,10 +261237,10 @@ webhooks: type: string enum: - in_progress - enterprise: *857 - installation: *858 - organization: *859 - {"code":"deadline_exceeded","msg":"operation timed out"}