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..b24212f43 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" }, @@ -71486,6 +71489,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -124666,6 +124672,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": [ @@ -310828,6 +310844,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -310853,6 +310870,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -310967,6 +310985,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -339318,6 +339337,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..26a92a474 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: @@ -52394,6 +52398,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 +90764,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 @@ -229640,6 +229653,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -229656,6 +229670,7 @@ components: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -229729,6 +229744,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -254088,6 +254104,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..cfb19eedc 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" }, @@ -71397,6 +71400,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -124102,6 +124108,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": [ @@ -309987,6 +310003,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -310012,6 +310029,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -310126,6 +310144,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -338378,6 +338397,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..8a5f6cb6f 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: @@ -52319,6 +52323,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 +90345,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 @@ -228945,6 +228958,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -228961,6 +228975,7 @@ components: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -229034,6 +229049,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -253300,6 +253316,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..e07d43de3 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" }, @@ -71793,6 +71796,9 @@ { "$ref": "#/components/parameters/rule-suite-result" }, + { + "$ref": "#/components/parameters/evaluate-status" + }, { "$ref": "#/components/parameters/per-page" }, @@ -125418,6 +125424,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": [ @@ -312764,6 +312780,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -312789,6 +312806,7 @@ "status": "offline", "busy": false, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -312903,6 +312921,7 @@ "status": "online", "busy": true, "ephemeral": false, + "version": "2.323.0", "labels": [ { "id": 5, @@ -341430,6 +341449,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..9aed48018 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: @@ -52582,6 +52586,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 +91254,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 @@ -230890,6 +230903,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -230906,6 +230920,7 @@ components: status: offline busy: false ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -230979,6 +230994,7 @@ components: status: online busy: true ephemeral: false + version: 2.323.0 labels: - id: 5 name: self-hosted @@ -255426,6 +255442,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..59e75e1fd 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, @@ -636578,6 +636671,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..99b9fd61f 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. @@ -85888,7 +85919,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 +86988,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 +87422,7 @@ paths: type: array items: *532 examples: - default: &686 + default: &687 value: - id: 1 repository: @@ -101378,7 +101409,7 @@ paths: application/json: schema: *321 examples: - default: &609 + default: &610 value: id: 42 name: super cool ruleset @@ -101432,6 +101463,7 @@ paths: - *601 - *602 - *603 + - *604 - *17 - *19 responses: @@ -101439,9 +101471,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: *605 + default: *606 '404': *6 '500': *53 x-github: @@ -101464,15 +101496,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 +101555,7 @@ paths: application/json: schema: *321 examples: - default: *609 + default: *610 '404': *6 '500': *53 put: @@ -101606,7 +101638,7 @@ paths: application/json: schema: *321 examples: - default: *609 + default: *610 '404': *6 '422': *15 '500': *53 @@ -101668,7 +101700,7 @@ paths: type: array items: *324 examples: - default: *610 + default: *611 '404': *6 '500': *53 x-github: @@ -101706,7 +101738,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -101763,7 +101795,6 @@ paths: parameters: - *338 - *339 - - *612 - *613 - *614 - *615 @@ -101771,16 +101802,17 @@ paths: - *617 - *618 - *619 + - *620 - *60 - *19 - *17 - - *620 - *621 - *622 - *623 - *624 - *625 - *626 + - *627 responses: '200': description: Response @@ -101788,7 +101820,7 @@ paths: application/json: schema: type: array - items: &630 + items: &631 type: object properties: number: *178 @@ -101804,8 +101836,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 +101943,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 +102105,13 @@ paths: - *338 - *339 - *434 - - *625 + - *626 responses: '200': description: Response content: application/json: - schema: *630 + schema: *631 examples: default: value: @@ -102143,8 +102175,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 +102224,7 @@ paths: description: Response content: application/json: - schema: *630 + schema: *631 examples: default: value: @@ -102304,7 +102336,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &780 + items: &781 type: object properties: type: @@ -102331,7 +102363,6 @@ paths: - commit details: oneOf: - - *631 - *632 - *633 - *634 @@ -102344,6 +102375,7 @@ paths: - *641 - *642 - *643 + - *644 examples: default: value: @@ -102438,14 +102470,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 +102494,7 @@ paths: schema: type: object properties: - reason: *645 + reason: *646 expire_at: type: - string @@ -102525,7 +102557,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 +102590,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 +102611,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *646 + items: *647 examples: default: value: @@ -102689,9 +102721,9 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: - default: *648 + default: *649 '400': *14 '404': *6 x-github: @@ -102885,9 +102917,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 +103266,7 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: default: value: @@ -103383,15 +103415,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 +103449,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 requestBody: required: true content: @@ -103588,10 +103620,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 +103663,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '202': *37 '400': *14 @@ -103660,7 +103692,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '202': description: Response @@ -103801,7 +103833,7 @@ paths: application/json: schema: type: array - items: &651 + items: &652 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -104174,7 +104206,7 @@ paths: application/json: schema: type: array - items: *651 + items: *652 examples: default: value: @@ -104264,7 +104296,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -104358,7 +104390,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 +104490,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: default: value: @@ -104668,7 +104700,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 +104712,7 @@ paths: required: - names examples: - default: &655 + default: &656 value: names: - octocat @@ -104735,9 +104767,9 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: - default: *655 + default: *656 '404': *6 '422': *7 x-github: @@ -104760,7 +104792,7 @@ paths: parameters: - *338 - *339 - - &656 + - &657 name: per description: The time frame to display results for. in: query @@ -104791,7 +104823,7 @@ paths: - 128 clones: type: array - items: &657 + items: &658 title: Traffic type: object properties: @@ -105039,7 +105071,7 @@ paths: parameters: - *338 - *339 - - *656 + - *657 responses: '200': description: Response @@ -105060,7 +105092,7 @@ paths: - 3782 views: type: array - items: *657 + items: *658 required: - uniques - count @@ -105833,7 +105865,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &658 + text_matches: &659 title: Search Result Text Matches type: array items: @@ -105996,7 +106028,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 +106148,7 @@ paths: type: number node_id: type: string - text_matches: *658 + text_matches: *659 required: - sha - node_id @@ -106308,7 +106340,7 @@ paths: - interactions - created - updated - - *659 + - *660 - *17 - *19 - name: advanced_search @@ -106422,8 +106454,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 +106486,7 @@ paths: - string - 'null' format: date-time - text_matches: *658 + text_matches: *659 pull_request: type: object properties: @@ -106730,7 +106762,7 @@ paths: enum: - created - updated - - *659 + - *660 - *17 - *19 responses: @@ -106775,7 +106807,7 @@ paths: - 'null' score: type: number - text_matches: *658 + text_matches: *659 required: - id - node_id @@ -106860,7 +106892,7 @@ paths: - forks - help-wanted-issues - updated - - *659 + - *660 - *17 - *19 responses: @@ -107106,7 +107138,7 @@ paths: - admin - pull - push - text_matches: *658 + text_matches: *659 temp_clone_token: type: string allow_merge_commit: @@ -107414,7 +107446,7 @@ paths: - string - 'null' format: uri - text_matches: *658 + text_matches: *659 related: type: - array @@ -107607,7 +107639,7 @@ paths: - followers - repositories - joined - - *659 + - *660 - *17 - *19 responses: @@ -107717,7 +107749,7 @@ paths: type: - boolean - 'null' - text_matches: *658 + text_matches: *659 blog: type: - string @@ -107799,7 +107831,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 +107872,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 +107973,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 +108002,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 +108040,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 +108091,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 +108128,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 +108168,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 +108205,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 +108214,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 +108247,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 +108275,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 +108309,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 +108337,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 +108379,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 +108387,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 +108538,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 +108590,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 +108617,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 +108629,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 +108662,7 @@ paths: application/json: schema: oneOf: - - &668 + - &669 title: Private User description: Private User type: object @@ -108880,7 +108912,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 +109072,7 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: default: value: @@ -109438,7 +109470,7 @@ paths: type: integer secrets: type: array - items: &669 + items: &670 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -109558,7 +109590,7 @@ paths: description: Response content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -109971,7 +110003,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 +110056,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 +110101,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: *671 + default: *672 '404': *6 x-github: githubCloudOnly: false @@ -110110,7 +110142,7 @@ paths: type: array items: *458 examples: - default: *672 + default: *673 '304': *35 '500': *53 '401': *23 @@ -111076,7 +111108,7 @@ paths: type: array items: *260 examples: - default: &683 + default: &684 value: - id: 197 name: hello_docker @@ -111177,7 +111209,7 @@ paths: application/json: schema: type: array - items: &673 + items: &674 title: Email description: Email type: object @@ -111247,9 +111279,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 +111358,7 @@ paths: application/json: schema: type: array - items: *673 + items: *674 examples: default: value: @@ -111584,7 +111616,7 @@ paths: application/json: schema: type: array - items: &674 + items: &675 title: GPG Key description: A unique encryption key type: object @@ -111729,7 +111761,7 @@ paths: - subkeys - revoked examples: - default: &702 + default: &703 value: - id: 3 name: Octocat's GPG Key @@ -111814,9 +111846,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 +111905,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 +111917,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '404': *6 '304': *35 '403': *27 @@ -111910,7 +111942,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 +112409,7 @@ paths: application/json: schema: type: array - items: &677 + items: &678 title: Key description: Key type: object @@ -112480,9 +112512,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: &678 + default: &679 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -112521,9 +112553,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *678 + default: *679 '404': *6 '304': *35 '403': *27 @@ -112579,7 +112611,7 @@ paths: application/json: schema: type: array - items: &679 + items: &680 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -112658,7 +112690,7 @@ paths: - account - plan examples: - default: &680 + default: &681 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -112720,9 +112752,9 @@ paths: application/json: schema: type: array - items: *679 + items: *680 examples: - default: *680 + default: *681 headers: Link: *66 '304': *35 @@ -113740,7 +113772,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *255 - - *681 + - *682 responses: '204': description: Response @@ -113855,7 +113887,7 @@ paths: - docker - nuget - container - - *682 + - *683 - *19 - *17 responses: @@ -113867,8 +113899,8 @@ paths: type: array items: *260 examples: - default: *683 - '400': *684 + default: *684 + '400': *685 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -113897,7 +113929,7 @@ paths: application/json: schema: *260 examples: - default: &703 + default: &704 value: id: 40201 name: octo-name @@ -114259,9 +114291,9 @@ paths: application/json: schema: type: array - items: *673 + items: *674 examples: - default: *685 + default: *686 headers: Link: *66 '304': *35 @@ -114374,7 +114406,7 @@ paths: type: array items: *78 examples: - default: &692 + default: &693 summary: Default response value: - id: 1296269 @@ -114734,7 +114766,7 @@ paths: type: array items: *532 examples: - default: *686 + default: *687 headers: Link: *66 '304': *35 @@ -114813,7 +114845,7 @@ paths: application/json: schema: type: array - items: &687 + items: &688 title: Social account description: Social media account type: object @@ -114830,7 +114862,7 @@ paths: - provider - url examples: - default: &688 + default: &689 value: - provider: twitter url: https://twitter.com/github @@ -114893,9 +114925,9 @@ paths: application/json: schema: type: array - items: *687 + items: *688 examples: - default: *688 + default: *689 '422': *15 '304': *35 '404': *6 @@ -114983,7 +115015,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 +115035,7 @@ paths: - title - created_at examples: - default: &721 + default: &722 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -115068,9 +115100,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: &690 + default: &691 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -115100,7 +115132,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 +115144,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: *690 + default: *691 '404': *6 '304': *35 '403': *27 @@ -115137,7 +115169,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 +115198,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 +115223,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 +115596,10 @@ paths: application/json: schema: oneOf: + - *669 - *668 - - *667 examples: - default-response: &696 + default-response: &697 summary: Default response value: login: octocat @@ -115602,7 +115634,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 +115691,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 +115757,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *693 + - *694 - *17 responses: '200': @@ -115760,7 +115792,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 +115867,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 +115919,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 +115973,8 @@ paths: required: - subject_digests examples: - default: *698 - withPredicateType: *699 + default: *699 + withPredicateType: *700 responses: '200': description: Response @@ -115996,7 +116028,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 +116517,7 @@ paths: application/json: schema: *194 examples: - default: &701 + default: &702 summary: Example response for a user copilot space value: id: 42 @@ -116586,7 +116618,7 @@ paths: application/json: schema: *194 examples: - default: *701 + default: *702 '403': *27 '404': *6 x-github: @@ -116712,7 +116744,7 @@ paths: application/json: schema: *194 examples: - default: *701 + default: *702 '403': *27 '404': *6 '422': *15 @@ -117480,7 +117512,7 @@ paths: type: array items: *260 examples: - default: *683 + default: *684 '403': *27 '401': *23 x-github: @@ -117864,9 +117896,9 @@ paths: application/json: schema: type: array - items: *674 + items: *675 examples: - default: *702 + default: *703 headers: Link: *66 x-github: @@ -118095,7 +118127,7 @@ paths: - docker - nuget - container - - *682 + - *683 - *70 - *19 - *17 @@ -118108,10 +118140,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 +118173,7 @@ paths: application/json: schema: *260 examples: - default: *703 + default: *704 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118490,7 +118522,7 @@ paths: type: array items: *281 examples: - default: *704 + default: *705 headers: Link: *66 '304': *35 @@ -118550,7 +118582,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 +118598,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *706 + iteration_configuration: *707 required: - name - data_type @@ -118588,8 +118620,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 +118629,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 +118655,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *278 - - *714 + - *715 - *70 responses: '200': @@ -118632,7 +118664,7 @@ paths: application/json: schema: *281 examples: - default: *715 + default: *716 headers: Link: *66 '304': *35 @@ -118989,7 +119021,7 @@ paths: parameters: - *278 - *70 - - *716 + - *717 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -119264,7 +119296,7 @@ paths: - *116 - *118 - *117 - - *717 + - *718 - *119 responses: '200': @@ -119395,7 +119427,7 @@ paths: parameters: - *70 - *116 - - *718 + - *719 - *117 responses: '200': @@ -119494,9 +119526,9 @@ paths: - *116 - *118 - *117 - - *719 - - *119 - *720 + - *119 + - *721 responses: '200': description: Response when getting a billing usage summary @@ -119630,9 +119662,9 @@ paths: application/json: schema: type: array - items: *687 + items: *688 examples: - default: *688 + default: *689 headers: Link: *66 x-github: @@ -119662,9 +119694,9 @@ paths: application/json: schema: type: array - items: *689 + items: *690 examples: - default: *721 + default: *722 headers: Link: *66 x-github: @@ -119689,7 +119721,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 +119733,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 +119897,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 +119966,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 +119987,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 +120060,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 +120986,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 +121065,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 +121292,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 +121484,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 +121572,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 +121682,7 @@ webhooks: - examples: - neutral - deployment: *729 + deployment: *730 details_url: type: string examples: @@ -121748,10 +121780,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 +122174,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 +122572,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 +122979,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 +123968,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 +124680,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 +125386,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 +125710,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 +126131,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 +126419,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 +126770,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 +127065,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 +127075,7 @@ webhooks: type: - string - 'null' - repository: *727 + repository: *728 sender: *4 required: - action @@ -127289,12 +127321,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 +127647,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 +127910,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 +127994,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 +128015,7 @@ webhooks: enum: - tag - branch - repository: *727 + repository: *728 sender: *4 required: - ref @@ -128066,9 +128098,9 @@ webhooks: enum: - created definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -128153,9 +128185,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 +128265,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 +128345,9 @@ webhooks: enum: - updated definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -128392,10 +128424,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 +128512,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 +128604,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 +128688,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 +128773,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 +128858,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 +128941,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 +129024,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 +129108,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 +129191,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 +129271,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 +129311,8 @@ webhooks: - verified - created_at - read_only - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -129357,11 +129389,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 +129960,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 +130720,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 +130793,7 @@ webhooks: type: string enum: - approved - approver: &736 + approver: &737 type: object properties: avatar_url: @@ -130804,11 +130836,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 +130921,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &738 + workflow_job_run: &739 type: object properties: conclusion: @@ -131635,18 +131667,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 +132395,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 +134334,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 +135030,7 @@ webhooks: type: string enum: - answered - answer: &742 + answer: &743 type: object properties: author_association: @@ -135158,11 +135190,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 +135321,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 +135408,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 +135494,7 @@ webhooks: type: string enum: - created - comment: &741 + comment: &742 type: object properties: author_association: @@ -135622,11 +135654,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 +135741,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 +135841,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 +135930,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 +136016,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 +136120,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 +136206,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 +136242,8 @@ webhooks: - color - default - description - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -136294,11 +136326,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 +136412,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 +136498,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 +136587,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 +136679,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 +136764,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 +136852,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 +136938,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 +137015,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 +137693,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 +137841,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 +137881,7 @@ webhooks: - action - sha - html_url - repository: *727 + repository: *728 sender: *4 required: - pages @@ -137925,10 +137957,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 +137986,8 @@ webhooks: - name - full_name - private - repository: *727 - requester: *744 + repository: *728 + requester: *745 sender: *4 required: - action @@ -138030,11 +138062,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 +138143,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 +138224,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 +138273,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 +138360,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 +138390,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 +138471,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 +138657,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 +138739,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 +138995,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 +139808,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 +140170,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -140219,7 +140251,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 +140422,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 +141231,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 +141595,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -141644,7 +141676,7 @@ webhooks: type: string enum: - edited - changes: &772 + changes: &773 description: The changes to the comment. type: object properties: @@ -141656,9 +141688,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 +142501,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 +142863,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -142913,9 +142945,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 +143760,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 +144124,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -144173,9 +144205,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 +145020,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 +145384,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145442,9 +145474,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 +145565,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 +145655,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 +145746,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 +145828,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 +146642,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 +146766,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -146815,8 +146847,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 +147664,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 +147931,8 @@ webhooks: required: - state - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -147979,8 +148011,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 +148819,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 +148942,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -148990,8 +149022,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 +149853,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 +149955,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 +150098,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -150166,8 +150198,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 +151010,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 +151134,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 +151216,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 +151337,8 @@ webhooks: - id required: - from - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -151386,9 +151418,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 +151483,8 @@ webhooks: - 'null' required: - id - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -151532,8 +151564,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 +152375,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 +152499,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 +152581,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 +153417,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 +153518,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -153566,8 +153598,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 +154428,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 +154529,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 +155418,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 +156014,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 +156822,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 +156949,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -156998,9 +157030,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 +157837,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 +157960,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -158008,8 +158040,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 +158874,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 +158976,8 @@ webhooks: user_view_type: type: string type: *243 - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -159833,8 +159865,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 +160479,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 +160563,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 +160649,7 @@ webhooks: type: string enum: - unassigned - assignee: &775 + assignee: &776 title: User type: - object @@ -160689,11 +160721,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 +160804,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 +160889,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 +161723,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 +161824,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161873,11 +161905,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 +161988,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 +162073,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 +162155,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 +162269,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 +162355,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 +162445,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 +162530,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -162578,10 +162610,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 +162701,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -162751,10 +162783,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 +162872,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -162921,8 +162953,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 +163040,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 +163122,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 +163229,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 +163335,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 +163418,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 +163500,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 +163582,7 @@ webhooks: required: - login - id - team: &754 + team: &755 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -163780,11 +163812,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 +163895,7 @@ webhooks: required: - login - id - team: *754 + team: *755 required: - action - scope @@ -163945,8 +163977,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 +164004,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164059,10 +164091,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 +164167,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 +164276,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 +164361,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 +164444,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 +164588,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164636,11 +164668,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 +164782,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 +164866,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 +164949,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 +165032,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 +165115,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 +165227,8 @@ webhooks: - role - organization_url - user - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165274,11 +165306,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 +165389,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 +165512,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 +165593,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 +165684,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 +165765,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 +166290,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &758 + items: &759 title: Ruby Gems metadata type: object properties: @@ -166355,7 +166387,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -166431,9 +166463,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 +166827,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *758 + items: *759 source_url: type: string format: uri @@ -166866,7 +166898,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -167046,12 +167078,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 +167160,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 +167310,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 +167390,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 +167470,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 +167549,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 +167658,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 +167690,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 +167936,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 +168062,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -168111,11 +168143,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 +168227,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 +168359,7 @@ webhooks: repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -168421,11 +168453,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 +168551,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 +168750,7 @@ webhooks: type: string required: - after_id - repository: *727 + repository: *728 sender: *4 required: - action @@ -168798,10 +168830,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 +168960,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -169008,10 +169040,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 +169083,7 @@ webhooks: - name - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -169130,14 +169162,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 +169258,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 +169342,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 +169426,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 +169510,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 +169618,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 +169701,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 +169786,8 @@ webhooks: type: string enum: - closed - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -169837,8 +169869,8 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -169920,8 +169952,8 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -170043,8 +170075,8 @@ webhooks: type: string to: type: string - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -170128,7 +170160,7 @@ webhooks: type: string enum: - archived - changes: &767 + changes: &768 type: object properties: archived_at: @@ -170144,9 +170176,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 +170318,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 +170402,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 +170485,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 +170592,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 +170616,7 @@ webhooks: required: - id - name - - &766 + - &767 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -170624,8 +170656,8 @@ webhooks: oneOf: - type: string - type: integer - - *765 - *766 + - *767 type: - 'null' - string @@ -170648,9 +170680,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 +170779,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 +170864,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 +170949,8 @@ webhooks: type: string enum: - reopened - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -171000,9 +171032,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 +171115,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 +171263,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 +171336,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 +171416,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 +173793,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -173843,11 +173875,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 +176243,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *728 sender: *4 required: - action @@ -176293,11 +176325,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 +178693,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *728 sender: *4 required: - action @@ -178743,11 +178775,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 +178843,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *727 + repository: *728 sender: *4 required: - action @@ -178892,12 +178924,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 +179009,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 +181362,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -181409,11 +181441,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 +183813,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *727 + repository: *728 sender: *4 required: - action @@ -183905,12 +183937,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 +184022,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 +186379,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -186427,11 +186459,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 +188833,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -188882,10 +188914,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 +191285,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -191333,12 +191365,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 +191449,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 +191535,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 +191620,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 +192000,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 +194254,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -194302,7 +194334,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 +194627,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 +196869,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -196917,11 +196949,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 +199196,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -199245,9 +199277,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 +201534,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 review: description: The review that was affected. type: object @@ -201753,9 +201785,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 +203901,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 +204140,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 +206514,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_reviewer: title: User type: @@ -206568,12 +206600,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 +208981,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 +209176,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 +211552,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_reviewer: title: User type: @@ -211607,12 +211639,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 +214006,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 +214190,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 +216450,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: *774 + repository: *728 + review: *775 sender: *4 required: - action @@ -216499,9 +216531,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 +218686,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 sender: *4 thread: type: object @@ -219051,9 +219083,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 +221221,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 sender: *4 thread: type: object @@ -221588,10 +221620,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 +223980,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -224030,11 +224062,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 +226438,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -226485,11 +226517,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 +228882,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -228931,10 +228963,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 +231317,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -231488,7 +231520,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 +231615,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 +232215,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 +232694,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *758 + items: *759 summary: type: string tag_name: @@ -232718,7 +232750,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -232796,9 +232828,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 +233142,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *758 + items: *759 summary: type: string tag_name: @@ -233160,7 +233192,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -233237,10 +233269,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 +233603,7 @@ webhooks: - updated_at - zipball_url - body - repository: *727 + repository: *728 sender: *4 required: - action @@ -233648,11 +233680,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 +233801,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 +233883,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 +234221,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *728 sender: *4 required: - action @@ -234265,10 +234297,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 +234633,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *728 sender: *4 required: - action @@ -234677,11 +234709,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 +234789,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 +234869,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 +234949,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 +235029,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 +235109,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 +235190,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 +235278,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 +235396,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 +235471,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 +235555,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 +235635,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 +235732,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 +235815,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 +235897,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 +235979,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 +236290,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 +236371,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 +236452,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 +236577,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 +236790,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 +236871,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 +237077,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 +237158,7 @@ webhooks: type: string enum: - assigned - alert: &779 + alert: &780 type: object properties: number: *178 @@ -237266,10 +237298,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 +237379,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 +237464,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 +237706,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 +237788,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 +237870,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 +237952,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 +238035,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 +238169,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 +238250,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 +238440,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 +238517,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 +238707,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 +238788,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 +239098,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 +239191,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 +239273,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 +239357,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &784 + changes: &785 type: object properties: tier: @@ -239369,13 +239401,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 +239484,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 +239564,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 +239651,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 +240088,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 +240212,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 +240303,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 +240394,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 +240485,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 +240563,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 +240798,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 +241270,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -241314,9 +241346,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 +241818,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -241863,9 +241895,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 +242367,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -242479,9 +242511,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 +242983,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - changes @@ -243029,9 +243061,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 +243533,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -243577,10 +243609,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 +243685,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 +243777,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 +244115,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 +244479,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 +244707,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 +244937,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 +245961,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 +246970,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..ebc849253 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, @@ -622970,6 +623063,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..b5260b1bc 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. @@ -85439,7 +85470,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 +86539,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 +86973,7 @@ paths: type: array items: *532 examples: - default: &685 + default: &686 value: - id: 1 repository: @@ -100825,7 +100856,7 @@ paths: application/json: schema: *321 examples: - default: &609 + default: &610 value: id: 42 name: super cool ruleset @@ -100879,6 +100910,7 @@ paths: - *601 - *602 - *603 + - *604 - *17 - *19 responses: @@ -100886,9 +100918,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: *605 + default: *606 '404': *6 '500': *53 x-github: @@ -100911,15 +100943,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 +101002,7 @@ paths: application/json: schema: *321 examples: - default: *609 + default: *610 '404': *6 '500': *53 put: @@ -101053,7 +101085,7 @@ paths: application/json: schema: *321 examples: - default: *609 + default: *610 '404': *6 '422': *15 '500': *53 @@ -101115,7 +101147,7 @@ paths: type: array items: *324 examples: - default: *610 + default: *611 '404': *6 '500': *53 x-github: @@ -101153,7 +101185,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -101210,7 +101242,6 @@ paths: parameters: - *338 - *339 - - *612 - *613 - *614 - *615 @@ -101218,16 +101249,17 @@ paths: - *617 - *618 - *619 + - *620 - *60 - *19 - *17 - - *620 - *621 - *622 - *623 - *624 - *625 - *626 + - *627 responses: '200': description: Response @@ -101235,7 +101267,7 @@ paths: application/json: schema: type: array - items: &630 + items: &631 type: object properties: number: *178 @@ -101251,8 +101283,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 +101390,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 +101552,13 @@ paths: - *338 - *339 - *434 - - *625 + - *626 responses: '200': description: Response content: application/json: - schema: *630 + schema: *631 examples: default: value: @@ -101590,8 +101622,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 +101671,7 @@ paths: description: Response content: application/json: - schema: *630 + schema: *631 examples: default: value: @@ -101751,7 +101783,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &780 + items: &781 type: object properties: type: @@ -101778,7 +101810,6 @@ paths: - commit details: oneOf: - - *631 - *632 - *633 - *634 @@ -101791,6 +101822,7 @@ paths: - *641 - *642 - *643 + - *644 examples: default: value: @@ -101885,14 +101917,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 +101941,7 @@ paths: schema: type: object properties: - reason: *645 + reason: *646 expire_at: type: - string @@ -101972,7 +102004,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 +102037,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 +102058,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *646 + items: *647 examples: default: value: @@ -102136,9 +102168,9 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: - default: *648 + default: *649 '400': *14 '404': *6 x-github: @@ -102332,9 +102364,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 +102710,7 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: default: value: @@ -102826,15 +102858,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 +102892,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 requestBody: required: true content: @@ -103031,10 +103063,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 +103106,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '202': *37 '400': *14 @@ -103103,7 +103135,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '202': description: Response @@ -103244,7 +103276,7 @@ paths: application/json: schema: type: array - items: &651 + items: &652 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -103617,7 +103649,7 @@ paths: application/json: schema: type: array - items: *651 + items: *652 examples: default: value: @@ -103707,7 +103739,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -103801,7 +103833,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 +103933,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: default: value: @@ -104111,7 +104143,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 +104155,7 @@ paths: required: - names examples: - default: &655 + default: &656 value: names: - octocat @@ -104178,9 +104210,9 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: - default: *655 + default: *656 '404': *6 '422': *7 x-github: @@ -104203,7 +104235,7 @@ paths: parameters: - *338 - *339 - - &656 + - &657 name: per description: The time frame to display results for. in: query @@ -104234,7 +104266,7 @@ paths: - 128 clones: type: array - items: &657 + items: &658 title: Traffic type: object properties: @@ -104482,7 +104514,7 @@ paths: parameters: - *338 - *339 - - *656 + - *657 responses: '200': description: Response @@ -104503,7 +104535,7 @@ paths: - 3782 views: type: array - items: *657 + items: *658 required: - uniques - count @@ -105275,7 +105307,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &658 + text_matches: &659 title: Search Result Text Matches type: array items: @@ -105438,7 +105470,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 +105590,7 @@ paths: type: number node_id: type: string - text_matches: *658 + text_matches: *659 required: - sha - node_id @@ -105750,7 +105782,7 @@ paths: - interactions - created - updated - - *659 + - *660 - *17 - *19 - name: advanced_search @@ -105864,8 +105896,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 +105924,7 @@ paths: - string - 'null' format: date-time - text_matches: *658 + text_matches: *659 pull_request: type: object properties: @@ -106166,7 +106198,7 @@ paths: enum: - created - updated - - *659 + - *660 - *17 - *19 responses: @@ -106211,7 +106243,7 @@ paths: - 'null' score: type: number - text_matches: *658 + text_matches: *659 required: - id - node_id @@ -106296,7 +106328,7 @@ paths: - forks - help-wanted-issues - updated - - *659 + - *660 - *17 - *19 responses: @@ -106542,7 +106574,7 @@ paths: - admin - pull - push - text_matches: *658 + text_matches: *659 temp_clone_token: type: string allow_merge_commit: @@ -106850,7 +106882,7 @@ paths: - string - 'null' format: uri - text_matches: *658 + text_matches: *659 related: type: - array @@ -107043,7 +107075,7 @@ paths: - followers - repositories - joined - - *659 + - *660 - *17 - *19 responses: @@ -107153,7 +107185,7 @@ paths: type: - boolean - 'null' - text_matches: *658 + text_matches: *659 blog: type: - string @@ -107235,7 +107267,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 +107308,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 +107409,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 +107438,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 +107476,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 +107527,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 +107564,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 +107604,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 +107641,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 +107650,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 +107683,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 +107711,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 +107745,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 +107773,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 +107815,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 +107823,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 +107973,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 +108025,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 +108052,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 +108064,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 +108097,7 @@ paths: application/json: schema: oneOf: - - &667 + - &668 title: Private User description: Private User type: object @@ -108315,7 +108347,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &692 + - &693 title: Public User description: Public User type: object @@ -108649,7 +108681,7 @@ paths: description: Response content: application/json: - schema: *667 + schema: *668 examples: default: value: @@ -109047,7 +109079,7 @@ paths: type: integer secrets: type: array - items: &668 + items: &669 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -109167,7 +109199,7 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: default: value: @@ -109580,7 +109612,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 +109665,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 +109710,9 @@ paths: description: Response content: application/json: - schema: *669 + schema: *670 examples: - default: *670 + default: *671 '404': *6 x-github: githubCloudOnly: false @@ -109719,7 +109751,7 @@ paths: type: array items: *458 examples: - default: *671 + default: *672 '304': *35 '500': *53 '401': *23 @@ -110685,7 +110717,7 @@ paths: type: array items: *260 examples: - default: &682 + default: &683 value: - id: 197 name: hello_docker @@ -110786,7 +110818,7 @@ paths: application/json: schema: type: array - items: &672 + items: &673 title: Email description: Email type: object @@ -110856,9 +110888,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 +110967,7 @@ paths: application/json: schema: type: array - items: *672 + items: *673 examples: default: value: @@ -111193,7 +111225,7 @@ paths: application/json: schema: type: array - items: &673 + items: &674 title: GPG Key description: A unique encryption key type: object @@ -111338,7 +111370,7 @@ paths: - subkeys - revoked examples: - default: &702 + default: &703 value: - id: 3 name: Octocat's GPG Key @@ -111423,9 +111455,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 +111514,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 +111526,9 @@ paths: description: Response content: application/json: - schema: *673 + schema: *674 examples: - default: *674 + default: *675 '404': *6 '304': *35 '403': *27 @@ -111519,7 +111551,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 +112018,7 @@ paths: application/json: schema: type: array - items: &676 + items: &677 title: Key description: Key type: object @@ -112089,9 +112121,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: - default: &677 + default: &678 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -112130,9 +112162,9 @@ paths: description: Response content: application/json: - schema: *676 + schema: *677 examples: - default: *677 + default: *678 '404': *6 '304': *35 '403': *27 @@ -112188,7 +112220,7 @@ paths: application/json: schema: type: array - items: &678 + items: &679 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -112267,7 +112299,7 @@ paths: - account - plan examples: - default: &679 + default: &680 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -112329,9 +112361,9 @@ paths: application/json: schema: type: array - items: *678 + items: *679 examples: - default: *679 + default: *680 headers: Link: *66 '304': *35 @@ -113349,7 +113381,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *255 - - *680 + - *681 responses: '204': description: Response @@ -113462,7 +113494,7 @@ paths: - docker - nuget - container - - *681 + - *682 - *19 - *17 responses: @@ -113474,8 +113506,8 @@ paths: type: array items: *260 examples: - default: *682 - '400': *683 + default: *683 + '400': *684 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -113504,7 +113536,7 @@ paths: application/json: schema: *260 examples: - default: &703 + default: &704 value: id: 40201 name: octo-name @@ -113866,9 +113898,9 @@ paths: application/json: schema: type: array - items: *672 + items: *673 examples: - default: *684 + default: *685 headers: Link: *66 '304': *35 @@ -113981,7 +114013,7 @@ paths: type: array items: *78 examples: - default: &691 + default: &692 summary: Default response value: - id: 1296269 @@ -114342,7 +114374,7 @@ paths: type: array items: *532 examples: - default: *685 + default: *686 headers: Link: *66 '304': *35 @@ -114422,7 +114454,7 @@ paths: application/json: schema: type: array - items: &686 + items: &687 title: Social account description: Social media account type: object @@ -114439,7 +114471,7 @@ paths: - provider - url examples: - default: &687 + default: &688 value: - provider: twitter url: https://twitter.com/github @@ -114502,9 +114534,9 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: - default: *687 + default: *688 '422': *15 '304': *35 '404': *6 @@ -114592,7 +114624,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 +114644,7 @@ paths: - title - created_at examples: - default: &721 + default: &722 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -114677,9 +114709,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: &689 + default: &690 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -114709,7 +114741,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 +114753,9 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: - default: *689 + default: *690 '404': *6 '304': *35 '403': *27 @@ -114746,7 +114778,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 +114807,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 +114832,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 +115205,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 +115243,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 +115300,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 +115366,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *693 + - *694 - *17 responses: '200': @@ -115369,7 +115401,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 +115476,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 +115528,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 +115582,8 @@ paths: required: - subject_digests examples: - default: *698 - withPredicateType: *699 + default: *699 + withPredicateType: *700 responses: '200': description: Response @@ -115591,7 +115623,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 +116096,7 @@ paths: application/json: schema: *194 examples: - default: &701 + default: &702 summary: Example response for a user copilot space value: id: 42 @@ -116165,7 +116197,7 @@ paths: application/json: schema: *194 examples: - default: *701 + default: *702 '403': *27 '404': *6 x-github: @@ -116291,7 +116323,7 @@ paths: application/json: schema: *194 examples: - default: *701 + default: *702 '403': *27 '404': *6 '422': *15 @@ -117059,7 +117091,7 @@ paths: type: array items: *260 examples: - default: *682 + default: *683 '403': *27 '401': *23 x-github: @@ -117443,9 +117475,9 @@ paths: application/json: schema: type: array - items: *673 + items: *674 examples: - default: *702 + default: *703 headers: Link: *66 x-github: @@ -117674,7 +117706,7 @@ paths: - docker - nuget - container - - *681 + - *682 - *70 - *19 - *17 @@ -117687,10 +117719,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 +117752,7 @@ paths: application/json: schema: *260 examples: - default: *703 + default: *704 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -118069,7 +118101,7 @@ paths: type: array items: *281 examples: - default: *704 + default: *705 headers: Link: *66 '304': *35 @@ -118129,7 +118161,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 +118177,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *706 + iteration_configuration: *707 required: - name - data_type @@ -118167,8 +118199,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 +118208,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 +118234,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *278 - - *714 + - *715 - *70 responses: '200': @@ -118211,7 +118243,7 @@ paths: application/json: schema: *281 examples: - default: *715 + default: *716 headers: Link: *66 '304': *35 @@ -118568,7 +118600,7 @@ paths: parameters: - *278 - *70 - - *716 + - *717 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -118843,7 +118875,7 @@ paths: - *116 - *118 - *117 - - *717 + - *718 - *119 responses: '200': @@ -118974,7 +119006,7 @@ paths: parameters: - *70 - *116 - - *718 + - *719 - *117 responses: '200': @@ -119073,9 +119105,9 @@ paths: - *116 - *118 - *117 - - *719 - - *119 - *720 + - *119 + - *721 responses: '200': description: Response when getting a billing usage summary @@ -119209,9 +119241,9 @@ paths: application/json: schema: type: array - items: *686 + items: *687 examples: - default: *687 + default: *688 headers: Link: *66 x-github: @@ -119241,9 +119273,9 @@ paths: application/json: schema: type: array - items: *688 + items: *689 examples: - default: *721 + default: *722 headers: Link: *66 x-github: @@ -119268,7 +119300,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 +119312,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 +119476,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 +119545,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 +119566,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 +119639,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 +120554,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 +120633,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 +120860,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 +121052,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 +121140,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 +121250,7 @@ webhooks: - examples: - neutral - deployment: *729 + deployment: *730 details_url: type: string examples: @@ -121316,10 +121348,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 +121742,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 +122140,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 +122547,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 +123536,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 +124248,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 +124954,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 +125278,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 +125699,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 +125987,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 +126338,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 +126633,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 +126643,7 @@ webhooks: type: - string - 'null' - repository: *727 + repository: *728 sender: *4 required: - action @@ -126857,12 +126889,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 +127215,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 +127478,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 +127562,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 +127583,7 @@ webhooks: enum: - tag - branch - repository: *727 + repository: *728 sender: *4 required: - ref @@ -127634,9 +127666,9 @@ webhooks: enum: - created definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -127721,9 +127753,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 +127833,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 +127913,9 @@ webhooks: enum: - updated definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -127960,10 +127992,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 +128080,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 +128172,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 +128256,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 +128341,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 +128426,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 +128509,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 +128592,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 +128676,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 +128759,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 +128839,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 +128879,8 @@ webhooks: - verified - created_at - read_only - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -128925,11 +128957,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 +129528,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 +130288,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 +130361,7 @@ webhooks: type: string enum: - approved - approver: &736 + approver: &737 type: object properties: avatar_url: @@ -130372,11 +130404,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 +130489,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &738 + workflow_job_run: &739 type: object properties: conclusion: @@ -131203,18 +131235,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 +131963,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 +133902,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 +134598,7 @@ webhooks: type: string enum: - answered - answer: &742 + answer: &743 type: object properties: author_association: @@ -134726,11 +134758,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 +134889,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 +134976,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 +135062,7 @@ webhooks: type: string enum: - created - comment: &741 + comment: &742 type: object properties: author_association: @@ -135190,11 +135222,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 +135309,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 +135409,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 +135498,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 +135584,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 +135688,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 +135774,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 +135810,8 @@ webhooks: - color - default - description - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -135862,11 +135894,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 +135980,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 +136066,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 +136155,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 +136247,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 +136332,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 +136420,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 +136506,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 +136583,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 +137261,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 +137409,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 +137449,7 @@ webhooks: - action - sha - html_url - repository: *727 + repository: *728 sender: *4 required: - pages @@ -137493,10 +137525,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 +137554,8 @@ webhooks: - name - full_name - private - repository: *727 - requester: *744 + repository: *728 + requester: *745 sender: *4 required: - action @@ -137598,11 +137630,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 +137711,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 +137792,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 +137841,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 +137928,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 +137958,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 +138039,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 +138225,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 +138307,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 +138563,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 +139376,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 +139738,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -139787,7 +139819,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 +139990,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 +140799,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 +141163,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -141212,7 +141244,7 @@ webhooks: type: string enum: - edited - changes: &772 + changes: &773 description: The changes to the comment. type: object properties: @@ -141224,9 +141256,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 +142069,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 +142431,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -142481,9 +142513,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 +143328,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 +143692,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -143741,9 +143773,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 +144588,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 +144952,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145010,9 +145042,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 +145133,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 +145223,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 +145314,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 +145396,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 +146210,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 +146334,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -146383,8 +146415,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 +147232,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 +147499,8 @@ webhooks: required: - state - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -147547,8 +147579,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 +148387,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 +148510,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -148558,8 +148590,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 +149421,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 +149523,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 +149666,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -149734,8 +149766,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 +150578,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 +150702,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 +150784,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 +150905,8 @@ webhooks: - id required: - from - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -150954,9 +150986,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 +151051,8 @@ webhooks: - 'null' required: - id - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -151100,8 +151132,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 +151943,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 +152067,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 +152149,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 +152985,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 +153086,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -153134,8 +153166,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 +153996,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 +154097,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 +154986,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 +155582,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 +156390,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 +156517,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -156566,9 +156598,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 +157405,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 +157528,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -157576,8 +157608,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 +158442,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 +158544,8 @@ webhooks: user_view_type: type: string type: *243 - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -159401,8 +159433,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 +160047,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 +160131,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 +160217,7 @@ webhooks: type: string enum: - unassigned - assignee: &775 + assignee: &776 title: User type: - object @@ -160257,11 +160289,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 +160372,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 +160457,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 +161291,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 +161392,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -161441,11 +161473,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 +161556,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 +161641,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 +161723,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 +161837,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 +161923,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 +162013,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 +162098,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -162146,10 +162178,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 +162269,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -162319,10 +162351,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 +162440,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -162489,8 +162521,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 +162608,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 +162690,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 +162797,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 +162903,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 +162986,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 +163068,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 +163150,7 @@ webhooks: required: - login - id - team: &754 + team: &755 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -163348,11 +163380,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 +163463,7 @@ webhooks: required: - login - id - team: *754 + team: *755 required: - action - scope @@ -163513,8 +163545,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 +163572,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -163627,10 +163659,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 +163735,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 +163844,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 +163929,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 +164012,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 +164156,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164204,11 +164236,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 +164350,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 +164434,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 +164517,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 +164600,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 +164683,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 +164795,8 @@ webhooks: - role - organization_url - user - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -164842,11 +164874,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 +164957,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 +165080,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 +165161,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 +165252,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 +165333,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 +165858,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &758 + items: &759 title: Ruby Gems metadata type: object properties: @@ -165923,7 +165955,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -165999,9 +166031,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 +166395,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *758 + items: *759 source_url: type: string format: uri @@ -166434,7 +166466,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -166614,12 +166646,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 +166728,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 +166878,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 +166958,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 +167038,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 +167117,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 +167226,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 +167258,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 +167504,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 +167630,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -167679,11 +167711,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 +167795,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 +167927,7 @@ webhooks: repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -167989,11 +168021,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 +168119,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 +168318,7 @@ webhooks: type: string required: - after_id - repository: *727 + repository: *728 sender: *4 required: - action @@ -168366,10 +168398,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 +168528,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -168576,10 +168608,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 +168651,7 @@ webhooks: - name - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -168698,14 +168730,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 +168826,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 +168910,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 +168994,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 +169078,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 +169186,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 +169269,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 +169354,8 @@ webhooks: type: string enum: - closed - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -169405,8 +169437,8 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -169488,8 +169520,8 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -169611,8 +169643,8 @@ webhooks: type: string to: type: string - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -169696,7 +169728,7 @@ webhooks: type: string enum: - archived - changes: &767 + changes: &768 type: object properties: archived_at: @@ -169712,9 +169744,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 +169886,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 +169970,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 +170053,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 +170160,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 +170184,7 @@ webhooks: required: - id - name - - &766 + - &767 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -170192,8 +170224,8 @@ webhooks: oneOf: - type: string - type: integer - - *765 - *766 + - *767 type: - 'null' - string @@ -170216,9 +170248,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 +170347,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 +170432,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 +170517,8 @@ webhooks: type: string enum: - reopened - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -170568,9 +170600,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 +170683,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 +170831,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 +170904,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 +170984,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 +173342,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -173392,11 +173424,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 +175773,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *728 sender: *4 required: - action @@ -175823,11 +175855,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 +178204,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *728 sender: *4 required: - action @@ -178254,11 +178286,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 +178354,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *727 + repository: *728 sender: *4 required: - action @@ -178403,12 +178435,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 +178520,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 +180868,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -180915,11 +180947,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 +183314,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *727 + repository: *728 sender: *4 required: - action @@ -183406,12 +183438,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 +183523,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 +185875,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -185923,11 +185955,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 +188310,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -188359,10 +188391,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 +190743,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -190791,12 +190823,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 +190907,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 +190993,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 +191078,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 +191458,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 +193693,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -193741,7 +193773,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 +194066,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 +196289,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -196337,11 +196369,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 +198597,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -198646,9 +198678,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 +200916,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 review: description: The review that was affected. type: object @@ -201135,9 +201167,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 +203278,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 +203517,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 +205872,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_reviewer: title: User type: @@ -205926,12 +205958,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 +208320,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 +208515,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 +210872,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_reviewer: title: User type: @@ -210927,12 +210959,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 +213307,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 +213491,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 +215732,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: *774 + repository: *728 + review: *775 sender: *4 required: - action @@ -215781,9 +215813,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 +217963,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 sender: *4 thread: type: object @@ -218328,9 +218360,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 +220493,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 sender: *4 thread: type: object @@ -220860,10 +220892,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 +223233,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -223283,11 +223315,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 +225672,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -225719,11 +225751,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 +228097,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -228146,10 +228178,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 +230513,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -230684,7 +230716,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 +230811,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 +231411,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 +231890,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *758 + items: *759 summary: type: string tag_name: @@ -231914,7 +231946,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -231992,9 +232024,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 +232338,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *758 + items: *759 summary: type: string tag_name: @@ -232356,7 +232388,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -232433,10 +232465,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 +232799,7 @@ webhooks: - updated_at - zipball_url - body - repository: *727 + repository: *728 sender: *4 required: - action @@ -232844,11 +232876,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 +232997,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 +233079,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 +233417,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *728 sender: *4 required: - action @@ -233461,10 +233493,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 +233829,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *728 sender: *4 required: - action @@ -233873,11 +233905,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 +233985,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 +234065,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 +234145,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 +234225,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 +234305,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 +234386,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 +234474,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 +234592,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 +234667,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 +234751,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 +234831,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 +234928,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 +235011,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 +235093,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 +235175,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 +235486,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 +235567,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 +235648,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 +235773,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 +235986,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 +236067,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 +236273,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 +236354,7 @@ webhooks: type: string enum: - assigned - alert: &779 + alert: &780 type: object properties: number: *178 @@ -236462,10 +236494,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 +236575,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 +236660,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 +236902,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 +236984,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 +237066,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 +237148,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 +237231,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 +237365,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 +237446,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 +237623,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 +237700,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 +237877,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 +237958,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 +238268,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 +238361,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 +238443,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 +238527,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &784 + changes: &785 type: object properties: tier: @@ -238539,13 +238571,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 +238654,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 +238734,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 +238821,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 +239258,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 +239382,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 +239473,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 +239564,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 +239655,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 +239733,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 +239968,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 +240440,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -240484,9 +240516,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 +240988,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -241033,9 +241065,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 +241537,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -241649,9 +241681,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 +242153,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - changes @@ -242199,9 +242231,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 +242703,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -242747,10 +242779,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 +242855,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 +242947,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 +243285,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 +243649,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 +243877,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 +244107,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 +245131,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 +246140,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..312429654 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, @@ -650956,6 +651049,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..6deb6e1af 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. @@ -86574,7 +86605,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 +87674,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 +88108,7 @@ paths: type: array items: *532 examples: - default: &686 + default: &687 value: - id: 1 repository: @@ -102212,7 +102243,7 @@ paths: application/json: schema: *321 examples: - default: &609 + default: &610 value: id: 42 name: super cool ruleset @@ -102266,6 +102297,7 @@ paths: - *601 - *602 - *603 + - *604 - *17 - *19 responses: @@ -102273,9 +102305,9 @@ paths: description: Response content: application/json: - schema: *604 + schema: *605 examples: - default: *605 + default: *606 '404': *6 '500': *53 x-github: @@ -102298,15 +102330,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 +102389,7 @@ paths: application/json: schema: *321 examples: - default: *609 + default: *610 '404': *6 '500': *53 put: @@ -102440,7 +102472,7 @@ paths: application/json: schema: *321 examples: - default: *609 + default: *610 '404': *6 '422': *15 '500': *53 @@ -102502,7 +102534,7 @@ paths: type: array items: *324 examples: - default: *610 + default: *611 '404': *6 '500': *53 x-github: @@ -102540,7 +102572,7 @@ paths: description: Response content: application/json: - schema: *611 + schema: *612 examples: default: value: @@ -102597,7 +102629,6 @@ paths: parameters: - *338 - *339 - - *612 - *613 - *614 - *615 @@ -102605,16 +102636,17 @@ paths: - *617 - *618 - *619 + - *620 - *60 - *19 - *17 - - *620 - *621 - *622 - *623 - *624 - *625 - *626 + - *627 responses: '200': description: Response @@ -102622,7 +102654,7 @@ paths: application/json: schema: type: array - items: &630 + items: &631 type: object properties: number: *178 @@ -102638,8 +102670,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 +102777,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 +102939,13 @@ paths: - *338 - *339 - *434 - - *625 + - *626 responses: '200': description: Response content: application/json: - schema: *630 + schema: *631 examples: default: value: @@ -102977,8 +103009,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 +103058,7 @@ paths: description: Response content: application/json: - schema: *630 + schema: *631 examples: default: value: @@ -103138,7 +103170,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &780 + items: &781 type: object properties: type: @@ -103165,7 +103197,6 @@ paths: - commit details: oneOf: - - *631 - *632 - *633 - *634 @@ -103178,6 +103209,7 @@ paths: - *641 - *642 - *643 + - *644 examples: default: value: @@ -103272,14 +103304,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 +103328,7 @@ paths: schema: type: object properties: - reason: *645 + reason: *646 expire_at: type: - string @@ -103359,7 +103391,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 +103424,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 +103445,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *646 + items: *647 examples: default: value: @@ -103523,9 +103555,9 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: - default: *648 + default: *649 '400': *14 '404': *6 x-github: @@ -103719,9 +103751,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 +104106,7 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: default: value: @@ -104229,15 +104261,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 +104295,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 requestBody: required: true content: @@ -104434,10 +104466,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 +104509,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '202': *37 '400': *14 @@ -104506,7 +104538,7 @@ paths: parameters: - *338 - *339 - - *649 + - *650 responses: '202': description: Response @@ -104647,7 +104679,7 @@ paths: application/json: schema: type: array - items: &651 + items: &652 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -105020,7 +105052,7 @@ paths: application/json: schema: type: array - items: *651 + items: *652 examples: default: value: @@ -105110,7 +105142,7 @@ paths: description: Response content: application/json: - schema: *652 + schema: *653 examples: default: value: @@ -105204,7 +105236,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 +105336,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: default: value: @@ -105514,7 +105546,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 +105558,7 @@ paths: required: - names examples: - default: &655 + default: &656 value: names: - octocat @@ -105581,9 +105613,9 @@ paths: description: Response content: application/json: - schema: *654 + schema: *655 examples: - default: *655 + default: *656 '404': *6 '422': *7 x-github: @@ -105606,7 +105638,7 @@ paths: parameters: - *338 - *339 - - &656 + - &657 name: per description: The time frame to display results for. in: query @@ -105637,7 +105669,7 @@ paths: - 128 clones: type: array - items: &657 + items: &658 title: Traffic type: object properties: @@ -105885,7 +105917,7 @@ paths: parameters: - *338 - *339 - - *656 + - *657 responses: '200': description: Response @@ -105906,7 +105938,7 @@ paths: - 3782 views: type: array - items: *657 + items: *658 required: - uniques - count @@ -106685,7 +106717,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &658 + text_matches: &659 title: Search Result Text Matches type: array items: @@ -106848,7 +106880,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 +107000,7 @@ paths: type: number node_id: type: string - text_matches: *658 + text_matches: *659 required: - sha - node_id @@ -107160,7 +107192,7 @@ paths: - interactions - created - updated - - *659 + - *660 - *17 - *19 - name: advanced_search @@ -107274,8 +107306,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 +107338,7 @@ paths: - string - 'null' format: date-time - text_matches: *658 + text_matches: *659 pull_request: type: object properties: @@ -107616,7 +107648,7 @@ paths: enum: - created - updated - - *659 + - *660 - *17 - *19 responses: @@ -107661,7 +107693,7 @@ paths: - 'null' score: type: number - text_matches: *658 + text_matches: *659 required: - id - node_id @@ -107746,7 +107778,7 @@ paths: - forks - help-wanted-issues - updated - - *659 + - *660 - *17 - *19 responses: @@ -107992,7 +108024,7 @@ paths: - admin - pull - push - text_matches: *658 + text_matches: *659 temp_clone_token: type: string allow_merge_commit: @@ -108300,7 +108332,7 @@ paths: - string - 'null' format: uri - text_matches: *658 + text_matches: *659 related: type: - array @@ -108493,7 +108525,7 @@ paths: - followers - repositories - joined - - *659 + - *660 - *17 - *19 responses: @@ -108603,7 +108635,7 @@ paths: type: - boolean - 'null' - text_matches: *658 + text_matches: *659 blog: type: - string @@ -108685,7 +108717,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 +108758,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 +108859,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 +108888,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 +108926,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 +108977,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 +109014,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 +109054,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 +109091,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 +109100,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 +109133,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 +109161,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 +109195,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 +109223,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 +109265,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 +109273,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 +109430,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 +109482,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 +109509,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 +109521,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 +109554,7 @@ paths: application/json: schema: oneOf: - - &668 + - &669 title: Private User description: Private User type: object @@ -109772,7 +109804,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 +109964,7 @@ paths: description: Response content: application/json: - schema: *668 + schema: *669 examples: default: value: @@ -110330,7 +110362,7 @@ paths: type: integer secrets: type: array - items: &669 + items: &670 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -110450,7 +110482,7 @@ paths: description: Response content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -110863,7 +110895,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 +110948,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 +110993,9 @@ paths: description: Response content: application/json: - schema: *670 + schema: *671 examples: - default: *671 + default: *672 '404': *6 x-github: githubCloudOnly: false @@ -111002,7 +111034,7 @@ paths: type: array items: *458 examples: - default: *672 + default: *673 '304': *35 '500': *53 '401': *23 @@ -111968,7 +112000,7 @@ paths: type: array items: *260 examples: - default: &683 + default: &684 value: - id: 197 name: hello_docker @@ -112069,7 +112101,7 @@ paths: application/json: schema: type: array - items: &673 + items: &674 title: Email description: Email type: object @@ -112139,9 +112171,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 +112250,7 @@ paths: application/json: schema: type: array - items: *673 + items: *674 examples: default: value: @@ -112476,7 +112508,7 @@ paths: application/json: schema: type: array - items: &674 + items: &675 title: GPG Key description: A unique encryption key type: object @@ -112621,7 +112653,7 @@ paths: - subkeys - revoked examples: - default: &702 + default: &703 value: - id: 3 name: Octocat's GPG Key @@ -112706,9 +112738,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 +112797,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 +112809,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *675 + default: *676 '404': *6 '304': *35 '403': *27 @@ -112802,7 +112834,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 +113301,7 @@ paths: application/json: schema: type: array - items: &677 + items: &678 title: Key description: Key type: object @@ -113372,9 +113404,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: &678 + default: &679 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -113413,9 +113445,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *678 + default: *679 '404': *6 '304': *35 '403': *27 @@ -113471,7 +113503,7 @@ paths: application/json: schema: type: array - items: &679 + items: &680 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -113550,7 +113582,7 @@ paths: - account - plan examples: - default: &680 + default: &681 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -113612,9 +113644,9 @@ paths: application/json: schema: type: array - items: *679 + items: *680 examples: - default: *680 + default: *681 headers: Link: *66 '304': *35 @@ -114632,7 +114664,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *255 - - *681 + - *682 responses: '204': description: Response @@ -114765,7 +114797,7 @@ paths: - docker - nuget - container - - *682 + - *683 - *19 - *17 responses: @@ -114777,8 +114809,8 @@ paths: type: array items: *260 examples: - default: *683 - '400': *684 + default: *684 + '400': *685 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -114807,7 +114839,7 @@ paths: application/json: schema: *260 examples: - default: &703 + default: &704 value: id: 40201 name: octo-name @@ -115169,9 +115201,9 @@ paths: application/json: schema: type: array - items: *673 + items: *674 examples: - default: *685 + default: *686 headers: Link: *66 '304': *35 @@ -115284,7 +115316,7 @@ paths: type: array items: *78 examples: - default: &692 + default: &693 summary: Default response value: - id: 1296269 @@ -115650,7 +115682,7 @@ paths: type: array items: *532 examples: - default: *686 + default: *687 headers: Link: *66 '304': *35 @@ -115735,7 +115767,7 @@ paths: application/json: schema: type: array - items: &687 + items: &688 title: Social account description: Social media account type: object @@ -115752,7 +115784,7 @@ paths: - provider - url examples: - default: &688 + default: &689 value: - provider: twitter url: https://twitter.com/github @@ -115815,9 +115847,9 @@ paths: application/json: schema: type: array - items: *687 + items: *688 examples: - default: *688 + default: *689 '422': *15 '304': *35 '404': *6 @@ -115905,7 +115937,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 +115957,7 @@ paths: - title - created_at examples: - default: &721 + default: &722 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -115990,9 +116022,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: &690 + default: &691 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -116022,7 +116054,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 +116066,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: *690 + default: *691 '404': *6 '304': *35 '403': *27 @@ -116059,7 +116091,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 +116120,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 +116145,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 +116518,10 @@ paths: application/json: schema: oneOf: + - *669 - *668 - - *667 examples: - default-response: &696 + default-response: &697 summary: Default response value: login: octocat @@ -116524,7 +116556,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 +116613,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 +116679,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *693 + - *694 - *17 responses: '200': @@ -116682,7 +116714,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 +116789,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 +116841,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 +116895,8 @@ paths: required: - subject_digests examples: - default: *698 - withPredicateType: *699 + default: *699 + withPredicateType: *700 responses: '200': description: Response @@ -116918,7 +116950,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 +117468,7 @@ paths: application/json: schema: *194 examples: - default: &701 + default: &702 summary: Example response for a user copilot space value: id: 42 @@ -117537,7 +117569,7 @@ paths: application/json: schema: *194 examples: - default: *701 + default: *702 '403': *27 '404': *6 x-github: @@ -117663,7 +117695,7 @@ paths: application/json: schema: *194 examples: - default: *701 + default: *702 '403': *27 '404': *6 '422': *15 @@ -118431,7 +118463,7 @@ paths: type: array items: *260 examples: - default: *683 + default: *684 '403': *27 '401': *23 x-github: @@ -118815,9 +118847,9 @@ paths: application/json: schema: type: array - items: *674 + items: *675 examples: - default: *702 + default: *703 headers: Link: *66 x-github: @@ -119046,7 +119078,7 @@ paths: - docker - nuget - container - - *682 + - *683 - *70 - *19 - *17 @@ -119059,10 +119091,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 +119124,7 @@ paths: application/json: schema: *260 examples: - default: *703 + default: *704 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -119441,7 +119473,7 @@ paths: type: array items: *281 examples: - default: *704 + default: *705 headers: Link: *66 '304': *35 @@ -119501,7 +119533,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 +119549,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *706 + iteration_configuration: *707 required: - name - data_type @@ -119539,8 +119571,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 +119580,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 +119606,7 @@ paths: url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - *278 - - *714 + - *715 - *70 responses: '200': @@ -119583,7 +119615,7 @@ paths: application/json: schema: *281 examples: - default: *715 + default: *716 headers: Link: *66 '304': *35 @@ -119940,7 +119972,7 @@ paths: parameters: - *278 - *70 - - *716 + - *717 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -120215,7 +120247,7 @@ paths: - *116 - *118 - *117 - - *717 + - *718 - *119 responses: '200': @@ -120346,7 +120378,7 @@ paths: parameters: - *70 - *116 - - *718 + - *719 - *117 responses: '200': @@ -120445,9 +120477,9 @@ paths: - *116 - *118 - *117 - - *719 - - *119 - *720 + - *119 + - *721 responses: '200': description: Response when getting a billing usage summary @@ -120581,9 +120613,9 @@ paths: application/json: schema: type: array - items: *687 + items: *688 examples: - default: *688 + default: *689 headers: Link: *66 x-github: @@ -120613,9 +120645,9 @@ paths: application/json: schema: type: array - items: *689 + items: *690 examples: - default: *721 + default: *722 headers: Link: *66 x-github: @@ -120640,7 +120672,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 +120684,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 +120848,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 +120917,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 +120938,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 +121011,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 +121951,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 +122030,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 +122257,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 +122449,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 +122537,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 +122647,7 @@ webhooks: - examples: - neutral - deployment: *729 + deployment: *730 details_url: type: string examples: @@ -122713,10 +122745,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 +123139,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 +123537,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 +123944,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 +124933,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 +125645,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 +126351,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 +126675,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 +127096,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 +127384,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 +127735,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 +128030,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 +128040,7 @@ webhooks: type: - string - 'null' - repository: *727 + repository: *728 sender: *4 required: - action @@ -128254,12 +128286,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 +128612,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 +128875,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 +128959,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 +128980,7 @@ webhooks: enum: - tag - branch - repository: *727 + repository: *728 sender: *4 required: - ref @@ -129031,9 +129063,9 @@ webhooks: enum: - created definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -129118,9 +129150,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 +129230,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 +129310,9 @@ webhooks: enum: - updated definition: *289 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *725 + installation: *726 + organization: *727 sender: *4 required: - action @@ -129357,10 +129389,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 +129477,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 +129569,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 +129653,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 +129738,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 +129823,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 +129906,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 +129989,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 +130073,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 +130156,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 +130236,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 +130276,8 @@ webhooks: - verified - created_at - read_only - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -130322,11 +130354,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 +130925,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 +131685,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 +131758,7 @@ webhooks: type: string enum: - approved - approver: &736 + approver: &737 type: object properties: avatar_url: @@ -131769,11 +131801,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 +131886,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &738 + workflow_job_run: &739 type: object properties: conclusion: @@ -132600,18 +132632,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 +133360,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 +135299,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 +135995,7 @@ webhooks: type: string enum: - answered - answer: &742 + answer: &743 type: object properties: author_association: @@ -136123,11 +136155,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 +136286,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 +136373,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 +136459,7 @@ webhooks: type: string enum: - created - comment: &741 + comment: &742 type: object properties: author_association: @@ -136587,11 +136619,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 +136706,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 +136806,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 +136895,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 +136981,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 +137085,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 +137171,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 +137207,8 @@ webhooks: - color - default - description - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -137259,11 +137291,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 +137377,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 +137463,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 +137552,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 +137644,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 +137729,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 +137817,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 +137903,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 +137980,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 +138658,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 +138806,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 +138846,7 @@ webhooks: - action - sha - html_url - repository: *727 + repository: *728 sender: *4 required: - pages @@ -138890,10 +138922,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 +138951,8 @@ webhooks: - name - full_name - private - repository: *727 - requester: *744 + repository: *728 + requester: *745 sender: *4 required: - action @@ -138995,11 +139027,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 +139108,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 +139189,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 +139238,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 +139325,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 +139355,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 +139436,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 +139622,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 +139704,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 +139960,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 +140773,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 +141135,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -141184,7 +141216,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 +141387,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 +142196,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 +142560,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -142609,7 +142641,7 @@ webhooks: type: string enum: - edited - changes: &772 + changes: &773 description: The changes to the comment. type: object properties: @@ -142621,9 +142653,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 +143466,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 +143828,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -143878,9 +143910,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 +144725,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 +145089,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -145138,9 +145170,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 +145985,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 +146349,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -146407,9 +146439,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 +146530,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 +146620,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 +146711,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 +146793,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 +147607,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 +147731,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -147780,8 +147812,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 +148629,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 +148896,8 @@ webhooks: required: - state - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -148944,8 +148976,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 +149784,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 +149907,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -149955,8 +149987,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 +150818,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 +150920,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 +151063,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -151131,8 +151163,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 +151975,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 +152099,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 +152181,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 +152302,8 @@ webhooks: - id required: - from - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -152351,9 +152383,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 +152448,8 @@ webhooks: - 'null' required: - id - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -152497,8 +152529,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 +153340,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 +153464,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 +153546,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 +154382,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 +154483,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -154531,8 +154563,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 +155393,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 +155494,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 +156383,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 +156979,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 +157787,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 +157914,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -157963,9 +157995,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 +158802,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 +158925,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -158973,8 +159005,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 +159839,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 +159941,8 @@ webhooks: user_view_type: type: string type: *243 - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -160798,8 +160830,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 +161444,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 +161528,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 +161614,7 @@ webhooks: type: string enum: - unassigned - assignee: &775 + assignee: &776 title: User type: - object @@ -161654,11 +161686,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 +161769,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 +161854,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 +162688,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 +162789,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -162838,11 +162870,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 +162953,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 +163038,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 +163120,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 +163234,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 +163320,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 +163410,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 +163495,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -163543,10 +163575,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 +163666,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -163716,10 +163748,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 +163837,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *728 sender: *4 required: - action @@ -163886,8 +163918,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 +164005,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 +164087,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 +164194,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 +164300,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 +164383,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 +164465,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 +164547,7 @@ webhooks: required: - login - id - team: &754 + team: &755 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -164745,11 +164777,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 +164860,7 @@ webhooks: required: - login - id - team: *754 + team: *755 required: - action - scope @@ -164910,8 +164942,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 +164969,8 @@ webhooks: - base_sha - base_ref - head_commit - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165024,10 +165056,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 +165132,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 +165241,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 +165326,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 +165409,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 +165553,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -165601,11 +165633,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 +165747,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 +165831,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 +165914,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 +165997,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 +166080,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 +166192,8 @@ webhooks: - role - organization_url - user - organization: *726 - repository: *727 + organization: *727 + repository: *728 sender: *4 required: - action @@ -166239,11 +166271,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 +166354,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 +166477,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 +166558,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 +166649,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 +166730,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 +167255,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &758 + items: &759 title: Ruby Gems metadata type: object properties: @@ -167320,7 +167352,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -167396,9 +167428,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 +167792,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *758 + items: *759 source_url: type: string format: uri @@ -167831,7 +167863,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -168011,12 +168043,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 +168125,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 +168275,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 +168355,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 +168435,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 +168514,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 +168623,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 +168655,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 +168901,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 +169027,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -169076,11 +169108,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 +169192,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 +169324,7 @@ webhooks: repository: anyOf: - type: 'null' - - *727 + - *728 sender: *4 required: - action @@ -169386,11 +169418,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 +169516,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 +169715,7 @@ webhooks: type: string required: - after_id - repository: *727 + repository: *728 sender: *4 required: - action @@ -169763,10 +169795,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 +169925,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -169973,10 +170005,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 +170048,7 @@ webhooks: - name - created_at - updated_at - repository: *727 + repository: *728 sender: *4 required: - action @@ -170095,14 +170127,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 +170223,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 +170307,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 +170391,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 +170475,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 +170583,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 +170666,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 +170751,8 @@ webhooks: type: string enum: - closed - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -170802,8 +170834,8 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -170885,8 +170917,8 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -171008,8 +171040,8 @@ webhooks: type: string to: type: string - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -171093,7 +171125,7 @@ webhooks: type: string enum: - archived - changes: &767 + changes: &768 type: object properties: archived_at: @@ -171109,9 +171141,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 +171283,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 +171367,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 +171450,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 +171557,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 +171581,7 @@ webhooks: required: - id - name - - &766 + - &767 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -171589,8 +171621,8 @@ webhooks: oneOf: - type: string - type: integer - - *765 - *766 + - *767 type: - 'null' - string @@ -171613,9 +171645,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 +171744,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 +171829,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 +171914,8 @@ webhooks: type: string enum: - reopened - installation: *725 - organization: *726 + installation: *726 + organization: *727 projects_v2: *276 sender: *4 required: @@ -171965,9 +171997,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 +172080,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 +172228,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 +172301,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 +172381,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 +174758,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -174823,11 +174855,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 +177223,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *728 sender: *4 required: - action @@ -177288,11 +177320,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 +179688,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *728 sender: *4 required: - action @@ -179753,11 +179785,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 +179853,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *727 + repository: *728 sender: *4 required: - action @@ -179902,12 +179934,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 +180019,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 +182414,7 @@ webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *727 + repository: *728 sender: *4 required: - action @@ -182461,11 +182493,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 +184865,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *727 + repository: *728 sender: *4 required: - action @@ -184965,12 +184997,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 +185082,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 +187439,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -187495,11 +187527,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 +189901,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -189965,10 +189997,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 +192368,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -192431,12 +192463,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 +192547,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 +192633,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 +192718,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 +193098,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 +195352,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -195415,7 +195447,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 +195740,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 +197982,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -198045,11 +198077,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 +200324,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *728 sender: *4 required: - action @@ -200388,9 +200420,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 +202677,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 review: description: The review that was affected. type: object @@ -202911,9 +202943,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 +205059,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 +205306,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 +207680,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_reviewer: title: User type: @@ -207734,12 +207766,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 +210147,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 +210365,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 +212741,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 requested_reviewer: title: User type: @@ -212796,12 +212828,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 +215195,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 +215402,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 +217662,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: *774 + repository: *728 + review: *775 sender: *4 required: - action @@ -217726,9 +217758,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 +219913,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 sender: *4 thread: type: object @@ -220286,9 +220318,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 +222456,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *728 sender: *4 thread: type: object @@ -222831,10 +222863,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 +225223,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -225288,11 +225320,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 +227696,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -227758,11 +227790,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 +230155,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -230219,10 +230251,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 +232605,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *728 sender: *4 required: - action @@ -232791,7 +232823,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 +232918,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 +233518,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 +233997,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *758 + items: *759 summary: type: string tag_name: @@ -234021,7 +234053,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -234099,9 +234131,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 +234445,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *758 + items: *759 summary: type: string tag_name: @@ -234463,7 +234495,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *728 sender: *4 required: - action @@ -234540,10 +234572,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 +234906,7 @@ webhooks: - updated_at - zipball_url - body - repository: *727 + repository: *728 sender: *4 required: - action @@ -234951,11 +234983,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 +235104,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 +235186,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 +235524,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *728 sender: *4 required: - action @@ -235568,10 +235600,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 +235936,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *728 sender: *4 required: - action @@ -235980,11 +236012,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 +236092,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 +236172,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 +236252,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 +236332,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 +236412,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 +236493,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 +236581,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 +236699,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 +236774,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 +236858,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 +236938,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 +237035,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 +237118,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 +237200,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 +237282,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 +237593,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 +237674,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 +237755,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 +237880,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 +238093,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 +238174,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 +238380,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 +238461,7 @@ webhooks: type: string enum: - assigned - alert: &779 + alert: &780 type: object properties: number: *178 @@ -238569,10 +238601,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 +238682,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 +238767,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 +239009,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 +239091,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 +239173,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 +239255,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 +239338,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 +239472,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 +239553,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 +239761,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 +239838,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 +240036,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 +240117,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 +240427,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 +240520,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 +240602,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 +240686,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &784 + changes: &785 type: object properties: tier: @@ -240698,13 +240730,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 +240813,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 +240893,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 +240980,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 +241417,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 +241541,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 +241632,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 +241723,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 +241814,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 +241892,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 +242127,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 +242599,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -242643,9 +242675,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 +243147,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -243192,9 +243224,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 +243696,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -243808,9 +243840,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 +244312,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - changes @@ -244358,9 +244390,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 +244862,7 @@ webhooks: - topics - visibility sender: *4 - team: *785 + team: *786 required: - action - team @@ -244906,10 +244938,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 +245014,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 +245106,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 +245444,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 +245808,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 +246036,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 +246266,12 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *725 + {"code":"deadline_exceeded","msg":"operation timed out"}