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 bd49a5c134..ee379cc49e 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 @@ -18349,6 +18349,9 @@ }, { "$ref": "#/components/parameters/personal-access-token-after" + }, + { + "$ref": "#/components/parameters/personal-access-token-token-id" } ], "responses": { @@ -18696,6 +18699,9 @@ }, { "$ref": "#/components/parameters/personal-access-token-after" + }, + { + "$ref": "#/components/parameters/personal-access-token-token-id" } ], "responses": { @@ -38049,7 +38055,7 @@ }, "put": { "summary": "Create or update a repository secret", - "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -38127,7 +38133,7 @@ }, "delete": { "summary": "Delete a repository secret", - "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -42482,7 +42488,7 @@ }, "post": { "summary": "Create a custom deployment protection rule on an environment", - "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", "tags": [ "repos" ], @@ -95297,6 +95303,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -95367,6 +95374,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -95377,6 +95385,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -307637,6 +307646,22 @@ "format": "date-time" } }, + "personal-access-token-token-id": { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } + }, "fine-grained-personal-access-token-id": { "name": "pat_id", "description": "The unique identifier of the fine-grained personal access token.", 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 8f62ed1322..130e247f06 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 @@ -13313,6 +13313,7 @@ paths: - "$ref": "#/components/parameters/personal-access-token-permission" - "$ref": "#/components/parameters/personal-access-token-before" - "$ref": "#/components/parameters/personal-access-token-after" + - "$ref": "#/components/parameters/personal-access-token-token-id" responses: '500': "$ref": "#/components/responses/internal_error" @@ -13555,6 +13556,7 @@ paths: - "$ref": "#/components/parameters/personal-access-token-permission" - "$ref": "#/components/parameters/personal-access-token-before" - "$ref": "#/components/parameters/personal-access-token-after" + - "$ref": "#/components/parameters/personal-access-token-token-id" responses: '500': "$ref": "#/components/responses/internal_error" @@ -27672,7 +27674,7 @@ paths: Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/create-or-update-repo-secret @@ -27727,7 +27729,7 @@ paths: description: |- Deletes a development environment secret in a repository using the secret name. - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/delete-repo-secret @@ -31015,7 +31017,7 @@ paths: The authenticated user must have admin or owner permissions to the repository to use this endpoint. - For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app). + For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules). OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. tags: @@ -68874,6 +68876,7 @@ components: id: description: Unique identifier of the webhook delivery. type: integer + format: int64 examples: - 42 guid: @@ -68926,6 +68929,7 @@ components: type: - integer - 'null' + format: int64 examples: - 123 repository_id: @@ -68933,6 +68937,7 @@ components: type: - integer - 'null' + format: int64 examples: - 123 throttled_at: @@ -230474,6 +230479,18 @@ components: schema: type: string format: date-time + personal-access-token-token-id: + name: token_id + description: The ID of the token + in: query + required: false + schema: + type: array + maxItems: 50 + items: + type: string + examples: + - token_id[]=1,token_id[]=2 fine-grained-personal-access-token-id: name: pat_id description: The unique identifier of the fine-grained personal access token. diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index bd49a5c134..ee379cc49e 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -18349,6 +18349,9 @@ }, { "$ref": "#/components/parameters/personal-access-token-after" + }, + { + "$ref": "#/components/parameters/personal-access-token-token-id" } ], "responses": { @@ -18696,6 +18699,9 @@ }, { "$ref": "#/components/parameters/personal-access-token-after" + }, + { + "$ref": "#/components/parameters/personal-access-token-token-id" } ], "responses": { @@ -38049,7 +38055,7 @@ }, "put": { "summary": "Create or update a repository secret", - "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -38127,7 +38133,7 @@ }, "delete": { "summary": "Delete a repository secret", - "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -42482,7 +42488,7 @@ }, "post": { "summary": "Create a custom deployment protection rule on an environment", - "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", "tags": [ "repos" ], @@ -95297,6 +95303,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -95367,6 +95374,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -95377,6 +95385,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -307637,6 +307646,22 @@ "format": "date-time" } }, + "personal-access-token-token-id": { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } + }, "fine-grained-personal-access-token-id": { "name": "pat_id", "description": "The unique identifier of the fine-grained personal access token.", diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 8f62ed1322..130e247f06 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -13313,6 +13313,7 @@ paths: - "$ref": "#/components/parameters/personal-access-token-permission" - "$ref": "#/components/parameters/personal-access-token-before" - "$ref": "#/components/parameters/personal-access-token-after" + - "$ref": "#/components/parameters/personal-access-token-token-id" responses: '500': "$ref": "#/components/responses/internal_error" @@ -13555,6 +13556,7 @@ paths: - "$ref": "#/components/parameters/personal-access-token-permission" - "$ref": "#/components/parameters/personal-access-token-before" - "$ref": "#/components/parameters/personal-access-token-after" + - "$ref": "#/components/parameters/personal-access-token-token-id" responses: '500': "$ref": "#/components/responses/internal_error" @@ -27672,7 +27674,7 @@ paths: Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/create-or-update-repo-secret @@ -27727,7 +27729,7 @@ paths: description: |- Deletes a development environment secret in a repository using the secret name. - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/delete-repo-secret @@ -31015,7 +31017,7 @@ paths: The authenticated user must have admin or owner permissions to the repository to use this endpoint. - For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app). + For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules). OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. tags: @@ -68874,6 +68876,7 @@ components: id: description: Unique identifier of the webhook delivery. type: integer + format: int64 examples: - 42 guid: @@ -68926,6 +68929,7 @@ components: type: - integer - 'null' + format: int64 examples: - 123 repository_id: @@ -68933,6 +68937,7 @@ components: type: - integer - 'null' + format: int64 examples: - 123 throttled_at: @@ -230474,6 +230479,18 @@ components: schema: type: string format: date-time + personal-access-token-token-id: + name: token_id + description: The ID of the token + in: query + required: false + schema: + type: array + maxItems: 50 + items: + type: string + examples: + - token_id[]=1,token_id[]=2 fine-grained-personal-access-token-id: name: pat_id description: The unique identifier of the fine-grained personal access token. 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 0b2ccab73b..3643c4fa02 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 @@ -3564,6 +3564,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -3634,6 +3635,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -3644,6 +3646,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -99172,6 +99175,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -99242,6 +99246,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -99252,6 +99257,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -127202,6 +127208,22 @@ "type": "string", "format": "date-time" } + }, + { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } } ], "responses": { @@ -129430,6 +129452,22 @@ "type": "string", "format": "date-time" } + }, + { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } } ], "responses": { @@ -273002,7 +273040,7 @@ }, "put": { "summary": "Create or update a repository secret", - "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -273102,7 +273140,7 @@ }, "delete": { "summary": "Delete a repository secret", - "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -310997,7 +311035,7 @@ }, "post": { "summary": "Create a custom deployment protection rule on an environment", - "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", "tags": [ "repos" ], @@ -328141,6 +328179,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -328211,6 +328250,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -328221,6 +328261,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] 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 8c96223006..7040e8b85d 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 @@ -897,7 +897,7 @@ paths: - subscriptions_url - type - url - type: &237 + type: &238 type: string description: The type of credit the user is receiving. enum: @@ -1063,7 +1063,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &553 + - &554 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1684,6 +1684,7 @@ paths: id: description: Unique identifier of the webhook delivery. type: integer + format: int64 examples: - 42 guid: @@ -1738,6 +1739,7 @@ paths: type: - integer - 'null' + format: int64 examples: - 123 repository_id: @@ -1745,6 +1747,7 @@ paths: type: - integer - 'null' + format: int64 examples: - 123 throttled_at: @@ -8948,7 +8951,7 @@ paths: - direct - transitive - - security_advisory: &405 + security_advisory: &406 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9216,7 +9219,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &406 + auto_dismissed_at: &407 type: - string - 'null' @@ -9590,7 +9593,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &228 + - &229 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -9601,7 +9604,7 @@ paths: enum: - open - resolved - - &229 + - &230 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -9611,7 +9614,7 @@ paths: required: false schema: type: string - - &230 + - &231 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -9620,7 +9623,7 @@ paths: required: false schema: type: string - - &231 + - &232 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. @@ -9636,7 +9639,7 @@ paths: - *17 - *37 - *38 - - &232 + - &233 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -9645,7 +9648,7 @@ paths: required: false schema: type: string - - &233 + - &234 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -9654,7 +9657,7 @@ paths: schema: type: boolean default: false - - &234 + - &235 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -9670,7 +9673,7 @@ paths: application/json: schema: type: array - items: &235 + items: &236 type: object properties: number: *52 @@ -9686,14 +9689,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &545 + state: &546 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: &546 + resolution: &547 type: - string - 'null' @@ -9798,7 +9801,7 @@ paths: description: A boolean value representing whether or not alert is base64 encoded examples: - default: &236 + default: &237 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -10251,7 +10254,7 @@ paths: milestone: anyOf: - type: 'null' - - &393 + - &394 title: Milestone description: A collection of related issues and pull requests. @@ -10515,7 +10518,7 @@ paths: - author_association - created_at - updated_at - comment: &452 + comment: &453 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -11090,7 +11093,7 @@ paths: url: type: string format: uri - user: &576 + user: &577 title: Public User description: Public User type: object @@ -14447,14 +14450,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &261 + - &262 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &262 + - &263 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -14525,7 +14528,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &273 + '301': &274 description: Moved permanently content: application/json: @@ -14547,7 +14550,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &481 + - &482 name: all description: If `true`, show notifications marked as read. in: query @@ -14555,7 +14558,7 @@ paths: schema: type: boolean default: false - - &482 + - &483 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -14565,7 +14568,7 @@ paths: type: boolean default: false - *64 - - &483 + - &484 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -14936,7 +14939,7 @@ paths: type: boolean examples: - false - security_and_analysis: &218 + security_and_analysis: &219 type: - object - 'null' @@ -15083,7 +15086,7 @@ paths: - url - subscription_url examples: - default: &484 + default: &485 value: - id: '1' repository: @@ -15704,7 +15707,7 @@ paths: - avatar_url - description examples: - default: &593 + default: &594 value: - login: github id: 1 @@ -16680,7 +16683,7 @@ paths: type: integer repository_cache_usages: type: array - items: &278 + items: &279 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -17578,7 +17581,7 @@ paths: - all - local_only - selected - selected_actions_url: &284 + selected_actions_url: &285 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -17668,7 +17671,7 @@ paths: type: array items: *59 examples: - default: &587 + default: &588 value: total_count: 1 repositories: @@ -17996,7 +17999,7 @@ paths: description: Response content: application/json: - schema: &288 + schema: &289 type: object properties: default_workflow_permissions: &108 @@ -18047,7 +18050,7 @@ paths: required: false content: application/json: - schema: &289 + schema: &290 type: object properties: default_workflow_permissions: *108 @@ -18540,7 +18543,7 @@ paths: type: array items: *115 examples: - default: &579 + default: &580 value: total_count: 1 repositories: @@ -19187,7 +19190,7 @@ paths: application/json: schema: type: array - items: &290 + items: &291 title: Runner Application description: Runner Application type: object @@ -19212,7 +19215,7 @@ paths: - download_url - filename examples: - default: &291 + default: &292 value: - os: osx architecture: x64 @@ -19298,7 +19301,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &292 + '201': &293 description: Response content: application/json: @@ -19413,7 +19416,7 @@ paths: - token - expires_at examples: - default: &293 + default: &294 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -19452,7 +19455,7 @@ paths: application/json: schema: *119 examples: - default: &294 + default: &295 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -19486,7 +19489,7 @@ paths: application/json: schema: *117 examples: - default: &295 + default: &296 value: id: 23 name: MBP @@ -19711,7 +19714,7 @@ paths: - *90 - *116 responses: - '200': &296 + '200': &297 description: Response content: application/json: @@ -19768,7 +19771,7 @@ paths: parameters: - *90 - *116 - - &297 + - &298 name: name description: The name of a self-hosted runner's custom label. in: path @@ -19900,7 +19903,7 @@ paths: description: Response content: application/json: - schema: &309 + schema: &310 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -19935,7 +19938,7 @@ paths: - key_id - key examples: - default: &310 + default: &311 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -20348,7 +20351,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *90 - - &283 + - &284 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -20888,7 +20891,7 @@ paths: bundle_url: type: string examples: - default: &323 + default: &324 value: attestations: - bundle: @@ -21125,7 +21128,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *90 - - &348 + - &349 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -21135,7 +21138,7 @@ paths: schema: &131 type: string description: The name of the tool used to generate the code scanning analysis. - - &349 + - &350 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -21159,7 +21162,7 @@ paths: be returned. in: query required: false - schema: &351 + schema: &352 type: string description: State of a code scanning alert. enum: @@ -21182,7 +21185,7 @@ paths: be returned. in: query required: false - schema: &352 + schema: &353 type: string description: Severity of a code scanning alert. enum: @@ -21208,7 +21211,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: &353 + instances_url: &354 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -21230,7 +21233,7 @@ paths: - type: 'null' - *4 dismissed_at: *130 - dismissed_reason: &354 + dismissed_reason: &355 type: - string - 'null' @@ -21241,14 +21244,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &355 + dismissed_comment: &356 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &356 + rule: &357 type: object properties: id: @@ -21309,7 +21312,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &357 + tool: &358 type: object properties: name: *131 @@ -21320,15 +21323,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *132 - most_recent_instance: &358 + most_recent_instance: &359 type: object properties: - ref: &350 + ref: &351 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &368 + analysis_key: &369 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -21339,7 +21342,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &369 + category: &370 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -22618,7 +22621,7 @@ paths: machine: anyOf: - type: 'null' - - &381 + - &382 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -23570,7 +23573,7 @@ paths: - updated_at - visibility examples: - default: &382 + default: &383 value: total_count: 2 secrets: @@ -23608,7 +23611,7 @@ paths: description: Response content: application/json: - schema: &383 + schema: &384 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -23643,7 +23646,7 @@ paths: - key_id - key examples: - default: &384 + default: &385 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23675,7 +23678,7 @@ paths: application/json: schema: *141 examples: - default: &386 + default: &387 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -24870,7 +24873,7 @@ paths: application/json: schema: type: array - items: &241 + items: &242 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -25185,7 +25188,7 @@ paths: - date additionalProperties: true examples: - default: &242 + default: &243 value: - date: '2024-06-24' total_active_users: 24 @@ -25287,7 +25290,7 @@ paths: '500': *140 '403': *27 '404': *6 - '422': &243 + '422': &244 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -25355,7 +25358,7 @@ paths: application/json: schema: type: array - items: &244 + items: &245 title: Copilot Usage Metrics description: Summary of Copilot usage. type: object @@ -25443,7 +25446,7 @@ paths: - breakdown additionalProperties: false examples: - default: &245 + default: &246 value: - day: '2023-10-15' total_suggestions_count: 1000 @@ -25678,7 +25681,7 @@ paths: description: Response content: application/json: - schema: &409 + schema: &410 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -25697,7 +25700,7 @@ paths: - key_id - key examples: - default: &410 + default: &411 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27518,7 +27521,7 @@ paths: application/json: schema: *20 examples: - default: &448 + default: &449 value: id: 1 account: @@ -27746,7 +27749,7 @@ paths: required: true content: application/json: - schema: &449 + schema: &450 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -28358,7 +28361,7 @@ paths: application/json: schema: *184 examples: - default: &380 + default: &381 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -29596,7 +29599,7 @@ paths: parameters: - *90 - *191 - - &592 + - &593 name: repo_name description: repo_name parameter in: path @@ -30639,7 +30642,7 @@ paths: - nuget - container - *90 - - &594 + - &595 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -30680,7 +30683,7 @@ paths: default: *198 '403': *27 '401': *23 - '400': &596 + '400': &597 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -31190,6 +31193,18 @@ paths: schema: type: string format: date-time + - &210 + name: token_id + description: The ID of the token + in: query + required: false + schema: + type: array + maxItems: 50 + items: + type: string + examples: + - token_id[]=1,token_id[]=2 responses: '500': *140 '422': *15 @@ -31530,6 +31545,7 @@ paths: - *207 - *208 - *209 + - *210 responses: '500': *140 '422': *15 @@ -31857,7 +31873,7 @@ paths: type: integer configurations: type: array - items: &210 + items: &211 title: Organization private registry description: Private registry configuration for an organization type: object @@ -32069,7 +32085,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &211 + org-private-registry-with-selected-visibility: &212 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -32171,9 +32187,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *210 + schema: *211 examples: - default: *211 + default: *212 '404': *6 x-github: githubCloudOnly: false @@ -32324,7 +32340,7 @@ paths: application/json: schema: type: array - items: &212 + items: &213 title: Project description: Projects are a way to organize columns and cards of work. @@ -32506,7 +32522,7 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: default: value: @@ -32544,7 +32560,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &270 + '410': &271 description: Gone content: application/json: @@ -32579,7 +32595,7 @@ paths: application/json: schema: type: array - items: &213 + items: &214 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -32655,7 +32671,7 @@ paths: - property_name - value_type examples: - default: &214 + default: &215 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -32710,7 +32726,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *213 + items: *214 minItems: 1 maxItems: 100 required: @@ -32740,9 +32756,9 @@ paths: application/json: schema: type: array - items: *213 + items: *214 examples: - default: *214 + default: *215 '403': *27 '404': *6 x-github: @@ -32764,7 +32780,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *90 - - &215 + - &216 name: custom_property_name description: The custom property name in: path @@ -32776,9 +32792,9 @@ paths: description: Response content: application/json: - schema: *213 + schema: *214 examples: - default: &216 + default: &217 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -32813,7 +32829,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *90 - - *215 + - *216 requestBody: required: true content: @@ -32880,9 +32896,9 @@ paths: description: Response content: application/json: - schema: *213 + schema: *214 examples: - default: *216 + default: *217 '403': *27 '404': *6 x-github: @@ -32906,7 +32922,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *90 - - *215 + - *216 responses: '204': *137 '403': *27 @@ -32970,7 +32986,7 @@ paths: - octocat/Hello-World properties: type: array - items: &217 + items: &218 title: Custom Property Value description: Custom property name and associated value type: object @@ -33060,7 +33076,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *217 + items: *218 required: - repository_names - properties @@ -33455,7 +33471,7 @@ paths: description: Response content: application/json: - schema: &272 + schema: &273 title: Full Repository description: Full Repository type: object @@ -33920,7 +33936,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &399 + code_of_conduct: &400 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -33950,7 +33966,7 @@ paths: - key - name - html_url - security_and_analysis: *218 + security_and_analysis: *219 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -34034,7 +34050,7 @@ paths: - network_count - subscribers_count examples: - default: &274 + default: &275 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -34555,7 +34571,7 @@ paths: - *90 - *17 - *19 - - &530 + - &531 name: targets description: | A comma-separated list of rule targets to filter by. @@ -34574,7 +34590,7 @@ paths: application/json: schema: type: array - items: &225 + items: &226 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -34609,7 +34625,7 @@ paths: source: type: string description: The name of the source - enforcement: &221 + enforcement: &222 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -34622,7 +34638,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &222 + items: &223 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -34688,7 +34704,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &219 + - &220 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -34712,7 +34728,7 @@ paths: match. items: type: string - - &223 + - &224 title: Organization ruleset conditions type: object description: |- @@ -34726,7 +34742,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *219 + - *220 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -34760,7 +34776,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *219 + - *220 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -34782,7 +34798,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *219 + - *220 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -34795,7 +34811,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &220 + items: &221 title: Repository ruleset property targeting definition type: object @@ -34828,7 +34844,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *220 + items: *221 required: - repository_property type: @@ -34836,12 +34852,12 @@ paths: - object rules: type: array - items: &224 + items: &225 title: Repository Rule type: object description: A repository rule. oneOf: - - &512 + - &513 title: creation description: Only allow users with bypass permission to create matching refs. @@ -34853,7 +34869,7 @@ paths: type: string enum: - creation - - &513 + - &514 title: update description: Only allow users with bypass permission to update matching refs. @@ -34874,7 +34890,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &515 + - &516 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -34886,7 +34902,7 @@ paths: type: string enum: - deletion - - &516 + - &517 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -34898,7 +34914,7 @@ paths: type: string enum: - required_linear_history - - &517 + - &518 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -34976,7 +34992,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &518 + - &519 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -35000,7 +35016,7 @@ paths: type: string required: - required_deployment_environments - - &519 + - &520 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -35012,7 +35028,7 @@ paths: type: string enum: - required_signatures - - &520 + - &521 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -35065,7 +35081,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &521 + - &522 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -35113,7 +35129,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &522 + - &523 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -35125,7 +35141,7 @@ paths: type: string enum: - non_fast_forward - - &523 + - &524 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -35161,7 +35177,7 @@ paths: required: - operator - pattern - - &524 + - &525 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -35197,7 +35213,7 @@ paths: required: - operator - pattern - - &525 + - &526 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -35233,7 +35249,7 @@ paths: required: - operator - pattern - - &526 + - &527 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -35269,7 +35285,7 @@ paths: required: - operator - pattern - - &527 + - &528 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -35395,7 +35411,7 @@ paths: maximum: 100 required: - max_file_size - - &528 + - &529 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -35445,7 +35461,7 @@ paths: - repository_id required: - workflows - - &529 + - &530 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -35579,16 +35595,16 @@ paths: - push - repository default: branch - enforcement: *221 + enforcement: *222 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *222 - conditions: *223 + items: *223 + conditions: *224 rules: type: array description: An array of rules within the ruleset. - items: *224 + items: *225 required: - name - enforcement @@ -35626,9 +35642,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *226 examples: - default: &226 + default: &227 value: id: 21 name: super cool ruleset @@ -35683,7 +35699,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *90 - - &531 + - &532 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -35698,7 +35714,7 @@ paths: in: query schema: type: string - - &532 + - &533 name: time_period description: |- The time period to filter by. @@ -35714,14 +35730,14 @@ paths: - week - month default: day - - &533 + - &534 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &534 + - &535 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -35741,7 +35757,7 @@ paths: description: Response content: application/json: - schema: &535 + schema: &536 title: Rule Suites description: Response type: array @@ -35797,7 +35813,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &536 + default: &537 value: - id: 21 actor_id: 12 @@ -35841,7 +35857,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *90 - - &537 + - &538 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -35857,7 +35873,7 @@ paths: description: Response content: application/json: - schema: &538 + schema: &539 title: Rule Suite description: Response type: object @@ -35964,7 +35980,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &539 + default: &540 value: id: 21 actor_id: 12 @@ -36037,9 +36053,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *226 examples: - default: *226 + default: *227 '404': *6 '500': *140 put: @@ -36083,16 +36099,16 @@ paths: - tag - push - repository - enforcement: *221 + enforcement: *222 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *222 - conditions: *223 + items: *223 + conditions: *224 rules: description: An array of rules within the ruleset. type: array - items: *224 + items: *225 examples: default: value: @@ -36127,9 +36143,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *226 examples: - default: *226 + default: *227 '404': *6 '500': *140 delete: @@ -36186,7 +36202,7 @@ paths: application/json: schema: type: array - items: &227 + items: &228 title: Ruleset version type: object description: The historical version of a ruleset @@ -36210,7 +36226,7 @@ paths: type: string format: date-time examples: - default: &541 + default: &542 value: - version_id: 3 actor: @@ -36263,9 +36279,9 @@ paths: description: Response content: application/json: - schema: &542 + schema: &543 allOf: - - *227 + - *228 - type: object required: - state @@ -36335,14 +36351,14 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *90 - - *228 - *229 - *230 - *231 + - *232 - *46 - *19 - *17 - - &543 + - &544 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 @@ -36352,7 +36368,7 @@ paths: required: false schema: type: string - - &544 + - &545 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 @@ -36362,9 +36378,9 @@ paths: required: false schema: type: string - - *232 - *233 - *234 + - *235 responses: '200': description: Response @@ -36372,9 +36388,9 @@ paths: application/json: schema: type: array - items: *235 + items: *236 examples: - default: *236 + default: *237 headers: Link: *57 '404': *6 @@ -36444,7 +36460,7 @@ paths: application/json: schema: type: array - items: &551 + items: &552 description: A repository security advisory. type: object properties: @@ -36688,7 +36704,7 @@ paths: login: type: string description: The username of the user credited. - type: *237 + type: *238 credits_detailed: type: - array @@ -36699,7 +36715,7 @@ paths: type: object properties: user: *4 - type: *237 + type: *238 state: type: string description: The state of the user's acceptance of the @@ -36763,7 +36779,7 @@ paths: - private_fork additionalProperties: false examples: - default: &552 + default: &553 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -37237,7 +37253,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &611 type: object properties: total_minutes_used: @@ -37307,7 +37323,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &611 + default: &612 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -37343,7 +37359,7 @@ paths: description: Response content: application/json: - schema: &612 + schema: &613 type: object properties: total_gigabytes_bandwidth_used: @@ -37361,7 +37377,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &613 + default: &614 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -37393,7 +37409,7 @@ paths: description: Response content: application/json: - schema: &614 + schema: &615 type: object properties: days_left_in_billing_cycle: @@ -37411,7 +37427,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &615 + default: &616 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -37453,7 +37469,7 @@ paths: type: integer network_configurations: type: array - items: &238 + items: &239 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -37578,9 +37594,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: &239 + default: &240 value: id: 123456789ABCDEF name: My network configuration @@ -37609,7 +37625,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *90 - - &240 + - &241 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -37621,9 +37637,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *239 + default: *240 headers: Link: *57 x-github: @@ -37645,7 +37661,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *90 - - *240 + - *241 requestBody: required: true content: @@ -37684,9 +37700,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *239 + default: *240 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37706,7 +37722,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *90 - - *240 + - *241 responses: '204': description: Response @@ -37851,13 +37867,13 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *242 + default: *243 '500': *140 '403': *27 '404': *6 - '422': *243 + '422': *244 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37924,9 +37940,9 @@ paths: application/json: schema: type: array - items: *244 + items: *245 examples: - default: *245 + default: *246 '500': *140 '401': *23 '403': *27 @@ -38054,7 +38070,7 @@ paths: description: Response content: application/json: - schema: &246 + schema: &247 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -38434,7 +38450,7 @@ paths: - repos_count - organization examples: - default: &247 + default: &248 value: id: 1 node_id: MDQ6VGVhbTE= @@ -38511,9 +38527,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '404': *6 x-github: githubCloudOnly: false @@ -38598,16 +38614,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '201': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '404': *6 '422': *15 '403': *27 @@ -38677,7 +38693,7 @@ paths: application/json: schema: type: array - items: &248 + items: &249 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -38788,7 +38804,7 @@ paths: - updated_at - url examples: - default: &566 + default: &567 value: - author: login: octocat @@ -38897,9 +38913,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: &249 + default: &250 value: author: login: octocat @@ -38973,7 +38989,7 @@ paths: parameters: - *90 - *192 - - &250 + - &251 name: discussion_number description: The number that identifies the discussion. in: path @@ -38985,9 +39001,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: *249 + default: *250 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39011,7 +39027,7 @@ paths: parameters: - *90 - *192 - - *250 + - *251 requestBody: required: false content: @@ -39034,9 +39050,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: &567 + default: &568 value: author: login: octocat @@ -39108,7 +39124,7 @@ paths: parameters: - *90 - *192 - - *250 + - *251 responses: '204': description: Response @@ -39136,7 +39152,7 @@ paths: parameters: - *90 - *192 - - *250 + - *251 - *46 - *17 - *19 @@ -39147,7 +39163,7 @@ paths: application/json: schema: type: array - items: &251 + items: &252 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -39227,7 +39243,7 @@ paths: - updated_at - url examples: - default: &568 + default: &569 value: - author: login: octocat @@ -39297,7 +39313,7 @@ paths: parameters: - *90 - *192 - - *250 + - *251 requestBody: required: true content: @@ -39319,9 +39335,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: &252 + default: &253 value: author: login: octocat @@ -39389,8 +39405,8 @@ paths: parameters: - *90 - *192 - - *250 - - &253 + - *251 + - &254 name: comment_number description: The number that identifies the comment. in: path @@ -39402,9 +39418,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *252 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39428,8 +39444,8 @@ paths: parameters: - *90 - *192 - - *250 - - *253 + - *251 + - *254 requestBody: required: true content: @@ -39451,9 +39467,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: &569 + default: &570 value: author: login: octocat @@ -39519,8 +39535,8 @@ paths: parameters: - *90 - *192 - - *250 - - *253 + - *251 + - *254 responses: '204': description: Response @@ -39548,8 +39564,8 @@ paths: parameters: - *90 - *192 - - *250 - - *253 + - *251 + - *254 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -39575,7 +39591,7 @@ paths: application/json: schema: type: array - items: &254 + items: &255 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -39619,7 +39635,7 @@ paths: - content - created_at examples: - default: &256 + default: &257 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -39671,8 +39687,8 @@ paths: parameters: - *90 - *192 - - *250 - - *253 + - *251 + - *254 requestBody: required: true content: @@ -39705,9 +39721,9 @@ paths: team discussion comment content: application/json: - schema: *254 + schema: *255 examples: - default: &255 + default: &256 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -39736,9 +39752,9 @@ paths: description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39763,9 +39779,9 @@ paths: parameters: - *90 - *192 - - *250 - - *253 - - &257 + - *251 + - *254 + - &258 name: reaction_id description: The unique identifier of the reaction. in: path @@ -39799,7 +39815,7 @@ paths: parameters: - *90 - *192 - - *250 + - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -39825,9 +39841,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 x-github: @@ -39855,7 +39871,7 @@ paths: parameters: - *90 - *192 - - *250 + - *251 requestBody: required: true content: @@ -39887,16 +39903,16 @@ paths: description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '201': description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -39921,8 +39937,8 @@ paths: parameters: - *90 - *192 - - *250 - - *257 + - *251 + - *258 responses: '204': description: Response @@ -40043,7 +40059,7 @@ paths: description: Response content: application/json: - schema: &258 + schema: &259 title: Team Membership description: Team Membership type: object @@ -40071,7 +40087,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &570 + response-if-user-is-a-team-maintainer: &571 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -40134,9 +40150,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *259 examples: - response-if-users-membership-with-team-is-now-pending: &571 + response-if-users-membership-with-team-is-now-pending: &572 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -40209,7 +40225,7 @@ paths: application/json: schema: type: array - items: &259 + items: &260 title: Team Project description: A team's access to a project. type: object @@ -40278,7 +40294,7 @@ paths: - updated_at - permissions examples: - default: &572 + default: &573 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -40343,7 +40359,7 @@ paths: parameters: - *90 - *192 - - &260 + - &261 name: project_id description: The unique identifier of the project. in: path @@ -40355,9 +40371,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *260 examples: - default: &573 + default: &574 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -40421,7 +40437,7 @@ paths: parameters: - *90 - *192 - - *260 + - *261 requestBody: required: false content: @@ -40490,7 +40506,7 @@ paths: parameters: - *90 - *192 - - *260 + - *261 responses: '204': description: Response @@ -40561,14 +40577,14 @@ paths: parameters: - *90 - *192 - - *261 - *262 + - *263 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &574 + schema: &575 title: Team Repository description: A team's access to a repository. type: object @@ -41211,8 +41227,8 @@ paths: parameters: - *90 - *192 - - *261 - *262 + - *263 requestBody: required: false content: @@ -41259,8 +41275,8 @@ paths: parameters: - *90 - *192 - - *261 - *262 + - *263 responses: '204': description: Response @@ -41297,7 +41313,7 @@ paths: type: array items: *180 examples: - response-if-child-teams-exist: &575 + response-if-child-teams-exist: &576 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -41424,7 +41440,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#get-a-project-card parameters: - - &263 + - &264 name: card_id description: The unique identifier of the card. in: path @@ -41436,7 +41452,7 @@ paths: description: Response content: application/json: - schema: &264 + schema: &265 title: Project Card description: Project cards represent a scope of work. type: object @@ -41511,7 +41527,7 @@ paths: - created_at - updated_at examples: - default: &265 + default: &266 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -41567,7 +41583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#update-an-existing-project-card parameters: - - *263 + - *264 requestBody: required: false content: @@ -41597,9 +41613,9 @@ paths: description: Response content: application/json: - schema: *264 + schema: *265 examples: - default: *265 + default: *266 '304': *35 '403': *27 '401': *23 @@ -41626,7 +41642,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#delete-a-project-card parameters: - - *263 + - *264 responses: '204': description: Response @@ -41670,7 +41686,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#move-a-project-card parameters: - - *263 + - *264 requestBody: required: true content: @@ -41783,7 +41799,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#get-a-project-column parameters: - - &266 + - &267 name: column_id description: The unique identifier of the column. in: path @@ -41795,7 +41811,7 @@ paths: description: Response content: application/json: - schema: &267 + schema: &268 title: Project Column description: Project columns contain cards of work. type: object @@ -41849,7 +41865,7 @@ paths: - created_at - updated_at examples: - default: &268 + default: &269 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -41884,7 +41900,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#update-an-existing-project-column parameters: - - *266 + - *267 requestBody: required: true content: @@ -41909,9 +41925,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: - default: *268 + default: *269 '304': *35 '403': *27 '401': *23 @@ -41936,7 +41952,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#delete-a-project-column parameters: - - *266 + - *267 responses: '204': description: Response @@ -41965,7 +41981,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#list-project-cards parameters: - - *266 + - *267 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -41986,7 +42002,7 @@ paths: application/json: schema: type: array - items: *264 + items: *265 examples: default: value: @@ -42045,7 +42061,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#create-a-project-card parameters: - - *266 + - *267 requestBody: required: true content: @@ -42089,9 +42105,9 @@ paths: description: Response content: application/json: - schema: *264 + schema: *265 examples: - default: *265 + default: *266 '304': *35 '403': *27 '401': *23 @@ -42147,7 +42163,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#move-a-project-column parameters: - - *266 + - *267 requestBody: required: true content: @@ -42208,15 +42224,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-a-project parameters: - - *260 + - *261 responses: '200': description: Response content: application/json: - schema: *212 + schema: *213 examples: - default: &269 + default: &270 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -42273,7 +42289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#update-a-project parameters: - - *260 + - *261 requestBody: required: false content: @@ -42322,9 +42338,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: - default: *269 + default: *270 '404': description: Not Found if the authenticated user does not have access to the project @@ -42345,7 +42361,7 @@ paths: items: type: string '401': *23 - '410': *270 + '410': *271 '422': *7 x-github: githubCloudOnly: false @@ -42368,7 +42384,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#delete-a-project parameters: - - *260 + - *261 responses: '204': description: Delete Success @@ -42389,7 +42405,7 @@ paths: items: type: string '401': *23 - '410': *270 + '410': *271 '404': *6 x-github: githubCloudOnly: false @@ -42413,7 +42429,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#list-project-collaborators parameters: - - *260 + - *261 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -42470,7 +42486,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#add-project-collaborator parameters: - - *260 + - *261 - *128 requestBody: required: false @@ -42525,7 +42541,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *260 + - *261 - *128 responses: '204': @@ -42557,7 +42573,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *260 + - *261 - *128 responses: '200': @@ -42628,7 +42644,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#list-project-columns parameters: - - *260 + - *261 - *17 - *19 responses: @@ -42638,7 +42654,7 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: default: value: @@ -42676,7 +42692,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#create-a-project-column parameters: - - *260 + - *261 requestBody: required: true content: @@ -42700,7 +42716,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -42764,7 +42780,7 @@ paths: resources: type: object properties: - core: &271 + core: &272 title: Rate Limit type: object properties: @@ -42781,20 +42797,20 @@ paths: - remaining - reset - used - graphql: *271 - search: *271 - code_search: *271 - source_import: *271 - integration_manifest: *271 - code_scanning_upload: *271 - actions_runner_registration: *271 - scim: *271 - dependency_snapshots: *271 - code_scanning_autofix: *271 + graphql: *272 + search: *272 + code_search: *272 + source_import: *272 + integration_manifest: *272 + code_scanning_upload: *272 + actions_runner_registration: *272 + scim: *272 + dependency_snapshots: *272 + code_scanning_autofix: *272 required: - core - search - rate: *271 + rate: *272 required: - rate - resources @@ -42898,14 +42914,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *272 + schema: *273 examples: default-response: summary: Default response @@ -43406,7 +43422,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *273 + '301': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43424,8 +43440,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: false content: @@ -43662,10 +43678,10 @@ paths: description: Response content: application/json: - schema: *272 + schema: *273 examples: - default: *274 - '307': &275 + default: *275 + '307': &276 description: Temporary Redirect content: application/json: @@ -43694,8 +43710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -43717,7 +43733,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *275 + '307': *276 '404': *6 x-github: githubCloudOnly: false @@ -43740,11 +43756,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *261 - *262 + - *263 - *17 - *19 - - &301 + - &302 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -43767,7 +43783,7 @@ paths: type: integer artifacts: type: array - items: &276 + items: &277 title: Artifact description: An artifact type: object @@ -43862,7 +43878,7 @@ paths: - expires_at - updated_at examples: - default: &302 + default: &303 value: total_count: 2 artifacts: @@ -43923,9 +43939,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *261 - *262 - - &277 + - *263 + - &278 name: artifact_id description: The unique identifier of the artifact. in: path @@ -43937,7 +43953,7 @@ paths: description: Response content: application/json: - schema: *276 + schema: *277 examples: default: value: @@ -43975,9 +43991,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *261 - *262 - - *277 + - *263 + - *278 responses: '204': description: Response @@ -44001,9 +44017,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *261 - *262 - - *277 + - *263 + - *278 - name: archive_format in: path required: true @@ -44017,7 +44033,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44040,14 +44056,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *278 + schema: *279 examples: default: value: @@ -44073,11 +44089,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *261 - *262 + - *263 - *17 - *19 - - &279 + - &280 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -44111,7 +44127,7 @@ paths: description: Response content: application/json: - schema: &280 + schema: &281 title: Repository actions caches description: Repository actions caches type: object @@ -44161,7 +44177,7 @@ paths: - total_count - actions_caches examples: - default: &281 + default: &282 value: total_count: 1 actions_caches: @@ -44193,23 +44209,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *261 - *262 + - *263 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *279 + - *280 responses: '200': description: Response content: application/json: - schema: *280 + schema: *281 examples: - default: *281 + default: *282 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44229,8 +44245,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *261 - *262 + - *263 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -44261,9 +44277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *261 - *262 - - &282 + - *263 + - &283 name: job_id description: The unique identifier of the job. in: path @@ -44275,7 +44291,7 @@ paths: description: Response content: application/json: - schema: &305 + schema: &306 title: Job description: Information of a job execution in a workflow run type: object @@ -44622,9 +44638,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *261 - *262 - - *282 + - *263 + - *283 responses: '302': description: Response @@ -44652,9 +44668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *261 - *262 - - *282 + - *263 + - *283 requestBody: required: false content: @@ -44700,8 +44716,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Status response @@ -44751,8 +44767,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -44815,8 +44831,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -44834,7 +44850,7 @@ paths: type: integer secrets: type: array - items: &307 + items: &308 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -44855,7 +44871,7 @@ paths: - created_at - updated_at examples: - default: &308 + default: &309 value: total_count: 2 secrets: @@ -44888,9 +44904,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *261 - *262 - - *283 + - *263 + - *284 - *19 responses: '200': @@ -44907,7 +44923,7 @@ paths: type: integer variables: type: array - items: &311 + items: &312 title: Actions Variable type: object properties: @@ -44941,7 +44957,7 @@ paths: - created_at - updated_at examples: - default: &312 + default: &313 value: total_count: 2 variables: @@ -44974,8 +44990,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -44984,11 +45000,11 @@ paths: schema: type: object properties: - enabled: &285 + enabled: &286 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *104 - selected_actions_url: *284 + selected_actions_url: *285 required: - enabled examples: @@ -45015,8 +45031,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -45027,7 +45043,7 @@ paths: schema: type: object properties: - enabled: *285 + enabled: *286 allowed_actions: *104 required: - enabled @@ -45057,14 +45073,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: &286 + schema: &287 type: object properties: access_level: @@ -45081,7 +45097,7 @@ paths: required: - access_level examples: - default: &287 + default: &288 value: access_level: organization x-github: @@ -45105,15 +45121,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: application/json: - schema: *286 + schema: *287 examples: - default: *287 + default: *288 responses: '204': description: Response @@ -45137,8 +45153,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -45165,8 +45181,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -45198,14 +45214,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *288 + schema: *289 examples: default: *110 x-github: @@ -45228,8 +45244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': description: Success response @@ -45240,7 +45256,7 @@ paths: required: true content: application/json: - schema: *289 + schema: *290 examples: default: *110 x-github: @@ -45269,8 +45285,8 @@ paths: in: query schema: type: string - - *261 - *262 + - *263 - *17 - *19 responses: @@ -45314,8 +45330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -45323,9 +45339,9 @@ paths: application/json: schema: type: array - items: *290 + items: *291 examples: - default: *291 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45347,8 +45363,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -45391,7 +45407,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *292 + '201': *293 '404': *6 '422': *7 '409': *44 @@ -45422,8 +45438,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *261 - *262 + - *263 responses: '201': description: Response @@ -45431,7 +45447,7 @@ paths: application/json: schema: *119 examples: - default: *293 + default: *294 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45459,8 +45475,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *261 - *262 + - *263 responses: '201': description: Response @@ -45468,7 +45484,7 @@ paths: application/json: schema: *119 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45490,8 +45506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *261 - *262 + - *263 - *116 responses: '200': @@ -45500,7 +45516,7 @@ paths: application/json: schema: *117 examples: - default: *295 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45521,8 +45537,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *261 - *262 + - *263 - *116 responses: '204': @@ -45548,8 +45564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *261 - *262 + - *263 - *116 responses: '200': *121 @@ -45574,8 +45590,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *261 - *262 + - *263 - *116 requestBody: required: true @@ -45624,8 +45640,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *261 - *262 + - *263 - *116 requestBody: required: true @@ -45675,11 +45691,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *261 - *262 + - *263 - *116 responses: - '200': *296 + '200': *297 '404': *6 x-github: githubCloudOnly: false @@ -45706,10 +45722,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *261 - *262 + - *263 - *116 - - *297 + - *298 responses: '200': *121 '404': *6 @@ -45737,9 +45753,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *261 - *262 - - &315 + - *263 + - &316 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -45747,7 +45763,7 @@ paths: required: false schema: type: string - - &316 + - &317 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -45755,7 +45771,7 @@ paths: required: false schema: type: string - - &317 + - &318 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -45764,7 +45780,7 @@ paths: required: false schema: type: string - - &318 + - &319 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -45791,7 +45807,7 @@ paths: - pending - *17 - *19 - - &319 + - &320 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -45800,7 +45816,7 @@ paths: schema: type: string format: date-time - - &298 + - &299 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -45809,13 +45825,13 @@ paths: schema: type: boolean default: false - - &320 + - &321 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &321 + - &322 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -45838,7 +45854,7 @@ paths: type: integer workflow_runs: type: array - items: &299 + items: &300 title: Workflow Run description: An invocation of a workflow type: object @@ -45955,7 +45971,7 @@ paths: type: - array - 'null' - items: &340 + items: &341 title: Pull Request Minimal type: object properties: @@ -46082,7 +46098,7 @@ paths: head_commit: anyOf: - type: 'null' - - &344 + - &345 title: Simple Commit description: A commit. type: object @@ -46197,7 +46213,7 @@ paths: - workflow_url - pull_requests examples: - default: &322 + default: &323 value: total_count: 1 workflow_runs: @@ -46433,24 +46449,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *261 - *262 - - &300 + - *263 + - &301 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *298 + - *299 responses: '200': description: Response content: application/json: - schema: *299 + schema: *300 examples: - default: &303 + default: &304 value: id: 30433642 name: Build @@ -46691,9 +46707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '204': description: Response @@ -46716,9 +46732,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '200': description: Response @@ -46846,9 +46862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '201': description: Response @@ -46881,12 +46897,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *261 - *262 - - *300 + - *263 + - *301 - *17 - *19 - - *301 + - *302 responses: '200': description: Response @@ -46902,9 +46918,9 @@ paths: type: integer artifacts: type: array - items: *276 + items: *277 examples: - default: *302 + default: *303 headers: Link: *57 x-github: @@ -46928,25 +46944,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *261 - *262 - - *300 - - &304 + - *263 + - *301 + - &305 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *298 + - *299 responses: '200': description: Response content: application/json: - schema: *299 + schema: *300 examples: - default: *303 + default: *304 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46969,10 +46985,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *261 - *262 - - *300 - - *304 + - *263 + - *301 + - *305 - *17 - *19 responses: @@ -46990,9 +47006,9 @@ paths: type: integer jobs: type: array - items: *305 + items: *306 examples: - default: &306 + default: &307 value: total_count: 1 jobs: @@ -47105,10 +47121,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *261 - *262 - - *300 - - *304 + - *263 + - *301 + - *305 responses: '302': description: Response @@ -47136,9 +47152,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '202': description: Response @@ -47171,9 +47187,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 requestBody: required: true content: @@ -47240,9 +47256,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '202': description: Response @@ -47275,9 +47291,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -47307,9 +47323,9 @@ paths: type: integer jobs: type: array - items: *305 + items: *306 examples: - default: *306 + default: *307 headers: Link: *57 x-github: @@ -47334,9 +47350,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '302': description: Response @@ -47363,9 +47379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '204': description: Response @@ -47392,9 +47408,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '200': description: Response @@ -47463,7 +47479,7 @@ paths: items: type: object properties: - type: &418 + type: &419 type: string description: The type of reviewer. enum: @@ -47549,9 +47565,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 requestBody: required: true content: @@ -47601,7 +47617,7 @@ paths: application/json: schema: type: array - items: &413 + items: &414 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -47713,7 +47729,7 @@ paths: - created_at - updated_at examples: - default: &414 + default: &415 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -47769,9 +47785,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *261 - *262 - - *300 + - *263 + - *301 requestBody: required: false content: @@ -47816,9 +47832,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 requestBody: required: false content: @@ -47872,9 +47888,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '200': description: Response @@ -48011,8 +48027,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -48030,9 +48046,9 @@ paths: type: integer secrets: type: array - items: *307 + items: *308 examples: - default: *308 + default: *309 headers: Link: *57 x-github: @@ -48057,16 +48073,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *309 + schema: *310 examples: - default: *310 + default: *311 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48088,17 +48104,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 responses: '200': description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &431 + default: &432 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -48124,8 +48140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 requestBody: required: true @@ -48183,8 +48199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 responses: '204': @@ -48210,9 +48226,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *261 - *262 - - *283 + - *263 + - *284 - *19 responses: '200': @@ -48229,9 +48245,9 @@ paths: type: integer variables: type: array - items: *311 + items: *312 examples: - default: *312 + default: *313 headers: Link: *57 x-github: @@ -48254,8 +48270,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -48307,17 +48323,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *261 - *262 + - *263 - *126 responses: '200': description: Response content: application/json: - schema: *311 + schema: *312 examples: - default: &432 + default: &433 value: name: USERNAME value: octocat @@ -48343,8 +48359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *261 - *262 + - *263 - *126 requestBody: required: true @@ -48387,8 +48403,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *261 - *262 + - *263 - *126 responses: '204': @@ -48414,8 +48430,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -48433,7 +48449,7 @@ paths: type: integer workflows: type: array - items: &313 + items: &314 title: Workflow description: A GitHub Actions workflow type: object @@ -48551,9 +48567,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *261 - *262 - - &314 + - *263 + - &315 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -48568,7 +48584,7 @@ paths: description: Response content: application/json: - schema: *313 + schema: *314 examples: default: value: @@ -48601,9 +48617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *261 - *262 - - *314 + - *263 + - *315 responses: '204': description: Response @@ -48628,9 +48644,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *261 - *262 - - *314 + - *263 + - *315 responses: '204': description: Response @@ -48681,9 +48697,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *261 - *262 - - *314 + - *263 + - *315 responses: '204': description: Response @@ -48710,19 +48726,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *261 - *262 - - *314 + - *263 - *315 - *316 - *317 - *318 + - *319 - *17 - *19 - - *319 - - *298 - *320 + - *299 - *321 + - *322 responses: '200': description: Response @@ -48738,9 +48754,9 @@ paths: type: integer workflow_runs: type: array - items: *299 + items: *300 examples: - default: *322 + default: *323 headers: Link: *57 x-github: @@ -48772,9 +48788,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *261 - *262 - - *314 + - *263 + - *315 responses: '200': description: Response @@ -48835,8 +48851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *261 - *262 + - *263 - *46 - *17 - *37 @@ -49004,8 +49020,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -49042,8 +49058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *261 - *262 + - *263 - name: assignee in: path required: true @@ -49079,8 +49095,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -49192,8 +49208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *261 - *262 + - *263 - *17 - *37 - *38 @@ -49247,7 +49263,7 @@ paths: bundle_url: type: string examples: - default: *323 + default: *324 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49267,8 +49283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -49276,7 +49292,7 @@ paths: application/json: schema: type: array - items: &324 + items: &325 title: Autolink reference description: An autolink reference. type: object @@ -49330,8 +49346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -49370,9 +49386,9 @@ paths: description: response content: application/json: - schema: *324 + schema: *325 examples: - default: &325 + default: &326 value: id: 1 key_prefix: TICKET- @@ -49403,9 +49419,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *261 - *262 - - &326 + - *263 + - &327 name: autolink_id description: The unique identifier of the autolink. in: path @@ -49417,9 +49433,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *325 + default: *326 '404': *6 x-github: githubCloudOnly: false @@ -49439,9 +49455,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *261 - *262 - - *326 + - *263 + - *327 responses: '204': description: Response @@ -49465,8 +49481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response if Dependabot is enabled @@ -49516,8 +49532,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -49538,8 +49554,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -49559,8 +49575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *261 - *262 + - *263 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -49598,7 +49614,7 @@ paths: - url protected: type: boolean - protection: &328 + protection: &329 title: Branch Protection description: Branch Protection type: object @@ -49641,7 +49657,7 @@ paths: required: - contexts - checks - enforce_admins: &331 + enforce_admins: &332 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -49658,7 +49674,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &333 + required_pull_request_reviews: &334 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -49742,7 +49758,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &330 + restrictions: &331 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -50067,9 +50083,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *261 - *262 - - &329 + - *263 + - &330 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -50083,14 +50099,14 @@ paths: description: Response content: application/json: - schema: &339 + schema: &340 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &389 + commit: &390 title: Commit description: Commit type: object @@ -50129,7 +50145,7 @@ paths: author: anyOf: - type: 'null' - - &327 + - &328 title: Git User description: Metaproperties for Git author/committer information. @@ -50150,7 +50166,7 @@ paths: committer: anyOf: - type: 'null' - - *327 + - *328 message: type: string examples: @@ -50174,7 +50190,7 @@ paths: required: - sha - url - verification: &438 + verification: &439 title: Verification type: object properties: @@ -50254,7 +50270,7 @@ paths: type: integer files: type: array - items: &401 + items: &402 title: Diff Entry description: Diff Entry type: object @@ -50348,7 +50364,7 @@ paths: - self protected: type: boolean - protection: *328 + protection: *329 protection_url: type: string format: uri @@ -50457,7 +50473,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *273 + '301': *274 '404': *6 x-github: githubCloudOnly: false @@ -50479,15 +50495,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *328 + schema: *329 examples: default: value: @@ -50681,9 +50697,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -50943,7 +50959,7 @@ paths: url: type: string format: uri - required_status_checks: &336 + required_status_checks: &337 title: Status Check Policy description: Status Check Policy type: object @@ -51102,7 +51118,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *330 + restrictions: *331 required_conversation_resolution: type: object properties: @@ -51214,9 +51230,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '204': description: Response @@ -51241,17 +51257,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: &332 + default: &333 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -51273,17 +51289,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: *332 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51302,9 +51318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '204': description: Response @@ -51329,17 +51345,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: &334 + default: &335 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -51435,9 +51451,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: false content: @@ -51535,9 +51551,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 '422': *15 x-github: githubCloudOnly: false @@ -51558,9 +51574,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '204': description: Response @@ -51587,17 +51603,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: &335 + default: &336 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -51620,17 +51636,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: *335 + default: *336 '404': *6 x-github: githubCloudOnly: false @@ -51650,9 +51666,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '204': description: Response @@ -51677,17 +51693,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: &337 + default: &338 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -51713,9 +51729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: false content: @@ -51767,9 +51783,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 '422': *15 x-github: @@ -51791,9 +51807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '204': description: Response @@ -51817,9 +51833,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response @@ -51853,9 +51869,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: false content: @@ -51922,9 +51938,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: false content: @@ -51988,9 +52004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: content: application/json: @@ -52056,15 +52072,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *330 + schema: *331 examples: default: value: @@ -52155,9 +52171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '204': description: Response @@ -52180,9 +52196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response @@ -52192,7 +52208,7 @@ paths: type: array items: *5 examples: - default: &338 + default: &339 value: - id: 1 slug: octoapp @@ -52249,9 +52265,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52285,7 +52301,7 @@ paths: type: array items: *5 examples: - default: *338 + default: *339 '422': *15 x-github: githubCloudOnly: false @@ -52306,9 +52322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52342,7 +52358,7 @@ paths: type: array items: *5 examples: - default: *338 + default: *339 '422': *15 x-github: githubCloudOnly: false @@ -52363,9 +52379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52399,7 +52415,7 @@ paths: type: array items: *5 examples: - default: *338 + default: *339 '422': *15 x-github: githubCloudOnly: false @@ -52421,9 +52437,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response @@ -52453,9 +52469,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: false content: @@ -52514,9 +52530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: false content: @@ -52575,9 +52591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: content: application/json: @@ -52636,9 +52652,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response @@ -52672,9 +52688,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52732,9 +52748,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52792,9 +52808,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52854,9 +52870,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52878,7 +52894,7 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: default: value: @@ -52994,8 +53010,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -53274,7 +53290,7 @@ paths: description: Response content: application/json: - schema: &341 + schema: &342 title: CheckRun description: A check performed on the code of a given code change type: object @@ -53409,8 +53425,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *340 - deployment: &624 + items: *341 + deployment: &625 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -53697,9 +53713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *261 - *262 - - &342 + - *263 + - &343 name: check_run_id description: The unique identifier of the check run. in: path @@ -53711,9 +53727,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: &343 + default: &344 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -53813,9 +53829,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *261 - *262 - - *342 + - *263 + - *343 requestBody: required: true content: @@ -54055,9 +54071,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: *343 + default: *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54077,9 +54093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *261 - *262 - - *342 + - *263 + - *343 - *17 - *19 responses: @@ -54191,9 +54207,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *261 - *262 - - *342 + - *263 + - *343 responses: '201': description: Response @@ -54237,8 +54253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -54260,7 +54276,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &345 + schema: &346 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -54342,7 +54358,7 @@ paths: type: - array - 'null' - items: *340 + items: *341 app: anyOf: - type: 'null' @@ -54358,7 +54374,7 @@ paths: - string - 'null' format: date-time - head_commit: *344 + head_commit: *345 latest_check_runs_count: type: integer check_runs_url: @@ -54386,7 +54402,7 @@ paths: - check_runs_url - pull_requests examples: - default: &346 + default: &347 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -54677,9 +54693,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *345 + schema: *346 examples: - default: *346 + default: *347 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54698,8 +54714,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -55008,9 +55024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *261 - *262 - - &347 + - *263 + - &348 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -55022,9 +55038,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *346 examples: - default: *346 + default: *347 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55047,17 +55063,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *261 - *262 - - *347 - - &396 + - *263 + - *348 + - &397 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &397 + - &398 name: status description: Returns check runs with the specified `status`. in: query @@ -55096,9 +55112,9 @@ paths: type: integer check_runs: type: array - items: *341 + items: *342 examples: - default: &398 + default: &399 value: total_count: 1 check_runs: @@ -55200,9 +55216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *261 - *262 - - *347 + - *263 + - *348 responses: '201': description: Response @@ -55235,21 +55251,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *261 - *262 - - *348 + - *263 - *349 + - *350 - *19 - *17 - - &366 + - &367 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *350 - - &367 + schema: *351 + - &368 name: pr description: The number of the pull request for the results you want to list. in: query @@ -55274,13 +55290,13 @@ paths: be returned. in: query required: false - schema: *351 + schema: *352 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *352 + schema: *353 responses: '200': description: Response @@ -55296,7 +55312,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: *353 + instances_url: *354 state: *133 fixed_at: *129 dismissed_by: @@ -55304,11 +55320,11 @@ paths: - type: 'null' - *4 dismissed_at: *130 - dismissed_reason: *354 - dismissed_comment: *355 - rule: *356 - tool: *357 - most_recent_instance: *358 + dismissed_reason: *355 + dismissed_comment: *356 + rule: *357 + tool: *358 + most_recent_instance: *359 dismissal_approved_by: anyOf: - type: 'null' @@ -55428,7 +55444,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &359 + '403': &360 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -55455,9 +55471,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *261 - *262 - - &360 + - *263 + - &361 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -55471,7 +55487,7 @@ paths: description: Response content: application/json: - schema: &361 + schema: &362 type: object properties: number: *52 @@ -55479,7 +55495,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: *353 + instances_url: *354 state: *133 fixed_at: *129 dismissed_by: @@ -55487,8 +55503,8 @@ paths: - type: 'null' - *4 dismissed_at: *130 - dismissed_reason: *354 - dismissed_comment: *355 + dismissed_reason: *355 + dismissed_comment: *356 rule: type: object properties: @@ -55550,8 +55566,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *357 - most_recent_instance: *358 + tool: *358 + most_recent_instance: *359 dismissal_approved_by: anyOf: - type: 'null' @@ -55644,7 +55660,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -55664,9 +55680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 requestBody: required: true content: @@ -55681,8 +55697,8 @@ paths: enum: - open - dismissed - dismissed_reason: *354 - dismissed_comment: *355 + dismissed_reason: *355 + dismissed_comment: *356 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -55701,7 +55717,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *362 examples: default: value: @@ -55777,7 +55793,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &365 + '403': &366 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -55804,15 +55820,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 responses: '200': description: Response content: application/json: - schema: &362 + schema: &363 type: object properties: status: @@ -55839,13 +55855,13 @@ paths: - description - started_at examples: - default: &363 + default: &364 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &364 + '400': &365 description: Bad Request content: application/json: @@ -55856,7 +55872,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -55881,29 +55897,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 responses: '200': description: OK content: application/json: - schema: *362 + schema: *363 examples: - default: *363 + default: *364 '202': description: Accepted content: application/json: - schema: *362 + schema: *363 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *364 + '400': *365 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -55935,9 +55951,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 requestBody: required: false content: @@ -55983,8 +55999,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *364 - '403': *365 + '400': *365 + '403': *366 '404': *6 '422': description: Unprocessable Entity @@ -56008,13 +56024,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 - *19 - *17 - - *366 - *367 + - *368 responses: '200': description: Response @@ -56022,7 +56038,7 @@ paths: application/json: schema: type: array - items: *358 + items: *359 examples: default: value: @@ -56061,7 +56077,7 @@ paths: end_column: 50 classifications: - source - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -56095,25 +56111,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *261 - *262 - - *348 + - *263 - *349 + - *350 - *19 - *17 - - *367 + - *368 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *350 + schema: *351 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &370 + schema: &371 type: string description: An identifier for the upload. examples: @@ -56135,23 +56151,23 @@ paths: application/json: schema: type: array - items: &371 + items: &372 type: object properties: - ref: *350 - commit_sha: &379 + ref: *351 + commit_sha: &380 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *368 + analysis_key: *369 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *369 + category: *370 error: type: string examples: @@ -56176,8 +56192,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *370 - tool: *357 + sarif_id: *371 + tool: *358 deletable: type: boolean warning: @@ -56239,7 +56255,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -56275,8 +56291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *261 - *262 + - *263 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -56289,7 +56305,7 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: response: summary: application/json response @@ -56343,7 +56359,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -56425,8 +56441,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *261 - *262 + - *263 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -56482,7 +56498,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *365 + '403': *366 '404': *6 '503': *62 x-github: @@ -56504,8 +56520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -56513,7 +56529,7 @@ paths: application/json: schema: type: array - items: &372 + items: &373 title: CodeQL Database description: A CodeQL database. type: object @@ -56625,7 +56641,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -56654,8 +56670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *261 - *262 + - *263 - name: language in: path description: The language of the CodeQL database. @@ -56667,7 +56683,7 @@ paths: description: Response content: application/json: - schema: *372 + schema: *373 examples: default: value: @@ -56699,9 +56715,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &403 + '302': &404 description: Found - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -56723,8 +56739,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *261 - *262 + - *263 - name: language in: path description: The language of the CodeQL database. @@ -56734,7 +56750,7 @@ paths: responses: '204': description: Response - '403': *365 + '403': *366 '404': *6 '503': *62 x-github: @@ -56762,8 +56778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -56772,7 +56788,7 @@ paths: type: object additionalProperties: false properties: - language: &373 + language: &374 type: string description: The language targeted by the CodeQL query enum: @@ -56850,7 +56866,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &377 + schema: &378 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -56860,7 +56876,7 @@ paths: description: The ID of the variant analysis. controller_repo: *51 actor: *4 - query_language: *373 + query_language: *374 query_pack_url: type: string description: The download url for the query pack. @@ -56908,7 +56924,7 @@ paths: items: type: object properties: - repository: &374 + repository: &375 title: Repository Identifier description: Repository Identifier type: object @@ -56950,7 +56966,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &378 + analysis_status: &379 type: string description: The new status of the CodeQL variant analysis repository task. @@ -56982,7 +56998,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &375 + access_mismatch_repos: &376 type: object properties: repository_count: @@ -56997,7 +57013,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *374 + items: *375 required: - repository_count - repositories @@ -57020,8 +57036,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *375 - over_limit_repos: *375 + no_codeql_db_repos: *376 + over_limit_repos: *376 required: - access_mismatch_repos - not_found_repos @@ -57037,7 +57053,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &376 + value: &377 summary: Default response value: id: 1 @@ -57189,10 +57205,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *376 + value: *377 repository_lists: summary: Response for a successful variant analysis submission - value: *376 + value: *377 '404': *6 '422': description: Unable to process variant analysis submission @@ -57220,8 +57236,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *261 - *262 + - *263 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -57233,9 +57249,9 @@ paths: description: Response content: application/json: - schema: *377 + schema: *378 examples: - default: *376 + default: *377 '404': *6 '503': *62 x-github: @@ -57258,7 +57274,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *261 + - *262 - name: repo in: path description: The name of the controller repository. @@ -57293,7 +57309,7 @@ paths: type: object properties: repository: *51 - analysis_status: *378 + analysis_status: *379 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -57418,8 +57434,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -57501,7 +57517,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -57522,8 +57538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -57607,7 +57623,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *365 + '403': *366 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -57672,8 +57688,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -57681,7 +57697,7 @@ paths: schema: type: object properties: - commit_sha: *379 + commit_sha: *380 ref: type: string description: |- @@ -57741,7 +57757,7 @@ paths: schema: type: object properties: - id: *370 + id: *371 url: type: string description: The REST API URL for checking the status of the upload. @@ -57755,7 +57771,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *365 + '403': *366 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -57778,8 +57794,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *261 - *262 + - *263 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -57827,7 +57843,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *359 + '403': *360 '404': description: Not Found if the sarif id does not match any upload '503': *62 @@ -57852,8 +57868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -57934,8 +57950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *261 - *262 + - *263 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -58063,8 +58079,8 @@ paths: parameters: - *17 - *19 - - *261 - *262 + - *263 responses: '200': description: Response @@ -58378,8 +58394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -58445,7 +58461,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '202': description: Response when the codespace creation partially failed but is being retried in the background @@ -58453,7 +58469,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '400': *14 '401': *23 '403': *27 @@ -58482,8 +58498,8 @@ paths: parameters: - *17 - *19 - - *261 - *262 + - *263 responses: '200': description: Response @@ -58547,8 +58563,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *261 - *262 + - *263 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -58585,9 +58601,9 @@ paths: type: integer machines: type: array - items: *381 + items: *382 examples: - default: &582 + default: &583 value: total_count: 2 machines: @@ -58627,8 +58643,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *261 - *262 + - *263 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -58715,8 +58731,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *261 - *262 + - *263 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -58785,8 +58801,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -58804,7 +58820,7 @@ paths: type: integer secrets: type: array - items: &385 + items: &386 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -58825,7 +58841,7 @@ paths: - created_at - updated_at examples: - default: *382 + default: *383 headers: Link: *57 x-github: @@ -58848,16 +58864,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *383 + schema: *384 examples: - default: *384 + default: *385 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -58877,17 +58893,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 responses: '200': description: Response content: application/json: - schema: *385 + schema: *386 examples: - default: *386 + default: *387 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58899,7 +58915,7 @@ paths: Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/create-or-update-repo-secret @@ -58907,8 +58923,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 requestBody: required: true @@ -58953,7 +58969,7 @@ paths: description: |- Deletes a development environment secret in a repository using the secret name. - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/delete-repo-secret @@ -58961,8 +58977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 responses: '204': @@ -58991,8 +59007,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *261 - *262 + - *263 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -59030,7 +59046,7 @@ paths: application/json: schema: type: array - items: &387 + items: &388 title: Collaborator description: Collaborator type: object @@ -59223,8 +59239,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *261 - *262 + - *263 - *128 responses: '204': @@ -59267,8 +59283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *261 - *262 + - *263 - *128 requestBody: required: false @@ -59295,7 +59311,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &451 + schema: &452 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -59516,8 +59532,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *261 - *262 + - *263 - *128 responses: '204': @@ -59547,8 +59563,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *261 - *262 + - *263 - *128 responses: '200': @@ -59569,7 +59585,7 @@ paths: user: anyOf: - type: 'null' - - *387 + - *388 required: - permission - role_name @@ -59623,8 +59639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -59634,7 +59650,7 @@ paths: application/json: schema: type: array - items: &388 + items: &389 title: Commit Comment description: Commit Comment type: object @@ -59692,7 +59708,7 @@ paths: - created_at - updated_at examples: - default: &391 + default: &392 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -59751,17 +59767,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *261 - *262 + - *263 - *73 responses: '200': description: Response content: application/json: - schema: *388 + schema: *389 examples: - default: &392 + default: &393 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -59818,8 +59834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *261 - *262 + - *263 - *73 requestBody: required: true @@ -59842,7 +59858,7 @@ paths: description: Response content: application/json: - schema: *388 + schema: *389 examples: default: value: @@ -59893,8 +59909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *261 - *262 + - *263 - *73 responses: '204': @@ -59916,8 +59932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *261 - *262 + - *263 - *73 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -59944,9 +59960,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 '404': *6 @@ -59967,8 +59983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *261 - *262 + - *263 - *73 requestBody: required: true @@ -60001,16 +60017,16 @@ paths: description: Reaction exists content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '201': description: Reaction created content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '422': *15 x-github: githubCloudOnly: false @@ -60032,10 +60048,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *261 - *262 + - *263 - *73 - - *257 + - *258 responses: '204': description: Response @@ -60084,8 +60100,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *261 - *262 + - *263 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -60141,9 +60157,9 @@ paths: application/json: schema: type: array - items: *389 + items: *390 examples: - default: &499 + default: &500 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -60237,9 +60253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *261 - *262 - - &390 + - *263 + - &391 name: commit_sha description: The SHA of the commit. in: path @@ -60311,9 +60327,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *261 - *262 - - *390 + - *263 + - *391 - *17 - *19 responses: @@ -60323,9 +60339,9 @@ paths: application/json: schema: type: array - items: *388 + items: *389 examples: - default: *391 + default: *392 headers: Link: *57 x-github: @@ -60353,9 +60369,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *261 - *262 - - *390 + - *263 + - *391 requestBody: required: true content: @@ -60390,9 +60406,9 @@ paths: description: Response content: application/json: - schema: *388 + schema: *389 examples: - default: *392 + default: *393 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -60420,9 +60436,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *261 - *262 - - *390 + - *263 + - *391 - *17 - *19 responses: @@ -60432,7 +60448,7 @@ paths: application/json: schema: type: array - items: &490 + items: &491 title: Pull Request Simple description: Pull Request Simple type: object @@ -60552,7 +60568,7 @@ paths: milestone: anyOf: - type: 'null' - - *393 + - *394 active_lock_reason: type: - string @@ -60651,7 +60667,7 @@ paths: _links: type: object properties: - comments: &394 + comments: &395 title: Link description: Hypermedia Link type: object @@ -60660,13 +60676,13 @@ paths: type: string required: - href - commits: *394 - statuses: *394 - html: *394 - issue: *394 - review_comments: *394 - review_comment: *394 - self: *394 + commits: *395 + statuses: *395 + html: *395 + issue: *395 + review_comments: *395 + review_comment: *395 + self: *395 required: - comments - commits @@ -60677,7 +60693,7 @@ paths: - review_comment - self author_association: *60 - auto_merge: &492 + auto_merge: &493 title: Auto merge description: The status of auto merging a pull request. type: @@ -60742,7 +60758,7 @@ paths: - author_association - auto_merge examples: - default: &491 + default: &492 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -61279,11 +61295,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *261 - *262 + - *263 - *19 - *17 - - &395 + - &396 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -61298,9 +61314,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *390 examples: - default: &478 + default: &479 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -61413,11 +61429,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *261 - *262 - - *395 + - *263 - *396 - *397 + - *398 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -61451,9 +61467,9 @@ paths: type: integer check_runs: type: array - items: *341 + items: *342 examples: - default: *398 + default: *399 headers: Link: *57 x-github: @@ -61478,9 +61494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *261 - *262 - - *395 + - *263 + - *396 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -61488,7 +61504,7 @@ paths: schema: type: integer example: 1 - - *396 + - *397 - *17 - *19 responses: @@ -61506,7 +61522,7 @@ paths: type: integer check_suites: type: array - items: *345 + items: *346 examples: default: value: @@ -61706,9 +61722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *261 - *262 - - *395 + - *263 + - *396 - *17 - *19 responses: @@ -61910,9 +61926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *261 - *262 - - *395 + - *263 + - *396 - *17 - *19 responses: @@ -61922,7 +61938,7 @@ paths: application/json: schema: type: array - items: &556 + items: &557 title: Status description: The status of a commit. type: object @@ -62003,7 +62019,7 @@ paths: site_admin: false headers: Link: *57 - '301': *273 + '301': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62031,8 +62047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -62065,11 +62081,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *399 + - *400 code_of_conduct_file: anyOf: - type: 'null' - - &400 + - &401 title: Community Health File type: object properties: @@ -62089,19 +62105,19 @@ paths: contributing: anyOf: - type: 'null' - - *400 + - *401 readme: anyOf: - type: 'null' - - *400 + - *401 issue_template: anyOf: - type: 'null' - - *400 + - *401 pull_request_template: anyOf: - type: 'null' - - *400 + - *401 required: - code_of_conduct - code_of_conduct_file @@ -62230,8 +62246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *261 - *262 + - *263 - *19 - *17 - name: basehead @@ -62279,8 +62295,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *389 - merge_base_commit: *389 + base_commit: *390 + merge_base_commit: *390 status: type: string enum: @@ -62304,10 +62320,10 @@ paths: - 6 commits: type: array - items: *389 + items: *390 files: type: array - items: *401 + items: *402 required: - url - html_url @@ -62593,8 +62609,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *261 - *262 + - *263 - name: path description: path parameter in: path @@ -62745,7 +62761,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &402 + response-if-content-is-a-file: &403 summary: Response if content is a file value: type: file @@ -62882,7 +62898,7 @@ paths: - size - type - url - - &504 + - &505 title: Content File description: Content File type: object @@ -63100,7 +63116,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *402 + response-if-content-is-a-file: *403 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -63169,7 +63185,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *403 + '302': *404 '304': *35 x-github: githubCloudOnly: false @@ -63192,8 +63208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *261 - *262 + - *263 - name: path description: path parameter in: path @@ -63288,7 +63304,7 @@ paths: description: Response content: application/json: - schema: &404 + schema: &405 title: File Commit description: File Commit type: object @@ -63444,7 +63460,7 @@ paths: description: Response content: application/json: - schema: *404 + schema: *405 examples: example-for-creating-a-file: value: @@ -63498,7 +63514,7 @@ paths: schema: oneOf: - *3 - - &433 + - &434 description: Repository rule violation was detected type: object properties: @@ -63519,7 +63535,7 @@ paths: items: type: object properties: - placeholder_id: &548 + placeholder_id: &549 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -63551,8 +63567,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *261 - *262 + - *263 - name: path description: path parameter in: path @@ -63613,7 +63629,7 @@ paths: description: Response content: application/json: - schema: *404 + schema: *405 examples: default: value: @@ -63668,8 +63684,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *261 - *262 + - *263 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -63793,8 +63809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *261 - *262 + - *263 - *143 - *144 - *145 @@ -63836,7 +63852,7 @@ paths: application/json: schema: type: array - items: &407 + items: &408 type: object description: A Dependabot alert. properties: @@ -63886,7 +63902,7 @@ paths: - direct - transitive - - security_advisory: *405 + security_advisory: *406 security_vulnerability: *50 url: *55 html_url: *56 @@ -63917,7 +63933,7 @@ paths: dismissal. maxLength: 280 fixed_at: *129 - auto_dismissed_at: *406 + auto_dismissed_at: *407 required: - number - state @@ -64147,9 +64163,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *261 - *262 - - &408 + - *263 + - &409 name: alert_number in: path description: |- @@ -64164,7 +64180,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *408 examples: default: value: @@ -64277,9 +64293,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *261 - *262 - - *408 + - *263 + - *409 requestBody: required: true content: @@ -64324,7 +64340,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *408 examples: default: value: @@ -64453,8 +64469,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -64472,7 +64488,7 @@ paths: type: integer secrets: type: array - items: &411 + items: &412 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -64526,16 +64542,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: - default: *410 + default: *411 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64555,15 +64571,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 responses: '200': description: Response content: application/json: - schema: *411 + schema: *412 examples: default: value: @@ -64589,8 +64605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 requestBody: required: true @@ -64643,8 +64659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 responses: '204': @@ -64667,8 +64683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *261 - *262 + - *263 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -64842,8 +64858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -65103,8 +65119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -65187,7 +65203,7 @@ paths: - version - url additionalProperties: false - metadata: &412 + metadata: &413 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -65226,7 +65242,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *412 + metadata: *413 resolved: type: object description: A collection of resolved package dependencies. @@ -65240,7 +65256,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *412 + metadata: *413 relationship: type: string description: A notation of whether a dependency is requested @@ -65373,8 +65389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *261 - *262 + - *263 - name: sha description: The SHA recorded at creation time. in: query @@ -65415,9 +65431,9 @@ paths: application/json: schema: type: array - items: *413 + items: *414 examples: - default: *414 + default: *415 headers: Link: *57 x-github: @@ -65483,8 +65499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -65566,7 +65582,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *414 examples: simple-example: summary: Simple example @@ -65639,9 +65655,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *261 - *262 - - &415 + - *263 + - &416 name: deployment_id description: deployment_id parameter in: path @@ -65653,7 +65669,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *414 examples: default: value: @@ -65718,9 +65734,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *261 - *262 - - *415 + - *263 + - *416 responses: '204': description: Response @@ -65742,9 +65758,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *261 - *262 - - *415 + - *263 + - *416 - *17 - *19 responses: @@ -65754,7 +65770,7 @@ paths: application/json: schema: type: array - items: &416 + items: &417 title: Deployment Status description: The status of a deployment. type: object @@ -65918,9 +65934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *261 - *262 - - *415 + - *263 + - *416 requestBody: required: true content: @@ -65995,9 +66011,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: &417 + default: &418 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -66053,9 +66069,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *261 - *262 - - *415 + - *263 + - *416 - name: status_id in: path required: true @@ -66066,9 +66082,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '404': *6 x-github: githubCloudOnly: false @@ -66093,8 +66109,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -66151,8 +66167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -66170,7 +66186,7 @@ paths: - 5 environments: type: array - items: &419 + items: &420 title: Environment description: Details of a deployment environment type: object @@ -66232,7 +66248,7 @@ paths: type: string examples: - wait_timer - wait_timer: &421 + wait_timer: &422 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -66274,7 +66290,7 @@ paths: items: type: object properties: - type: *418 + type: *419 reviewer: anyOf: - *4 @@ -66301,7 +66317,7 @@ paths: - id - node_id - type - deployment_branch_policy: &422 + deployment_branch_policy: &423 type: - object - 'null' @@ -66418,9 +66434,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *261 - *262 - - &420 + - *263 + - &421 name: environment_name in: path required: true @@ -66433,9 +66449,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: &423 + default: &424 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -66519,9 +66535,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *261 - *262 - - *420 + - *263 + - *421 requestBody: required: false content: @@ -66531,7 +66547,7 @@ paths: - object - 'null' properties: - wait_timer: *421 + wait_timer: *422 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -66550,14 +66566,14 @@ paths: items: type: object properties: - type: *418 + type: *419 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *422 + deployment_branch_policy: *423 additionalProperties: false examples: default: @@ -66577,9 +66593,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: *423 + default: *424 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -66603,9 +66619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *261 - *262 - - *420 + - *263 + - *421 responses: '204': description: Default response @@ -66630,9 +66646,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *261 - *262 - - *420 + - *263 + - *421 - *17 - *19 responses: @@ -66651,7 +66667,7 @@ paths: - 2 branch_policies: type: array - items: &424 + items: &425 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -66712,9 +66728,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *261 - *262 - - *420 + - *263 + - *421 requestBody: required: true content: @@ -66762,9 +66778,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - example-wildcard: &425 + example-wildcard: &426 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -66806,10 +66822,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *261 - *262 - - *420 - - &426 + - *263 + - *421 + - &427 name: branch_policy_id in: path required: true @@ -66821,9 +66837,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66842,10 +66858,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *261 - *262 - - *420 - - *426 + - *263 + - *421 + - *427 requestBody: required: true content: @@ -66874,9 +66890,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66895,10 +66911,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *261 - *262 - - *420 - - *426 + - *263 + - *421 + - *427 responses: '204': description: Response @@ -66923,9 +66939,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *420 + - *421 + - *263 - *262 - - *261 responses: '200': description: List of deployment protection rules @@ -66942,7 +66958,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &427 + items: &428 title: Deployment protection rule description: Deployment protection rule type: object @@ -66964,7 +66980,7 @@ paths: for the environment. examples: - true - app: &428 + app: &429 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -67057,7 +67073,7 @@ paths: The authenticated user must have admin or owner permissions to the repository to use this endpoint. - For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app). + For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules). OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. tags: @@ -67067,9 +67083,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *420 + - *421 + - *263 - *262 - - *261 requestBody: content: application/json: @@ -67090,9 +67106,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *427 + schema: *428 examples: - default: &429 + default: &430 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -67127,9 +67143,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *420 + - *421 + - *263 - *262 - - *261 - *19 - *17 responses: @@ -67149,7 +67165,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *428 + items: *429 examples: default: value: @@ -67184,10 +67200,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *261 - *262 - - *420 - - &430 + - *263 + - *421 + - &431 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -67199,9 +67215,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *428 examples: - default: *429 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67222,10 +67238,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *420 + - *421 + - *263 - *262 - - *261 - - *430 + - *431 responses: '204': description: Response @@ -67251,9 +67267,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *261 - *262 - - *420 + - *263 + - *421 - *17 - *19 responses: @@ -67271,9 +67287,9 @@ paths: type: integer secrets: type: array - items: *307 + items: *308 examples: - default: *308 + default: *309 headers: Link: *57 x-github: @@ -67298,17 +67314,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *261 - *262 - - *420 + - *263 + - *421 responses: '200': description: Response content: application/json: - schema: *309 + schema: *310 examples: - default: *310 + default: *311 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67330,18 +67346,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *261 - *262 - - *420 + - *263 + - *421 - *123 responses: '200': description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *431 + default: *432 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67363,9 +67379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *261 - *262 - - *420 + - *263 + - *421 - *123 requestBody: required: true @@ -67423,9 +67439,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *261 - *262 - - *420 + - *263 + - *421 - *123 responses: '204': @@ -67451,10 +67467,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *261 - *262 - - *420 - - *283 + - *263 + - *421 + - *284 - *19 responses: '200': @@ -67471,9 +67487,9 @@ paths: type: integer variables: type: array - items: *311 + items: *312 examples: - default: *312 + default: *313 headers: Link: *57 x-github: @@ -67496,9 +67512,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *261 - *262 - - *420 + - *263 + - *421 requestBody: required: true content: @@ -67550,18 +67566,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *261 - *262 - - *420 + - *263 + - *421 - *126 responses: '200': description: Response content: application/json: - schema: *311 + schema: *312 examples: - default: *432 + default: *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67582,10 +67598,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *261 - *262 + - *263 - *126 - - *420 + - *421 requestBody: required: true content: @@ -67627,10 +67643,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *261 - *262 + - *263 - *126 - - *420 + - *421 responses: '204': description: Response @@ -67652,8 +67668,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -67730,8 +67746,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *261 - *262 + - *263 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -67890,8 +67906,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *261 - *262 + - *263 requestBody: required: false content: @@ -67924,9 +67940,9 @@ paths: description: Response content: application/json: - schema: *272 + schema: *273 examples: - default: *274 + default: *275 '400': *14 '422': *15 '403': *27 @@ -67947,8 +67963,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -68008,7 +68024,7 @@ paths: schema: oneOf: - *93 - - *433 + - *434 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68033,8 +68049,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *261 - *262 + - *263 - name: file_sha in: path required: true @@ -68134,8 +68150,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -68244,7 +68260,7 @@ paths: description: Response content: application/json: - schema: &434 + schema: &435 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -68471,15 +68487,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *261 - *262 - - *390 + - *263 + - *391 responses: '200': description: Response content: application/json: - schema: *434 + schema: *435 examples: default: value: @@ -68535,9 +68551,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *261 - *262 - - &435 + - *263 + - &436 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -68554,7 +68570,7 @@ paths: application/json: schema: type: array - items: &436 + items: &437 title: Git Reference description: Git references within a repository type: object @@ -68630,17 +68646,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *261 - *262 - - *435 + - *263 + - *436 responses: '200': description: Response content: application/json: - schema: *436 + schema: *437 examples: - default: &437 + default: &438 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -68669,8 +68685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -68699,9 +68715,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: - default: *437 + default: *438 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -68727,9 +68743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *261 - *262 - - *435 + - *263 + - *436 requestBody: required: true content: @@ -68758,9 +68774,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: - default: *437 + default: *438 '422': *15 '409': *44 x-github: @@ -68778,9 +68794,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *261 - *262 - - *435 + - *263 + - *436 responses: '204': description: Response @@ -68833,8 +68849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -68901,7 +68917,7 @@ paths: description: Response content: application/json: - schema: &439 + schema: &440 title: Git Tag description: Metadata for a Git tag type: object @@ -68957,7 +68973,7 @@ paths: - sha - type - url - verification: *438 + verification: *439 required: - sha - url @@ -68967,7 +68983,7 @@ paths: - tag - message examples: - default: &440 + default: &441 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -69040,8 +69056,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *261 - *262 + - *263 - name: tag_sha in: path required: true @@ -69052,9 +69068,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *440 examples: - default: *440 + default: *441 '404': *6 '409': *44 x-github: @@ -69078,8 +69094,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -69153,7 +69169,7 @@ paths: description: Response content: application/json: - schema: &441 + schema: &442 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -69271,8 +69287,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *261 - *262 + - *263 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -69295,7 +69311,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *442 examples: default-response: summary: Default response @@ -69354,8 +69370,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -69365,7 +69381,7 @@ paths: application/json: schema: type: array - items: &442 + items: &443 title: Webhook description: Webhooks for repositories. type: object @@ -69428,7 +69444,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &655 + last_response: &656 title: Hook Response type: object properties: @@ -69505,8 +69521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *261 - *262 + - *263 requestBody: required: false content: @@ -69559,9 +69575,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: &443 + default: &444 value: type: Repository id: 12345678 @@ -69609,17 +69625,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 responses: '200': description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: *443 + default: *444 '404': *6 x-github: githubCloudOnly: false @@ -69639,8 +69655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 requestBody: required: true @@ -69686,9 +69702,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: *443 + default: *444 '422': *15 '404': *6 x-github: @@ -69709,8 +69725,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 responses: '204': @@ -69735,8 +69751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *261 - *262 + - *263 - *157 responses: '200': @@ -69764,8 +69780,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *261 - *262 + - *263 - *157 requestBody: required: false @@ -69810,8 +69826,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 - *17 - *158 @@ -69843,8 +69859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 - *16 responses: @@ -69873,8 +69889,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 - *16 responses: @@ -69898,8 +69914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 responses: '204': @@ -69925,8 +69941,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *261 - *262 + - *263 - *157 responses: '204': @@ -69985,14 +70001,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: &444 + schema: &445 title: Import description: A repository import from an external source. type: object @@ -70099,7 +70115,7 @@ paths: - html_url - authors_url examples: - default: &447 + default: &448 value: vcs: subversion use_lfs: true @@ -70115,7 +70131,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &445 + '503': &446 description: Unavailable due to service under maintenance. content: application/json: @@ -70144,8 +70160,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -70193,7 +70209,7 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: default: value: @@ -70218,7 +70234,7 @@ paths: type: string '422': *15 '404': *6 - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70246,8 +70262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *261 - *262 + - *263 requestBody: required: false content: @@ -70299,7 +70315,7 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: example-1: summary: Example 1 @@ -70347,7 +70363,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70370,12 +70386,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *261 - *262 + - *263 responses: '204': description: Response - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70401,9 +70417,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *261 - *262 - - &605 + - *263 + - &606 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -70417,7 +70433,7 @@ paths: application/json: schema: type: array - items: &446 + items: &447 title: Porter Author description: Porter Author type: object @@ -70471,7 +70487,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70496,8 +70512,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *261 - *262 + - *263 - name: author_id in: path required: true @@ -70527,7 +70543,7 @@ paths: description: Response content: application/json: - schema: *446 + schema: *447 examples: default: value: @@ -70540,7 +70556,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70564,8 +70580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -70606,7 +70622,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70634,8 +70650,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -70662,11 +70678,11 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: - default: *447 + default: *448 '422': *15 - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70689,8 +70705,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -70698,8 +70714,8 @@ paths: application/json: schema: *20 examples: - default: *448 - '301': *273 + default: *449 + '301': *274 '404': *6 x-github: githubCloudOnly: false @@ -70719,8 +70735,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -70733,7 +70749,7 @@ paths: properties: {} additionalProperties: false examples: - default: &450 + default: &451 value: limit: collaborators_only origin: repository @@ -70758,13 +70774,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: application/json: - schema: *449 + schema: *450 examples: default: summary: Example request body @@ -70778,7 +70794,7 @@ paths: application/json: schema: *175 examples: - default: *450 + default: *451 '409': description: Response x-github: @@ -70800,8 +70816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -70824,8 +70840,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -70835,9 +70851,9 @@ paths: application/json: schema: type: array - items: *451 + items: *452 examples: - default: &598 + default: &599 value: - id: 1 repository: @@ -70968,8 +70984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *261 - *262 + - *263 - *179 requestBody: required: false @@ -70999,7 +71015,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *452 examples: default: value: @@ -71130,8 +71146,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *261 - *262 + - *263 - *179 responses: '204': @@ -71163,8 +71179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *261 - *262 + - *263 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -71229,7 +71245,7 @@ paths: type: array items: *74 examples: - default: &460 + default: &461 value: - id: 1 node_id: MDU6SXNzdWUx @@ -71377,7 +71393,7 @@ paths: state_reason: completed headers: Link: *57 - '301': *273 + '301': *274 '422': *15 '404': *6 x-github: @@ -71406,8 +71422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -71490,7 +71506,7 @@ paths: application/json: schema: *74 examples: - default: &455 + default: &456 value: id: 1 node_id: MDU6SXNzdWUx @@ -71646,7 +71662,7 @@ paths: '422': *15 '503': *62 '404': *6 - '410': *270 + '410': *271 x-github: triggersNotification: true githubCloudOnly: false @@ -71674,8 +71690,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *261 - *262 + - *263 - *83 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -71696,9 +71712,9 @@ paths: application/json: schema: type: array - items: *452 + items: *453 examples: - default: &457 + default: &458 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71756,17 +71772,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *261 - *262 + - *263 - *73 responses: '200': description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: &453 + default: &454 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71820,8 +71836,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *261 - *262 + - *263 - *73 requestBody: required: true @@ -71844,9 +71860,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: *453 + default: *454 '422': *15 x-github: githubCloudOnly: false @@ -71864,8 +71880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *261 - *262 + - *263 - *73 responses: '204': @@ -71886,8 +71902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *261 - *262 + - *263 - *73 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -71914,9 +71930,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 '404': *6 @@ -71937,8 +71953,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *261 - *262 + - *263 - *73 requestBody: required: true @@ -71971,16 +71987,16 @@ paths: description: Reaction exists content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '201': description: Reaction created content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '422': *15 x-github: githubCloudOnly: false @@ -72002,10 +72018,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *261 - *262 + - *263 - *73 - - *257 + - *258 responses: '204': description: Response @@ -72025,8 +72041,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -72036,7 +72052,7 @@ paths: application/json: schema: type: array - items: &454 + items: &455 title: Issue Event description: Issue Event type: object @@ -72375,8 +72391,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *261 - *262 + - *263 - name: event_id in: path required: true @@ -72387,7 +72403,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *455 examples: default: value: @@ -72580,7 +72596,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *270 + '410': *271 '403': *27 x-github: githubCloudOnly: false @@ -72614,9 +72630,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *261 - *262 - - &456 + - *263 + - &457 name: issue_number description: The number that identifies the issue. in: path @@ -72630,10 +72646,10 @@ paths: application/json: schema: *74 examples: - default: *455 - '301': *273 + default: *456 + '301': *274 '404': *6 - '410': *270 + '410': *271 '304': *35 x-github: githubCloudOnly: false @@ -72658,9 +72674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: false content: @@ -72770,13 +72786,13 @@ paths: application/json: schema: *74 examples: - default: *455 + default: *456 '422': *15 '503': *62 '403': *27 - '301': *273 + '301': *274 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72794,9 +72810,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: false content: @@ -72824,7 +72840,7 @@ paths: application/json: schema: *74 examples: - default: *455 + default: *456 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72840,9 +72856,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: content: application/json: @@ -72869,7 +72885,7 @@ paths: application/json: schema: *74 examples: - default: *455 + default: *456 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72891,9 +72907,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 - name: assignee in: path required: true @@ -72933,9 +72949,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *261 - *262 - - *456 + - *263 + - *457 - *64 - *17 - *19 @@ -72946,13 +72962,13 @@ paths: application/json: schema: type: array - items: *452 + items: *453 examples: - default: *457 + default: *458 headers: Link: *57 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72981,9 +72997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: true content: @@ -73005,16 +73021,16 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: *453 + default: *454 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *270 + '410': *271 '422': *15 '404': *6 x-github: @@ -73034,9 +73050,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *261 - *262 - - *456 + - *263 + - *457 - *17 - *19 responses: @@ -73050,7 +73066,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &461 + - &462 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -73099,7 +73115,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &462 + - &463 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -73227,7 +73243,7 @@ paths: - performed_via_github_app - assignee - assigner - - &463 + - &464 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -73273,7 +73289,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &464 + - &465 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -73319,7 +73335,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &465 + - &466 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -73368,7 +73384,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &466 + - &467 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -73410,7 +73426,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &467 + - &468 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -73452,7 +73468,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &468 + - &469 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -73508,7 +73524,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &469 + - &470 title: Locked Issue Event description: Locked Issue Event type: object @@ -73553,7 +73569,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &470 + - &471 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -73614,7 +73630,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &471 + - &472 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -73675,7 +73691,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &472 + - &473 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -73736,7 +73752,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &473 + - &474 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -73829,7 +73845,7 @@ paths: color: red headers: Link: *57 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73846,9 +73862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 - *17 - *19 responses: @@ -73858,7 +73874,7 @@ paths: application/json: schema: type: array - items: &458 + items: &459 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -73913,7 +73929,7 @@ paths: - color - default examples: - default: &459 + default: &460 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -73931,9 +73947,9 @@ paths: default: false headers: Link: *57 - '301': *273 + '301': *274 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73950,9 +73966,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: false content: @@ -74011,12 +74027,12 @@ paths: application/json: schema: type: array - items: *458 + items: *459 examples: - default: *459 - '301': *273 + default: *460 + '301': *274 '404': *6 - '410': *270 + '410': *271 '422': *15 x-github: githubCloudOnly: false @@ -74033,9 +74049,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: false content: @@ -74095,12 +74111,12 @@ paths: application/json: schema: type: array - items: *458 + items: *459 examples: - default: *459 - '301': *273 + default: *460 + '301': *274 '404': *6 - '410': *270 + '410': *271 '422': *15 x-github: githubCloudOnly: false @@ -74117,15 +74133,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 responses: '204': description: Response - '301': *273 + '301': *274 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74144,9 +74160,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 - name: name in: path required: true @@ -74159,7 +74175,7 @@ paths: application/json: schema: type: array - items: *458 + items: *459 examples: default: value: @@ -74170,9 +74186,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *273 + '301': *274 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74192,9 +74208,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: false content: @@ -74223,7 +74239,7 @@ paths: '204': description: Response '403': *27 - '410': *270 + '410': *271 '404': *6 '422': *15 x-github: @@ -74241,9 +74257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 responses: '204': description: Response @@ -74265,9 +74281,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -74293,13 +74309,13 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74317,9 +74333,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: true content: @@ -74351,16 +74367,16 @@ paths: description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '201': description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '422': *15 x-github: githubCloudOnly: false @@ -74382,10 +74398,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *261 - *262 - - *456 - - *257 + - *263 + - *457 + - *258 responses: '204': description: Response @@ -74414,9 +74430,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: true content: @@ -74440,7 +74456,7 @@ paths: application/json: schema: *74 examples: - default: *455 + default: *456 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -74473,9 +74489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *261 - *262 - - *456 + - *263 + - *457 - *17 - *19 responses: @@ -74487,11 +74503,11 @@ paths: type: array items: *74 examples: - default: *460 + default: *461 headers: Link: *57 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74519,9 +74535,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: true content: @@ -74550,14 +74566,14 @@ paths: application/json: schema: *74 examples: - default: *455 + default: *456 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *270 + '410': *271 '422': *15 '404': *6 x-github: @@ -74577,9 +74593,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: true content: @@ -74612,7 +74628,7 @@ paths: application/json: schema: *74 examples: - default: *455 + default: *456 '403': *27 '404': *6 '422': *7 @@ -74634,9 +74650,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 - *17 - *19 responses: @@ -74651,7 +74667,6 @@ paths: description: Timeline Event type: object anyOf: - - *461 - *462 - *463 - *464 @@ -74664,6 +74679,7 @@ paths: - *471 - *472 - *473 + - *474 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -74987,7 +75003,7 @@ paths: type: string comments: type: array - items: &493 + items: &494 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -75225,7 +75241,7 @@ paths: type: string comments: type: array - items: *388 + items: *389 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -75500,7 +75516,7 @@ paths: headers: Link: *57 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75517,8 +75533,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -75528,7 +75544,7 @@ paths: application/json: schema: type: array - items: &474 + items: &475 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -75595,8 +75611,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -75632,9 +75648,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: - default: &475 + default: &476 value: id: 1 key: ssh-rsa AAA... @@ -75668,9 +75684,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *261 - *262 - - &476 + - *263 + - &477 name: key_id description: The unique identifier of the key. in: path @@ -75682,9 +75698,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: - default: *475 + default: *476 '404': *6 x-github: githubCloudOnly: false @@ -75702,9 +75718,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *261 - *262 - - *476 + - *263 + - *477 responses: '204': description: Response @@ -75724,8 +75740,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -75735,9 +75751,9 @@ paths: application/json: schema: type: array - items: *458 + items: *459 examples: - default: *459 + default: *460 headers: Link: *57 '404': *6 @@ -75758,8 +75774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -75795,9 +75811,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *459 examples: - default: &477 + default: &478 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -75829,8 +75845,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *261 - *262 + - *263 - name: name in: path required: true @@ -75841,9 +75857,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *459 examples: - default: *477 + default: *478 '404': *6 x-github: githubCloudOnly: false @@ -75860,8 +75876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *261 - *262 + - *263 - name: name in: path required: true @@ -75900,7 +75916,7 @@ paths: description: Response content: application/json: - schema: *458 + schema: *459 examples: default: value: @@ -75926,8 +75942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *261 - *262 + - *263 - name: name in: path required: true @@ -75953,8 +75969,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -75993,9 +76009,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *261 - *262 - - *366 + - *263 + - *367 responses: '200': description: Response @@ -76142,8 +76158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -76208,8 +76224,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -76243,9 +76259,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *389 + schema: *390 examples: - default: *478 + default: *479 '204': description: Response when already merged '404': @@ -76270,8 +76286,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *261 - *262 + - *263 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -76312,7 +76328,7 @@ paths: application/json: schema: type: array - items: *393 + items: *394 examples: default: value: @@ -76368,8 +76384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -76409,9 +76425,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &479 + default: &480 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -76470,9 +76486,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *261 - *262 - - &480 + - *263 + - &481 name: milestone_number description: The number that identifies the milestone. in: path @@ -76484,9 +76500,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *479 + default: *480 '404': *6 x-github: githubCloudOnly: false @@ -76503,9 +76519,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *261 - *262 - - *480 + - *263 + - *481 requestBody: required: false content: @@ -76543,9 +76559,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *479 + default: *480 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76561,9 +76577,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *261 - *262 - - *480 + - *263 + - *481 responses: '204': description: Response @@ -76584,9 +76600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *261 - *262 - - *480 + - *263 + - *481 - *17 - *19 responses: @@ -76596,9 +76612,9 @@ paths: application/json: schema: type: array - items: *458 + items: *459 examples: - default: *459 + default: *460 headers: Link: *57 x-github: @@ -76617,12 +76633,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *261 - *262 - - *481 + - *263 - *482 - - *64 - *483 + - *64 + - *484 - *17 - *19 responses: @@ -76634,7 +76650,7 @@ paths: type: array items: *86 examples: - default: *484 + default: *485 headers: Link: *57 x-github: @@ -76658,8 +76674,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *261 - *262 + - *263 requestBody: required: false content: @@ -76717,14 +76733,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: &485 + schema: &486 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -76868,7 +76884,7 @@ paths: - custom_404 - public examples: - default: &486 + default: &487 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -76909,8 +76925,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -76965,9 +76981,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '422': *15 '409': *44 x-github: @@ -76990,8 +77006,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -77091,8 +77107,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -77118,8 +77134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -77129,7 +77145,7 @@ paths: application/json: schema: type: array - items: &487 + items: &488 title: Page Build description: Page Build type: object @@ -77221,8 +77237,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *261 - *262 + - *263 responses: '201': description: Response @@ -77269,16 +77285,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *487 + schema: *488 examples: - default: &488 + default: &489 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -77326,8 +77342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *261 - *262 + - *263 - name: build_id in: path required: true @@ -77338,9 +77354,9 @@ paths: description: Response content: application/json: - schema: *487 + schema: *488 examples: - default: *488 + default: *489 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77360,8 +77376,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -77469,9 +77485,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *261 - *262 - - &489 + - *263 + - &490 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -77529,9 +77545,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *261 - *262 - - *489 + - *263 + - *490 responses: '204': *137 '404': *6 @@ -77558,8 +77574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -77854,8 +77870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Private vulnerability reporting status @@ -77892,8 +77908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': *137 '422': *14 @@ -77914,8 +77930,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': *137 '422': *14 @@ -77938,8 +77954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-repository-projects parameters: - - *261 - *262 + - *263 - name: state description: Indicates the state of the projects to return. in: query @@ -77960,7 +77976,7 @@ paths: application/json: schema: type: array - items: *212 + items: *213 examples: default: value: @@ -78000,7 +78016,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *270 + '410': *271 '422': *7 x-github: githubCloudOnly: false @@ -78023,8 +78039,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#create-a-repository-project parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -78050,13 +78066,13 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: - default: *269 + default: *270 '401': *23 '403': *27 '404': *6 - '410': *270 + '410': *271 '422': *7 x-github: githubCloudOnly: false @@ -78079,8 +78095,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -78088,7 +78104,7 @@ paths: application/json: schema: type: array - items: *217 + items: *218 examples: default: value: @@ -78119,8 +78135,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -78132,7 +78148,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *217 + items: *218 required: - properties examples: @@ -78182,8 +78198,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *261 - *262 + - *263 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -78243,9 +78259,9 @@ paths: application/json: schema: type: array - items: *490 + items: *491 examples: - default: *491 + default: *492 headers: Link: *57 '304': *35 @@ -78277,8 +78293,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -78345,7 +78361,7 @@ paths: description: Response content: application/json: - schema: &495 + schema: &496 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -78474,7 +78490,7 @@ paths: milestone: anyOf: - type: 'null' - - *393 + - *394 active_lock_reason: type: - string @@ -78567,14 +78583,14 @@ paths: _links: type: object properties: - comments: *394 - commits: *394 - statuses: *394 - html: *394 - issue: *394 - review_comments: *394 - review_comment: *394 - self: *394 + comments: *395 + commits: *395 + statuses: *395 + html: *395 + issue: *395 + review_comments: *395 + review_comment: *395 + self: *395 required: - comments - commits @@ -78585,7 +78601,7 @@ paths: - review_comment - self author_association: *60 - auto_merge: *492 + auto_merge: *493 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -78687,7 +78703,7 @@ paths: - merged_by - review_comments examples: - default: &496 + default: &497 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -79214,8 +79230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *261 - *262 + - *263 - name: sort in: query required: false @@ -79244,9 +79260,9 @@ paths: application/json: schema: type: array - items: *493 + items: *494 examples: - default: &498 + default: &499 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -79323,17 +79339,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *261 - *262 + - *263 - *73 responses: '200': description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: &494 + default: &495 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -79408,8 +79424,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *261 - *262 + - *263 - *73 requestBody: required: true @@ -79432,9 +79448,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79450,8 +79466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *261 - *262 + - *263 - *73 responses: '204': @@ -79473,8 +79489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *261 - *262 + - *263 - *73 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -79501,9 +79517,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 '404': *6 @@ -79524,8 +79540,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *261 - *262 + - *263 - *73 requestBody: required: true @@ -79558,16 +79574,16 @@ paths: description: Reaction exists content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '201': description: Reaction created content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '422': *15 x-github: githubCloudOnly: false @@ -79589,10 +79605,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *261 - *262 + - *263 - *73 - - *257 + - *258 responses: '204': description: Response @@ -79635,9 +79651,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *261 - *262 - - &497 + - *263 + - &498 name: pull_number description: The number that identifies the pull request. in: path @@ -79650,9 +79666,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *495 + schema: *496 examples: - default: *496 + default: *497 '304': *35 '404': *6 '406': @@ -79687,9 +79703,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: false content: @@ -79731,9 +79747,9 @@ paths: description: Response content: application/json: - schema: *495 + schema: *496 examples: - default: *496 + default: *497 '422': *15 '403': *27 x-github: @@ -79755,9 +79771,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: true content: @@ -79820,7 +79836,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '202': description: Response when the codespace creation partially failed but is being retried in the background @@ -79828,7 +79844,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '401': *23 '403': *27 '404': *6 @@ -79858,9 +79874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 - *83 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -79881,9 +79897,9 @@ paths: application/json: schema: type: array - items: *493 + items: *494 examples: - default: *498 + default: *499 headers: Link: *57 x-github: @@ -79916,9 +79932,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: true content: @@ -80024,7 +80040,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: example-for-a-multi-line-comment: value: @@ -80112,9 +80128,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *261 - *262 - - *497 + - *263 + - *498 - *73 requestBody: required: true @@ -80137,7 +80153,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: default: value: @@ -80223,9 +80239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 - *17 - *19 responses: @@ -80235,9 +80251,9 @@ paths: application/json: schema: type: array - items: *389 + items: *390 examples: - default: *499 + default: *500 headers: Link: *57 x-github: @@ -80267,9 +80283,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *261 - *262 - - *497 + - *263 + - *498 - *17 - *19 responses: @@ -80279,7 +80295,7 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: default: value: @@ -80317,9 +80333,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *261 - *262 - - *497 + - *263 + - *498 responses: '204': description: Response if pull request has been merged @@ -80342,9 +80358,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: false content: @@ -80456,9 +80472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 responses: '200': description: Response @@ -80533,9 +80549,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: false content: @@ -80572,7 +80588,7 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: default: value: @@ -81108,9 +81124,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: true content: @@ -81144,7 +81160,7 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: default: value: @@ -81649,9 +81665,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 - *17 - *19 responses: @@ -81661,7 +81677,7 @@ paths: application/json: schema: type: array - items: &500 + items: &501 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -81817,9 +81833,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: false content: @@ -81909,9 +81925,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: &502 + default: &503 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81974,10 +81990,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *261 - *262 - - *497 - - &501 + - *263 + - *498 + - &502 name: review_id description: The unique identifier of the review. in: path @@ -81989,9 +82005,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: &503 + default: &504 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -82050,10 +82066,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *261 - *262 - - *497 - - *501 + - *263 + - *498 + - *502 requestBody: required: true content: @@ -82076,7 +82092,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -82138,18 +82154,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *261 - *262 - - *497 - - *501 + - *263 + - *498 + - *502 responses: '200': description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: *502 + default: *503 '422': *7 '404': *6 x-github: @@ -82176,10 +82192,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *261 - *262 - - *497 - - *501 + - *263 + - *498 + - *502 - *17 - *19 responses: @@ -82277,9 +82293,9 @@ paths: _links: type: object properties: - self: *394 - html: *394 - pull_request: *394 + self: *395 + html: *395 + pull_request: *395 required: - self - html @@ -82430,10 +82446,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *261 - *262 - - *497 - - *501 + - *263 + - *498 + - *502 requestBody: required: true content: @@ -82462,7 +82478,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -82525,10 +82541,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *261 - *262 - - *497 - - *501 + - *263 + - *498 + - *502 requestBody: required: true content: @@ -82563,9 +82579,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: *503 + default: *504 '404': *6 '422': *7 '403': *27 @@ -82587,9 +82603,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: false content: @@ -82653,8 +82669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *261 - *262 + - *263 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -82667,9 +82683,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: &505 + default: &506 value: type: file encoding: base64 @@ -82711,8 +82727,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *261 - *262 + - *263 - name: dir description: The alternate path to look for a README file in: path @@ -82732,9 +82748,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *505 + default: *506 '404': *6 '422': *15 x-github: @@ -82756,8 +82772,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -82767,7 +82783,7 @@ paths: application/json: schema: type: array - items: &506 + items: &507 title: Release description: A release. type: object @@ -82839,7 +82855,7 @@ paths: author: *4 assets: type: array - items: &507 + items: &508 title: Release Asset description: Data related to a release. type: object @@ -83019,8 +83035,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -83096,9 +83112,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &510 + default: &511 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -83201,9 +83217,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *261 - *262 - - &508 + - *263 + - &509 name: asset_id description: The unique identifier of the asset. in: path @@ -83215,9 +83231,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *508 examples: - default: &509 + default: &510 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -83251,7 +83267,7 @@ paths: type: User site_admin: false '404': *6 - '302': *403 + '302': *404 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83267,9 +83283,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *261 - *262 - - *508 + - *263 + - *509 requestBody: required: false content: @@ -83298,9 +83314,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *508 examples: - default: *509 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83316,9 +83332,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *261 - *262 - - *508 + - *263 + - *509 responses: '204': description: Response @@ -83342,8 +83358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -83429,16 +83445,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83455,8 +83471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *261 - *262 + - *263 - name: tag description: tag parameter in: path @@ -83469,9 +83485,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 '404': *6 x-github: githubCloudOnly: false @@ -83493,9 +83509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *261 - *262 - - &511 + - *263 + - &512 name: release_id description: The unique identifier of the release. in: path @@ -83509,9 +83525,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 '401': description: Unauthorized x-github: @@ -83529,9 +83545,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *261 - *262 - - *511 + - *263 + - *512 requestBody: required: false content: @@ -83595,9 +83611,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 '404': description: Not Found if the discussion category name is invalid content: @@ -83618,9 +83634,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *261 - *262 - - *511 + - *263 + - *512 responses: '204': description: Response @@ -83640,9 +83656,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *261 - *262 - - *511 + - *263 + - *512 - *17 - *19 responses: @@ -83652,7 +83668,7 @@ paths: application/json: schema: type: array - items: *507 + items: *508 examples: default: value: @@ -83732,9 +83748,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *261 - *262 - - *511 + - *263 + - *512 - name: name in: query required: true @@ -83760,7 +83776,7 @@ paths: description: Response for successful upload content: application/json: - schema: *507 + schema: *508 examples: response-for-successful-upload: value: @@ -83814,9 +83830,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *261 - *262 - - *511 + - *263 + - *512 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -83840,9 +83856,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 '404': *6 @@ -83863,9 +83879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *261 - *262 - - *511 + - *263 + - *512 requestBody: required: true content: @@ -83895,16 +83911,16 @@ paths: description: Reaction exists content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '201': description: Reaction created content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '422': *15 x-github: githubCloudOnly: false @@ -83926,10 +83942,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *261 - *262 - - *511 - - *257 + - *263 + - *512 + - *258 responses: '204': description: Response @@ -83953,9 +83969,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *261 - *262 - - *329 + - *263 + - *330 - *17 - *19 responses: @@ -83971,8 +83987,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *512 - - &514 + - *513 + - &515 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -83992,53 +84008,53 @@ paths: type: integer description: The ID of the ruleset that includes this rule. - allOf: - - *513 - *514 - - allOf: - *515 - - *514 - allOf: - *516 - - *514 + - *515 - allOf: - *517 - - *514 + - *515 - allOf: - *518 - - *514 + - *515 - allOf: - *519 - - *514 + - *515 - allOf: - *520 - - *514 + - *515 - allOf: - *521 - - *514 + - *515 - allOf: - *522 - - *514 + - *515 - allOf: - *523 - - *514 + - *515 - allOf: - *524 - - *514 + - *515 - allOf: - *525 - - *514 + - *515 - allOf: - *526 - - *514 + - *515 - allOf: - *527 - - *514 + - *515 - allOf: - *528 - - *514 + - *515 - allOf: - *529 - - *514 + - *515 + - allOf: + - *530 + - *515 examples: default: value: @@ -84077,8 +84093,8 @@ paths: category: repos subcategory: rules parameters: - - *261 - *262 + - *263 - *17 - *19 - name: includes_parents @@ -84089,7 +84105,7 @@ paths: schema: type: boolean default: true - - *530 + - *531 responses: '200': description: Response @@ -84097,7 +84113,7 @@ paths: application/json: schema: type: array - items: *225 + items: *226 examples: default: value: @@ -84144,8 +84160,8 @@ paths: category: repos subcategory: rules parameters: - - *261 - *262 + - *263 requestBody: description: Request body required: true @@ -84165,16 +84181,16 @@ paths: - tag - push default: branch - enforcement: *221 + enforcement: *222 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *222 - conditions: *219 + items: *223 + conditions: *220 rules: type: array description: An array of rules within the ruleset. - items: *224 + items: *225 required: - name - enforcement @@ -84205,9 +84221,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *226 examples: - default: &540 + default: &541 value: id: 42 name: super cool ruleset @@ -84254,12 +84270,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *261 - *262 - - *531 + - *263 - *532 - *533 - *534 + - *535 - *17 - *19 responses: @@ -84267,9 +84283,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: - default: *536 + default: *537 '404': *6 '500': *140 x-github: @@ -84290,17 +84306,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *261 - *262 - - *537 + - *263 + - *538 responses: '200': description: Response content: application/json: - schema: *538 + schema: *539 examples: - default: *539 + default: *540 '404': *6 '500': *140 x-github: @@ -84328,8 +84344,8 @@ paths: category: repos subcategory: rules parameters: - - *261 - *262 + - *263 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84349,9 +84365,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *226 examples: - default: *540 + default: *541 '404': *6 '500': *140 put: @@ -84369,8 +84385,8 @@ paths: category: repos subcategory: rules parameters: - - *261 - *262 + - *263 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84395,16 +84411,16 @@ paths: - branch - tag - push - enforcement: *221 + enforcement: *222 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *222 - conditions: *219 + items: *223 + conditions: *220 rules: description: An array of rules within the ruleset. type: array - items: *224 + items: *225 examples: default: value: @@ -84432,9 +84448,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *226 examples: - default: *540 + default: *541 '404': *6 '500': *140 delete: @@ -84452,8 +84468,8 @@ paths: category: repos subcategory: rules parameters: - - *261 - *262 + - *263 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84476,8 +84492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *261 - *262 + - *263 - *17 - *19 - name: ruleset_id @@ -84493,9 +84509,9 @@ paths: application/json: schema: type: array - items: *227 + items: *228 examples: - default: *541 + default: *542 '404': *6 '500': *140 x-github: @@ -84514,8 +84530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *261 - *262 + - *263 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84533,7 +84549,7 @@ paths: description: Response content: application/json: - schema: *542 + schema: *543 examples: default: value: @@ -84588,20 +84604,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *261 - *262 - - *228 + - *263 - *229 - *230 - *231 + - *232 - *46 - *19 - *17 - - *543 - *544 - - *232 + - *545 - *233 - *234 + - *235 responses: '200': description: Response @@ -84609,7 +84625,7 @@ paths: application/json: schema: type: array - items: &547 + items: &548 type: object properties: number: *52 @@ -84625,8 +84641,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *545 - resolution: *546 + state: *546 + resolution: *547 resolved_at: type: - string @@ -84845,15 +84861,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: default: value: @@ -84905,9 +84921,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 requestBody: required: true content: @@ -84915,8 +84931,8 @@ paths: schema: type: object properties: - state: *545 - resolution: *546 + state: *546 + resolution: *547 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -84935,7 +84951,7 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: default: value: @@ -85010,9 +85026,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 - *19 - *17 responses: @@ -85023,7 +85039,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &676 + items: &677 type: object properties: type: @@ -85402,8 +85418,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -85411,14 +85427,14 @@ paths: schema: type: object properties: - reason: &549 + reason: &550 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *548 + placeholder_id: *549 required: - reason - placeholder_id @@ -85435,7 +85451,7 @@ paths: schema: type: object properties: - reason: *549 + reason: *550 expire_at: type: - string @@ -85479,8 +85495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *261 - *262 + - *263 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -85495,7 +85511,7 @@ paths: properties: incremental_scans: type: array - items: &550 + items: &551 description: Information on a single scan performed by secret scanning on the repository type: object @@ -85523,15 +85539,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *550 + items: *551 backfill_scans: type: array - items: *550 + items: *551 custom_pattern_backfill_scans: type: array items: allOf: - - *550 + - *551 - type: object properties: pattern_name: @@ -85601,8 +85617,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *261 - *262 + - *263 - *46 - name: sort description: The property to sort the results by. @@ -85646,9 +85662,9 @@ paths: application/json: schema: type: array - items: *551 + items: *552 examples: - default: *552 + default: *553 '400': *14 '404': *6 x-github: @@ -85671,8 +85687,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -85752,7 +85768,7 @@ paths: login: type: string description: The username of the user credited. - type: *237 + type: *238 required: - login - type @@ -85842,9 +85858,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: &554 + default: &555 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -86077,8 +86093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -86191,7 +86207,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -86338,17 +86354,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *261 - *262 - - *553 + - *263 + - *554 responses: '200': description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: *554 + default: *555 '403': *27 '404': *6 x-github: @@ -86372,9 +86388,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *261 - *262 - - *553 + - *263 + - *554 requestBody: required: true content: @@ -86454,7 +86470,7 @@ paths: login: type: string description: The username of the user credited. - type: *237 + type: *238 required: - login - type @@ -86545,10 +86561,10 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: *554 - add_credit: *554 + default: *555 + add_credit: *555 '403': *27 '404': *6 '422': @@ -86586,9 +86602,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *261 - *262 - - *553 + - *263 + - *554 responses: '202': *45 '400': *14 @@ -86615,17 +86631,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *261 - *262 - - *553 + - *263 + - *554 responses: '202': description: Response content: application/json: - schema: *272 + schema: *273 examples: - default: *274 + default: *275 '400': *14 '422': *15 '403': *27 @@ -86651,8 +86667,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -86748,8 +86764,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *261 - *262 + - *263 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -86758,7 +86774,7 @@ paths: application/json: schema: type: array - items: &555 + items: &556 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -86791,8 +86807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -86870,8 +86886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -86965,8 +86981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *261 - *262 + - *263 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -87120,8 +87136,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *261 - *262 + - *263 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -87131,7 +87147,7 @@ paths: application/json: schema: type: array - items: *555 + items: *556 examples: default: value: @@ -87164,8 +87180,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *261 - *262 + - *263 - name: sha in: path required: true @@ -87221,7 +87237,7 @@ paths: description: Response content: application/json: - schema: *556 + schema: *557 examples: default: value: @@ -87275,8 +87291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -87308,14 +87324,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *261 - *262 + - *263 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &557 + schema: &558 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -87388,8 +87404,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *261 - *262 + - *263 requestBody: required: false content: @@ -87415,7 +87431,7 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: default: value: @@ -87442,8 +87458,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -87463,8 +87479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -87546,8 +87562,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -87555,7 +87571,7 @@ paths: application/json: schema: type: array - items: &558 + items: &559 title: Tag protection description: Tag protection type: object @@ -87612,8 +87628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -87636,7 +87652,7 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: default: value: @@ -87667,8 +87683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *261 - *262 + - *263 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -87705,8 +87721,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *261 - *262 + - *263 - name: ref in: path required: true @@ -87742,8 +87758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -87775,8 +87791,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *261 - *262 + - *263 - *19 - *17 responses: @@ -87784,7 +87800,7 @@ paths: description: Response content: application/json: - schema: &559 + schema: &560 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -87796,7 +87812,7 @@ paths: required: - names examples: - default: &560 + default: &561 value: names: - octocat @@ -87819,8 +87835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -87851,9 +87867,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: - default: *560 + default: *561 '404': *6 '422': *7 x-github: @@ -87874,9 +87890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *261 - *262 - - &561 + - *263 + - &562 name: per description: The time frame to display results for. in: query @@ -87907,7 +87923,7 @@ paths: - 128 clones: type: array - items: &562 + items: &563 title: Traffic type: object properties: @@ -87994,8 +88010,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -88089,8 +88105,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -88153,9 +88169,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *261 - *262 - - *561 + - *263 + - *562 responses: '200': description: Response @@ -88176,7 +88192,7 @@ paths: - 3782 views: type: array - items: *562 + items: *563 required: - uniques - count @@ -88253,8 +88269,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -88528,8 +88544,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -88552,8 +88568,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -88575,8 +88591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -88602,8 +88618,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *261 - *262 + - *263 - name: ref in: path required: true @@ -88695,9 +88711,9 @@ paths: description: Response content: application/json: - schema: *272 + schema: *273 examples: - default: *274 + default: *275 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -88946,7 +88962,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &563 + text_matches: &564 title: Search Result Text Matches type: array items: @@ -89109,7 +89125,7 @@ paths: enum: - author-date - committer-date - - &564 + - &565 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 @@ -89178,7 +89194,7 @@ paths: committer: anyOf: - type: 'null' - - *327 + - *328 comment_count: type: integer message: @@ -89197,7 +89213,7 @@ paths: url: type: string format: uri - verification: *438 + verification: *439 required: - author - committer @@ -89212,7 +89228,7 @@ paths: committer: anyOf: - type: 'null' - - *327 + - *328 parents: type: array items: @@ -89229,7 +89245,7 @@ paths: type: number node_id: type: string - text_matches: *563 + text_matches: *564 required: - sha - node_id @@ -89410,7 +89426,7 @@ paths: - interactions - created - updated - - *564 + - *565 - *17 - *19 - name: advanced_search @@ -89534,7 +89550,7 @@ paths: milestone: anyOf: - type: 'null' - - *393 + - *394 comments: type: integer created_at: @@ -89548,7 +89564,7 @@ paths: - string - 'null' format: date-time - text_matches: *563 + text_matches: *564 pull_request: type: object properties: @@ -89773,7 +89789,7 @@ paths: enum: - created - updated - - *564 + - *565 - *17 - *19 responses: @@ -89818,7 +89834,7 @@ paths: - 'null' score: type: number - text_matches: *563 + text_matches: *564 required: - id - node_id @@ -89903,7 +89919,7 @@ paths: - forks - help-wanted-issues - updated - - *564 + - *565 - *17 - *19 responses: @@ -90140,7 +90156,7 @@ paths: - admin - pull - push - text_matches: *563 + text_matches: *564 temp_clone_token: type: string allow_merge_commit: @@ -90448,7 +90464,7 @@ paths: - string - 'null' format: uri - text_matches: *563 + text_matches: *564 related: type: - array @@ -90641,7 +90657,7 @@ paths: - followers - repositories - joined - - *564 + - *565 - *17 - *19 responses: @@ -90751,7 +90767,7 @@ paths: type: - boolean - 'null' - text_matches: *563 + text_matches: *564 blog: type: - string @@ -90833,7 +90849,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &565 + - &566 name: team_id description: The unique identifier of the team. in: path @@ -90845,9 +90861,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '404': *6 x-github: githubCloudOnly: false @@ -90874,7 +90890,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *565 + - *566 requestBody: required: true content: @@ -90938,16 +90954,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '201': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '404': *6 '422': *15 '403': *27 @@ -90975,7 +90991,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *565 + - *566 responses: '204': description: Response @@ -91006,7 +91022,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *565 + - *566 - *46 - *17 - *19 @@ -91017,9 +91033,9 @@ paths: application/json: schema: type: array - items: *248 + items: *249 examples: - default: *566 + default: *567 headers: Link: *57 x-github: @@ -91048,7 +91064,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *565 + - *566 requestBody: required: true content: @@ -91082,9 +91098,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: *249 + default: *250 x-github: triggersNotification: true githubCloudOnly: false @@ -91111,16 +91127,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *565 - - *250 + - *566 + - *251 responses: '200': description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: *249 + default: *250 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91145,8 +91161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *565 - - *250 + - *566 + - *251 requestBody: required: false content: @@ -91169,9 +91185,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: *567 + default: *568 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91196,8 +91212,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *565 - - *250 + - *566 + - *251 responses: '204': description: Response @@ -91226,8 +91242,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *565 - - *250 + - *566 + - *251 - *46 - *17 - *19 @@ -91238,9 +91254,9 @@ paths: application/json: schema: type: array - items: *251 + items: *252 examples: - default: *568 + default: *569 headers: Link: *57 x-github: @@ -91269,8 +91285,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *565 - - *250 + - *566 + - *251 requestBody: required: true content: @@ -91292,9 +91308,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *252 + default: *253 x-github: triggersNotification: true githubCloudOnly: false @@ -91321,17 +91337,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *565 - - *250 - - *253 + - *566 + - *251 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *252 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91356,9 +91372,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *565 - - *250 - - *253 + - *566 + - *251 + - *254 requestBody: required: true content: @@ -91380,9 +91396,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *569 + default: *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91407,9 +91423,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *565 - - *250 - - *253 + - *566 + - *251 + - *254 responses: '204': description: Response @@ -91438,9 +91454,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *565 - - *250 - - *253 + - *566 + - *251 + - *254 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -91466,9 +91482,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 x-github: @@ -91497,9 +91513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *565 - - *250 - - *253 + - *566 + - *251 + - *254 requestBody: required: true content: @@ -91531,9 +91547,9 @@ paths: description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91559,8 +91575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *565 - - *250 + - *566 + - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -91586,9 +91602,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 x-github: @@ -91617,8 +91633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *565 - - *250 + - *566 + - *251 requestBody: required: true content: @@ -91650,9 +91666,9 @@ paths: description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -91676,7 +91692,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *565 + - *566 - *17 - *19 responses: @@ -91714,7 +91730,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *565 + - *566 - name: role description: Filters members returned by their role in the team. in: query @@ -91765,7 +91781,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *565 + - *566 - *128 responses: '204': @@ -91802,7 +91818,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *565 + - *566 - *128 responses: '204': @@ -91842,7 +91858,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *565 + - *566 - *128 responses: '204': @@ -91879,16 +91895,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *565 + - *566 - *128 responses: '200': description: Response content: application/json: - schema: *258 + schema: *259 examples: - response-if-user-is-a-team-maintainer: *570 + response-if-user-is-a-team-maintainer: *571 '404': *6 x-github: githubCloudOnly: false @@ -91921,7 +91937,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *565 + - *566 - *128 requestBody: required: false @@ -91947,9 +91963,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *259 examples: - response-if-users-membership-with-team-is-now-pending: *571 + response-if-users-membership-with-team-is-now-pending: *572 '403': description: Forbidden if team synchronization is set up '422': @@ -91983,7 +91999,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *565 + - *566 - *128 responses: '204': @@ -92012,7 +92028,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *565 + - *566 - *17 - *19 responses: @@ -92022,9 +92038,9 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: *572 + default: *573 headers: Link: *57 '404': *6 @@ -92050,16 +92066,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *565 - - *260 + - *566 + - *261 responses: '200': description: Response content: application/json: - schema: *259 + schema: *260 examples: - default: *573 + default: *574 '404': description: Not Found if project is not managed by this team x-github: @@ -92083,8 +92099,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *565 - - *260 + - *566 + - *261 requestBody: required: false content: @@ -92151,8 +92167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *565 - - *260 + - *566 + - *261 responses: '204': description: Response @@ -92179,7 +92195,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *565 + - *566 - *17 - *19 responses: @@ -92221,15 +92237,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *565 - - *261 + - *566 - *262 + - *263 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *574 + schema: *575 examples: alternative-response-with-extra-repository-information: value: @@ -92380,9 +92396,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *565 - - *261 + - *566 - *262 + - *263 requestBody: required: false content: @@ -92432,9 +92448,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *565 - - *261 + - *566 - *262 + - *263 responses: '204': description: Response @@ -92459,7 +92475,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *565 + - *566 - *17 - *19 responses: @@ -92471,7 +92487,7 @@ paths: type: array items: *180 examples: - response-if-child-teams-exist: *575 + response-if-child-teams-exist: *576 headers: Link: *57 '404': *6 @@ -92504,7 +92520,7 @@ paths: application/json: schema: oneOf: - - &577 + - &578 title: Private User description: Private User type: object @@ -92754,7 +92770,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *576 + - *577 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -92914,7 +92930,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *578 examples: default: value: @@ -93260,7 +93276,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '202': description: Response when the codespace creation partially failed but is being retried in the background @@ -93268,7 +93284,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '401': *23 '403': *27 '404': *6 @@ -93312,7 +93328,7 @@ paths: type: integer secrets: type: array - items: &578 + items: &579 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -93354,7 +93370,7 @@ paths: - visibility - selected_repositories_url examples: - default: *382 + default: *383 headers: Link: *57 x-github: @@ -93432,7 +93448,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: default: value: @@ -93578,7 +93594,7 @@ paths: type: array items: *115 examples: - default: *579 + default: *580 '401': *23 '403': *27 '404': *6 @@ -93730,7 +93746,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '304': *35 '500': *140 '401': *23 @@ -93788,7 +93804,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '401': *23 '403': *27 '404': *6 @@ -93845,7 +93861,7 @@ paths: description: Response content: application/json: - schema: &580 + schema: &581 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -93898,7 +93914,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &581 + default: &582 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -93943,9 +93959,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: *581 + default: *582 '404': *6 x-github: githubCloudOnly: false @@ -93982,9 +93998,9 @@ paths: type: integer machines: type: array - items: *381 + items: *382 examples: - default: *582 + default: *583 '304': *35 '500': *140 '401': *23 @@ -94069,11 +94085,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *272 + repository: *273 machine: anyOf: - type: 'null' - - *381 + - *382 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -94878,7 +94894,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '304': *35 '500': *140 '400': *14 @@ -94918,7 +94934,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '500': *140 '401': *23 '403': *27 @@ -94950,7 +94966,7 @@ paths: type: array items: *197 examples: - default: &595 + default: &596 value: - id: 197 name: hello_docker @@ -95051,7 +95067,7 @@ paths: application/json: schema: type: array - items: &583 + items: &584 title: Email description: Email type: object @@ -95121,9 +95137,9 @@ paths: application/json: schema: type: array - items: *583 + items: *584 examples: - default: &597 + default: &598 value: - email: octocat@github.com verified: true @@ -95200,7 +95216,7 @@ paths: application/json: schema: type: array - items: *583 + items: *584 examples: default: value: @@ -95458,7 +95474,7 @@ paths: application/json: schema: type: array - items: &584 + items: &585 title: GPG Key description: A unique encryption key type: object @@ -95603,7 +95619,7 @@ paths: - subkeys - revoked examples: - default: &608 + default: &609 value: - id: 3 name: Octocat's GPG Key @@ -95688,9 +95704,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: &585 + default: &586 value: id: 3 name: Octocat's GPG Key @@ -95747,7 +95763,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &586 + - &587 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -95759,9 +95775,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *585 + default: *586 '404': *6 '304': *35 '403': *27 @@ -95784,7 +95800,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *586 + - *587 responses: '204': description: Response @@ -95975,7 +95991,7 @@ paths: type: array items: *59 examples: - default: *587 + default: *588 headers: Link: *57 '404': *6 @@ -96089,7 +96105,7 @@ paths: required: true content: application/json: - schema: *449 + schema: *450 examples: default: value: @@ -96239,7 +96255,7 @@ paths: application/json: schema: type: array - items: &588 + items: &589 title: Key description: Key type: object @@ -96337,9 +96353,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *589 examples: - default: &589 + default: &590 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -96372,15 +96388,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *476 + - *477 responses: '200': description: Response content: application/json: - schema: *588 + schema: *589 examples: - default: *589 + default: *590 '404': *6 '304': *35 '403': *27 @@ -96403,7 +96419,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *476 + - *477 responses: '204': description: Response @@ -96436,7 +96452,7 @@ paths: application/json: schema: type: array - items: &590 + items: &591 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -96515,7 +96531,7 @@ paths: - account - plan examples: - default: &591 + default: &592 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -96577,9 +96593,9 @@ paths: application/json: schema: type: array - items: *590 + items: *591 examples: - default: *591 + default: *592 headers: Link: *57 '304': *35 @@ -97583,7 +97599,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *191 - - *592 + - *593 responses: '204': description: Response @@ -97656,7 +97672,7 @@ paths: type: array items: *142 examples: - default: *593 + default: *594 headers: Link: *57 '304': *35 @@ -97698,7 +97714,7 @@ paths: - docker - nuget - container - - *594 + - *595 - *19 - *17 responses: @@ -97710,8 +97726,8 @@ paths: type: array items: *197 examples: - default: *595 - '400': *596 + default: *596 + '400': *597 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97740,7 +97756,7 @@ paths: application/json: schema: *197 examples: - default: &609 + default: &610 value: id: 40201 name: octo-name @@ -98123,7 +98139,7 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: default: value: @@ -98195,9 +98211,9 @@ paths: application/json: schema: type: array - items: *583 + items: *584 examples: - default: *597 + default: *598 headers: Link: *57 '304': *35 @@ -98310,7 +98326,7 @@ paths: type: array items: *59 examples: - default: &604 + default: &605 summary: Default response value: - id: 1296269 @@ -98626,9 +98642,9 @@ paths: description: Response content: application/json: - schema: *272 + schema: *273 examples: - default: *274 + default: *275 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -98666,9 +98682,9 @@ paths: application/json: schema: type: array - items: *451 + items: *452 examples: - default: *598 + default: *599 headers: Link: *57 '304': *35 @@ -98747,7 +98763,7 @@ paths: application/json: schema: type: array - items: &599 + items: &600 title: Social account description: Social media account type: object @@ -98764,7 +98780,7 @@ paths: - provider - url examples: - default: &600 + default: &601 value: - provider: twitter url: https://twitter.com/github @@ -98827,9 +98843,9 @@ paths: application/json: schema: type: array - items: *599 + items: *600 examples: - default: *600 + default: *601 '422': *15 '304': *35 '404': *6 @@ -98917,7 +98933,7 @@ paths: application/json: schema: type: array - items: &601 + items: &602 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -98937,7 +98953,7 @@ paths: - title - created_at examples: - default: &616 + default: &617 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -99004,9 +99020,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *602 examples: - default: &602 + default: &603 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -99037,7 +99053,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: - - &603 + - &604 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -99049,9 +99065,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *602 examples: - default: *602 + default: *603 '404': *6 '304': *35 '403': *27 @@ -99074,7 +99090,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: - - *603 + - *604 responses: '204': description: Response @@ -99103,7 +99119,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &617 + - &618 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 @@ -99128,11 +99144,11 @@ paths: type: array items: *59 examples: - default-response: *604 + default-response: *605 application/vnd.github.v3.star+json: schema: type: array - items: &618 + items: &619 title: Starred Repository description: Starred Repository type: object @@ -99288,8 +99304,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *261 - *262 + - *263 responses: '204': description: Response if this repository is starred by you @@ -99317,8 +99333,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -99342,8 +99358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -99415,7 +99431,7 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: default: value: @@ -99501,10 +99517,10 @@ paths: application/json: schema: oneOf: + - *578 - *577 - - *576 examples: - default-response: &606 + default-response: &607 summary: Default response value: login: octocat @@ -99539,7 +99555,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &607 + response-with-git-hub-plan-information: &608 summary: Response with GitHub plan information value: login: octocat @@ -99599,7 +99615,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *605 + - *606 - *17 responses: '200': @@ -99648,11 +99664,11 @@ paths: application/json: schema: oneOf: + - *578 - *577 - - *576 examples: - default-response: *606 - response-with-git-hub-plan-information: *607 + default-response: *607 + response-with-git-hub-plan-information: *608 '404': *6 x-github: githubCloudOnly: false @@ -99728,7 +99744,7 @@ paths: bundle_url: type: string examples: - default: *323 + default: *324 '201': description: Response content: @@ -99769,7 +99785,7 @@ paths: type: array items: *197 examples: - default: *595 + default: *596 '403': *27 '401': *23 x-github: @@ -100173,9 +100189,9 @@ paths: application/json: schema: type: array - items: *584 + items: *585 examples: - default: *608 + default: *609 headers: Link: *57 x-github: @@ -100279,7 +100295,7 @@ paths: application/json: schema: *20 examples: - default: *448 + default: *449 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100357,7 +100373,7 @@ paths: type: array items: *142 examples: - default: *593 + default: *594 headers: Link: *57 x-github: @@ -100396,7 +100412,7 @@ paths: - docker - nuget - container - - *594 + - *595 - *128 - *19 - *17 @@ -100409,10 +100425,10 @@ paths: type: array items: *197 examples: - default: *595 + default: *596 '403': *27 '401': *23 - '400': *596 + '400': *597 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100442,7 +100458,7 @@ paths: application/json: schema: *197 examples: - default: *609 + default: *610 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100728,7 +100744,7 @@ paths: application/json: schema: type: array - items: *212 + items: *213 examples: default: value: @@ -101041,9 +101057,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *611 examples: - default: *611 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101071,9 +101087,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *613 + default: *614 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101101,9 +101117,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *615 + default: *616 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101131,9 +101147,9 @@ paths: application/json: schema: type: array - items: *599 + items: *600 examples: - default: *600 + default: *601 headers: Link: *57 x-github: @@ -101163,9 +101179,9 @@ paths: application/json: schema: type: array - items: *601 + items: *602 examples: - default: *616 + default: *617 headers: Link: *57 x-github: @@ -101190,7 +101206,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *128 - - *617 + - *618 - *46 - *17 - *19 @@ -101202,11 +101218,11 @@ paths: schema: anyOf: - type: array - items: *618 + items: *619 - type: array items: *59 examples: - default-response: *604 + default-response: *605 headers: Link: *57 x-github: @@ -101366,7 +101382,7 @@ webhooks: type: string enum: - disabled - enterprise: &619 + enterprise: &620 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -101435,7 +101451,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &620 + installation: &621 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -101456,7 +101472,7 @@ webhooks: required: - id - node_id - organization: &621 + organization: &622 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -101529,7 +101545,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &622 + repository: &623 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -102442,10 +102458,10 @@ webhooks: type: string enum: - enabled - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -102521,11 +102537,11 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - rule: &623 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + rule: &624 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) @@ -102748,11 +102764,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - rule: *623 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + rule: *624 sender: *4 required: - action @@ -102940,11 +102956,11 @@ webhooks: - everyone required: - from - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - rule: *623 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + rule: *624 sender: *4 required: - action @@ -103028,7 +103044,7 @@ webhooks: type: string enum: - completed - check_run: &625 + check_run: &626 title: CheckRun description: A check performed on the code of a given code change type: object @@ -103096,7 +103112,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *340 + items: *341 repository: *115 status: type: string @@ -103141,7 +103157,7 @@ webhooks: - examples: - neutral - deployment: *624 + deployment: *625 details_url: type: string examples: @@ -103201,7 +103217,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *340 + items: *341 started_at: type: string format: date-time @@ -103239,9 +103255,9 @@ webhooks: - output - app - pull_requests - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - check_run @@ -103634,10 +103650,10 @@ webhooks: type: string enum: - created - check_run: *625 - installation: *620 - organization: *621 - repository: *622 + check_run: *626 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - check_run @@ -104033,10 +104049,10 @@ webhooks: type: string enum: - requested_action - check_run: *625 - installation: *620 - organization: *621 - repository: *622 + check_run: *626 + installation: *621 + organization: *622 + repository: *623 requested_action: description: The action requested by the user. type: object @@ -104441,10 +104457,10 @@ webhooks: type: string enum: - rerequested - check_run: *625 - installation: *620 - organization: *621 - repository: *622 + check_run: *626 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - check_run @@ -105436,10 +105452,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -106124,10 +106140,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -106806,10 +106822,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -106975,7 +106991,7 @@ webhooks: required: - login - id - dismissed_comment: *355 + dismissed_comment: *356 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107127,20 +107143,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &626 + commit_oid: &627 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: *619 - installation: *620 - organization: *621 - ref: &627 + enterprise: *620 + installation: *621 + organization: *622 + ref: &628 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: *622 + repository: *623 sender: *4 required: - action @@ -107304,7 +107320,7 @@ webhooks: required: - login - id - dismissed_comment: *355 + dismissed_comment: *356 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107545,12 +107561,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *626 - enterprise: *619 - installation: *620 - organization: *621 - ref: *627 - repository: *622 + commit_oid: *627 + enterprise: *620 + installation: *621 + organization: *622 + ref: *628 + repository: *623 sender: *4 required: - action @@ -107648,7 +107664,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *355 + dismissed_comment: *356 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -107830,12 +107846,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *626 - enterprise: *619 - installation: *620 - organization: *621 - ref: *627 - repository: *622 + commit_oid: *627 + enterprise: *620 + installation: *621 + organization: *622 + ref: *628 + repository: *623 sender: *4 required: - action @@ -108001,7 +108017,7 @@ webhooks: required: - login - id - dismissed_comment: *355 + dismissed_comment: *356 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -108178,12 +108194,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *626 - enterprise: *619 - installation: *620 - organization: *621 - ref: *627 - repository: *622 + commit_oid: *627 + enterprise: *620 + installation: *621 + organization: *622 + ref: *628 + repository: *623 sender: *4 required: - action @@ -108283,7 +108299,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *355 + dismissed_comment: *356 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108463,9 +108479,9 @@ webhooks: type: - string - 'null' - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -108473,7 +108489,7 @@ webhooks: type: - string - 'null' - repository: *622 + repository: *623 sender: *4 required: - action @@ -108569,7 +108585,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *355 + dismissed_comment: *356 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108716,12 +108732,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *626 - enterprise: *619 - installation: *620 - organization: *621 - ref: *627 - repository: *622 + commit_oid: *627 + enterprise: *620 + installation: *621 + organization: *622 + ref: *628 + repository: *623 sender: *4 required: - action @@ -108983,10 +108999,10 @@ webhooks: - updated_at - author_association - body - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -109067,18 +109083,18 @@ webhooks: type: - string - 'null' - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *621 - pusher_type: &628 + organization: *622 + pusher_type: &629 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &629 + ref: &630 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -109088,7 +109104,7 @@ webhooks: enum: - tag - branch - repository: *622 + repository: *623 sender: *4 required: - ref @@ -109170,10 +109186,10 @@ webhooks: type: string enum: - created - definition: *213 - enterprise: *619 - installation: *620 - organization: *621 + definition: *214 + enterprise: *620 + installation: *621 + organization: *622 sender: *4 required: - action @@ -109258,9 +109274,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 sender: *4 required: - action @@ -109337,10 +109353,10 @@ webhooks: type: string enum: - updated - definition: *213 - enterprise: *619 - installation: *620 - organization: *621 + definition: *214 + enterprise: *620 + installation: *621 + organization: *622 sender: *4 required: - action @@ -109417,19 +109433,19 @@ webhooks: type: string enum: - updated - enterprise: *619 - installation: *620 - repository: *622 - organization: *621 + enterprise: *620 + installation: *621 + repository: *623 + organization: *622 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *217 + items: *218 old_property_values: type: array description: The old custom property values for the repository. - items: *217 + items: *218 required: - action - repository @@ -109505,18 +109521,18 @@ webhooks: title: delete event type: object properties: - enterprise: *619 - installation: *620 - organization: *621 - pusher_type: *628 - ref: *629 + enterprise: *620 + installation: *621 + organization: *622 + pusher_type: *629 + ref: *630 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *622 + repository: *623 sender: *4 required: - ref @@ -109600,11 +109616,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -109688,11 +109704,11 @@ webhooks: type: string enum: - auto_reopened - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -109776,11 +109792,11 @@ webhooks: type: string enum: - created - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -109862,11 +109878,11 @@ webhooks: type: string enum: - dismissed - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -109948,11 +109964,11 @@ webhooks: type: string enum: - fixed - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -110035,11 +110051,11 @@ webhooks: type: string enum: - reintroduced - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -110121,11 +110137,11 @@ webhooks: type: string enum: - reopened - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -110202,9 +110218,9 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - key: &630 + enterprise: *620 + installation: *621 + key: &631 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -110242,8 +110258,8 @@ webhooks: - verified - created_at - read_only - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -110320,11 +110336,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - key: *630 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + key: *631 + organization: *622 + repository: *623 sender: *4 required: - action @@ -110896,12 +110912,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - workflow: &634 + workflow: &635 title: Workflow type: - object @@ -111639,13 +111655,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *413 + deployment: *414 pull_requests: type: array - items: *495 - repository: *622 - organization: *621 - installation: *620 + items: *496 + repository: *623 + organization: *622 + installation: *621 sender: *4 responses: '200': @@ -111716,7 +111732,7 @@ webhooks: type: string enum: - approved - approver: &631 + approver: &632 type: object properties: avatar_url: @@ -111759,11 +111775,11 @@ webhooks: type: string comment: type: string - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - reviewers: &632 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + reviewers: &633 type: array items: type: object @@ -111844,7 +111860,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &633 + workflow_job_run: &634 type: object properties: conclusion: @@ -112590,18 +112606,18 @@ webhooks: type: string enum: - rejected - approver: *631 + approver: *632 comment: type: string - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - reviewers: *632 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + reviewers: *633 sender: *4 since: type: string - workflow_job_run: *633 + workflow_job_run: *634 workflow_job_runs: type: array items: @@ -113318,13 +113334,13 @@ webhooks: type: string enum: - requested - enterprise: *619 + enterprise: *620 environment: type: string - installation: *620 - organization: *621 - repository: *622 - requestor: &639 + installation: *621 + organization: *622 + repository: *623 + requestor: &640 title: User type: - object @@ -115267,12 +115283,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - workflow: *634 + workflow: *635 workflow_run: title: Deployment Workflow Run type: @@ -115963,7 +115979,7 @@ webhooks: type: string enum: - answered - answer: &637 + answer: &638 type: object properties: author_association: @@ -116123,7 +116139,7 @@ webhooks: - created_at - updated_at - body - discussion: &635 + discussion: &636 title: Discussion description: A Discussion in a repository. type: object @@ -116419,7 +116435,7 @@ webhooks: - id labels: type: array - items: *458 + items: *459 required: - repository_url - category @@ -116441,10 +116457,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -116571,11 +116587,11 @@ webhooks: - from required: - category - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -116658,11 +116674,11 @@ webhooks: type: string enum: - closed - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -116744,7 +116760,7 @@ webhooks: type: string enum: - created - comment: &636 + comment: &637 type: object properties: author_association: @@ -116904,11 +116920,11 @@ webhooks: - updated_at - body - reactions - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -116991,12 +117007,12 @@ webhooks: type: string enum: - deleted - comment: *636 - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + comment: *637 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117091,12 +117107,12 @@ webhooks: - from required: - body - comment: *636 - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + comment: *637 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117180,11 +117196,11 @@ webhooks: type: string enum: - created - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117266,11 +117282,11 @@ webhooks: type: string enum: - deleted - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117370,11 +117386,11 @@ webhooks: type: string required: - from - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117456,10 +117472,10 @@ webhooks: type: string enum: - labeled - discussion: *635 - enterprise: *619 - installation: *620 - label: &638 + discussion: *636 + enterprise: *620 + installation: *621 + label: &639 title: Label type: object properties: @@ -117492,8 +117508,8 @@ webhooks: - color - default - description - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117576,11 +117592,11 @@ webhooks: type: string enum: - locked - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117662,11 +117678,11 @@ webhooks: type: string enum: - pinned - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117748,11 +117764,11 @@ webhooks: type: string enum: - reopened - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117837,16 +117853,16 @@ webhooks: changes: type: object properties: - new_discussion: *635 - new_repository: *622 + new_discussion: *636 + new_repository: *623 required: - new_discussion - new_repository - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117929,10 +117945,10 @@ webhooks: type: string enum: - unanswered - discussion: *635 - old_answer: *637 - organization: *621 - repository: *622 + discussion: *636 + old_answer: *638 + organization: *622 + repository: *623 sender: *4 required: - action @@ -118014,12 +118030,12 @@ webhooks: type: string enum: - unlabeled - discussion: *635 - enterprise: *619 - installation: *620 - label: *638 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -118102,11 +118118,11 @@ webhooks: type: string enum: - unlocked - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -118188,11 +118204,11 @@ webhooks: type: string enum: - unpinned - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -118265,7 +118281,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *619 + enterprise: *620 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -118943,9 +118959,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - forkee @@ -119091,9 +119107,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pages: description: The pages that were updated. type: array @@ -119131,7 +119147,7 @@ webhooks: - action - sha - html_url - repository: *622 + repository: *623 sender: *4 required: - pages @@ -119207,10 +119223,10 @@ webhooks: type: string enum: - created - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories: &640 + organization: *622 + repositories: &641 description: An array of repository objects that the installation can access. type: array @@ -119236,8 +119252,8 @@ webhooks: - name - full_name - private - repository: *622 - requester: *639 + repository: *623 + requester: *640 sender: *4 required: - action @@ -119312,11 +119328,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories: *640 - repository: *622 + organization: *622 + repositories: *641 + repository: *623 requester: type: - 'null' @@ -119393,11 +119409,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories: *640 - repository: *622 + organization: *622 + repositories: *641 + repository: *623 requester: type: - 'null' @@ -119474,10 +119490,10 @@ webhooks: type: string enum: - added - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories_added: &641 + organization: *622 + repositories_added: &642 description: An array of repository objects, which were added to the installation. type: array @@ -119523,15 +119539,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *622 - repository_selection: &642 + repository: *623 + repository_selection: &643 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *639 + requester: *640 sender: *4 required: - action @@ -119610,10 +119626,10 @@ webhooks: type: string enum: - removed - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories_added: *641 + organization: *622 + repositories_added: *642 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -119640,9 +119656,9 @@ webhooks: - name - full_name - private - repository: *622 - repository_selection: *642 - requester: *639 + repository: *623 + repository_selection: *643 + requester: *640 sender: *4 required: - action @@ -119721,11 +119737,11 @@ webhooks: type: string enum: - suspend - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories: *640 - repository: *622 + organization: *622 + repositories: *641 + repository: *623 requester: type: - 'null' @@ -119907,10 +119923,10 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 target_type: type: string @@ -119989,11 +120005,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories: *640 - repository: *622 + organization: *622 + repositories: *641 + repository: *623 requester: type: - 'null' @@ -120241,8 +120257,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -121432,8 +121448,8 @@ webhooks: - state - locked - assignee - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -121513,7 +121529,7 @@ webhooks: type: string enum: - deleted - comment: &643 + comment: &644 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -121680,8 +121696,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -122869,8 +122885,8 @@ webhooks: - state - locked - assignee - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -122950,7 +122966,7 @@ webhooks: type: string enum: - edited - changes: &668 + changes: &669 description: The changes to the comment. type: object properties: @@ -122962,9 +122978,9 @@ webhooks: type: string required: - from - comment: *643 - enterprise: *619 - installation: *620 + comment: *644 + enterprise: *620 + installation: *621 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -124153,8 +124169,8 @@ webhooks: - state - locked - assignee - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -124236,10 +124252,10 @@ webhooks: type: string enum: - assigned - assignee: *639 - enterprise: *619 - installation: *620 - issue: &646 + assignee: *640 + enterprise: *620 + installation: *621 + issue: &647 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -125183,8 +125199,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -125264,8 +125280,8 @@ webhooks: type: string enum: - closed - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -126357,8 +126373,8 @@ webhooks: required: - state - closed_at - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -126437,8 +126453,8 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -127375,8 +127391,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -127455,8 +127471,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128397,7 +128413,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &644 + milestone: &645 title: Milestone description: A collection of related issues and pull requests. type: object @@ -128540,8 +128556,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -128640,8 +128656,8 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -129585,9 +129601,9 @@ webhooks: - active_lock_reason - body - reactions - label: *638 - organization: *621 - repository: *622 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -129667,8 +129683,8 @@ webhooks: type: string enum: - labeled - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -130611,9 +130627,9 @@ webhooks: - active_lock_reason - body - reactions - label: *638 - organization: *621 - repository: *622 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -130693,8 +130709,8 @@ webhooks: type: string enum: - locked - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -131639,8 +131655,8 @@ webhooks: format: uri user_view_type: type: string - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -131719,8 +131735,8 @@ webhooks: type: string enum: - milestoned - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -132659,9 +132675,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *644 - organization: *621 - repository: *622 + milestone: *645 + organization: *622 + repository: *623 sender: *4 required: - action @@ -134161,8 +134177,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135105,8 +135121,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -135186,9 +135202,9 @@ webhooks: type: string enum: - pinned - enterprise: *619 - installation: *620 - issue: &645 + enterprise: *620 + installation: *621 + issue: &646 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136125,8 +136141,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -136205,8 +136221,8 @@ webhooks: type: string enum: - reopened - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137150,8 +137166,8 @@ webhooks: format: uri user_view_type: type: string - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -138651,11 +138667,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *619 - installation: *620 - issue: *645 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + issue: *646 + organization: *622 + repository: *623 sender: *4 required: - action @@ -138736,7 +138752,7 @@ webhooks: type: string enum: - unassigned - assignee: &671 + assignee: &672 title: User type: - object @@ -138808,11 +138824,11 @@ webhooks: required: - login - id - enterprise: *619 - installation: *620 - issue: *646 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + issue: *647 + organization: *622 + repository: *623 sender: *4 required: - action @@ -138891,12 +138907,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *619 - installation: *620 - issue: *646 - label: *638 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + issue: *647 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -138976,8 +138992,8 @@ webhooks: type: string enum: - unlocked - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139920,8 +139936,8 @@ webhooks: format: uri user_view_type: type: string - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -140001,11 +140017,11 @@ webhooks: type: string enum: - unpinned - enterprise: *619 - installation: *620 - issue: *645 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + issue: *646 + organization: *622 + repository: *623 sender: *4 required: - action @@ -140084,11 +140100,11 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - label: *638 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -140166,11 +140182,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - label: *638 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -140280,11 +140296,11 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - label: *638 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -140366,9 +140382,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *619 - installation: *620 - marketplace_purchase: &647 + enterprise: *620 + installation: *621 + marketplace_purchase: &648 title: Marketplace Purchase type: object required: @@ -140456,8 +140472,8 @@ webhooks: type: integer unit_count: type: integer - organization: *621 - previous_marketplace_purchase: &648 + organization: *622 + previous_marketplace_purchase: &649 title: Marketplace Purchase type: object properties: @@ -140541,7 +140557,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *622 + repository: *623 sender: *4 required: - action @@ -140621,10 +140637,10 @@ webhooks: - changed effective_date: type: string - enterprise: *619 - installation: *620 - marketplace_purchase: *647 - organization: *621 + enterprise: *620 + installation: *621 + marketplace_purchase: *648 + organization: *622 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -140712,7 +140728,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *622 + repository: *623 sender: *4 required: - action @@ -140794,10 +140810,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *619 - installation: *620 - marketplace_purchase: *647 - organization: *621 + enterprise: *620 + installation: *621 + marketplace_purchase: *648 + organization: *622 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -140883,7 +140899,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *622 + repository: *623 sender: *4 required: - action @@ -140964,8 +140980,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 marketplace_purchase: title: Marketplace Purchase type: object @@ -141051,9 +141067,9 @@ webhooks: type: integer unit_count: type: integer - organization: *621 - previous_marketplace_purchase: *648 - repository: *622 + organization: *622 + previous_marketplace_purchase: *649 + repository: *623 sender: *4 required: - action @@ -141133,12 +141149,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *619 - installation: *620 - marketplace_purchase: *647 - organization: *621 - previous_marketplace_purchase: *648 - repository: *622 + enterprise: *620 + installation: *621 + marketplace_purchase: *648 + organization: *622 + previous_marketplace_purchase: *649 + repository: *623 sender: *4 required: - action @@ -141240,11 +141256,11 @@ webhooks: type: string required: - to - enterprise: *619 - installation: *620 - member: *639 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + member: *640 + organization: *622 + repository: *623 sender: *4 required: - action @@ -141346,11 +141362,11 @@ webhooks: type: - string - 'null' - enterprise: *619 - installation: *620 - member: *639 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + member: *640 + organization: *622 + repository: *623 sender: *4 required: - action @@ -141429,11 +141445,11 @@ webhooks: type: string enum: - removed - enterprise: *619 - installation: *620 - member: *639 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + member: *640 + organization: *622 + repository: *623 sender: *4 required: - action @@ -141511,11 +141527,11 @@ webhooks: type: string enum: - added - enterprise: *619 - installation: *620 - member: *639 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + member: *640 + organization: *622 + repository: *623 scope: description: The scope of the membership. Currently, can only be `team`. @@ -141593,7 +141609,7 @@ webhooks: required: - login - id - team: &649 + team: &650 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -141786,11 +141802,11 @@ webhooks: type: string enum: - removed - enterprise: *619 - installation: *620 - member: *639 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + member: *640 + organization: *622 + repository: *623 scope: description: The scope of the membership. Currently, can only be `team`. @@ -141869,7 +141885,7 @@ webhooks: required: - login - id - team: *649 + team: *650 required: - action - scope @@ -141951,8 +141967,8 @@ webhooks: type: string enum: - checks_requested - installation: *620 - merge_group: &650 + installation: *621 + merge_group: &651 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -141971,15 +141987,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *344 + head_commit: *345 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142065,10 +142081,10 @@ webhooks: - merged - invalidated - dequeued - installation: *620 - merge_group: *650 - organization: *621 - repository: *622 + installation: *621 + merge_group: *651 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142141,7 +142157,7 @@ webhooks: type: string enum: - deleted - enterprise: *619 + enterprise: *620 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -142249,12 +142265,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *620 - organization: *621 + installation: *621 + organization: *622 repository: anyOf: - type: 'null' - - *622 + - *623 sender: *4 required: - action @@ -142334,11 +142350,11 @@ webhooks: type: string enum: - closed - enterprise: *619 - installation: *620 - milestone: *644 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + milestone: *645 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142417,9 +142433,9 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - milestone: &651 + enterprise: *620 + installation: *621 + milestone: &652 title: Milestone description: A collection of related issues and pull requests. type: object @@ -142561,8 +142577,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142641,11 +142657,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - milestone: *644 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + milestone: *645 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142755,11 +142771,11 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - milestone: *644 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + milestone: *645 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142839,11 +142855,11 @@ webhooks: type: string enum: - opened - enterprise: *619 - installation: *620 - milestone: *651 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + milestone: *652 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142922,11 +142938,11 @@ webhooks: type: string enum: - blocked - blocked_user: *639 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + blocked_user: *640 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -143005,11 +143021,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *639 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + blocked_user: *640 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -143088,9 +143104,9 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - membership: &652 + enterprise: *620 + installation: *621 + membership: &653 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -143184,8 +143200,8 @@ webhooks: - role - organization_url - user - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -143263,11 +143279,11 @@ webhooks: type: string enum: - member_added - enterprise: *619 - installation: *620 - membership: *652 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + membership: *653 + organization: *622 + repository: *623 sender: *4 required: - action @@ -143346,8 +143362,8 @@ webhooks: type: string enum: - member_invited - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -143469,10 +143485,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 - user: *639 + user: *640 required: - action - invitation @@ -143550,11 +143566,11 @@ webhooks: type: string enum: - member_removed - enterprise: *619 - installation: *620 - membership: *652 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + membership: *653 + organization: *622 + repository: *623 sender: *4 required: - action @@ -143641,11 +143657,11 @@ webhooks: properties: from: type: string - enterprise: *619 - installation: *620 - membership: *652 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + membership: *653 + organization: *622 + repository: *623 sender: *4 required: - action @@ -143721,9 +143737,9 @@ webhooks: type: string enum: - published - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 package: description: Information about the package. type: object @@ -144246,7 +144262,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &653 + items: &654 title: Ruby Gems metadata type: object properties: @@ -144343,7 +144359,7 @@ webhooks: - owner - package_version - registry - repository: *622 + repository: *623 sender: *4 required: - action @@ -144419,9 +144435,9 @@ webhooks: type: string enum: - updated - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 package: description: Information about the package. type: object @@ -144783,7 +144799,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *653 + items: *654 source_url: type: string format: uri @@ -144854,7 +144870,7 @@ webhooks: - owner - package_version - registry - repository: *622 + repository: *623 sender: *4 required: - action @@ -145035,12 +145051,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *619 + enterprise: *620 id: type: integer - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - id @@ -145120,7 +145136,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &654 + personal_access_token_request: &655 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -145270,10 +145286,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *619 - organization: *621 + enterprise: *620 + organization: *622 sender: *4 - installation: *620 + installation: *621 required: - action - personal_access_token_request @@ -145352,11 +145368,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *654 - enterprise: *619 - organization: *621 + personal_access_token_request: *655 + enterprise: *620 + organization: *622 sender: *4 - installation: *620 + installation: *621 required: - action - personal_access_token_request @@ -145434,11 +145450,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *654 - enterprise: *619 - organization: *621 + personal_access_token_request: *655 + enterprise: *620 + organization: *622 sender: *4 - installation: *620 + installation: *621 required: - action - personal_access_token_request @@ -145515,11 +145531,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *654 - organization: *621 - enterprise: *619 + personal_access_token_request: *655 + organization: *622 + enterprise: *620 sender: *4 - installation: *620 + installation: *621 required: - action - personal_access_token_request @@ -145623,7 +145639,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *655 + last_response: *656 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -145655,8 +145671,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 zen: description: Random string of GitHub zen. @@ -145901,10 +145917,10 @@ webhooks: - from required: - note - enterprise: *619 - installation: *620 - organization: *621 - project_card: &656 + enterprise: *620 + installation: *621 + organization: *622 + project_card: &657 title: Project Card type: object properties: @@ -146027,7 +146043,7 @@ webhooks: - creator - created_at - updated_at - repository: *622 + repository: *623 sender: *4 required: - action @@ -146108,11 +146124,11 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - project_card: *656 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project_card: *657 + repository: *623 sender: *4 required: - action @@ -146192,9 +146208,9 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 project_card: title: Project Card type: object @@ -146324,7 +146340,7 @@ webhooks: repository: anyOf: - type: 'null' - - *622 + - *623 sender: *4 required: - action @@ -146418,11 +146434,11 @@ webhooks: - from required: - note - enterprise: *619 - installation: *620 - organization: *621 - project_card: *656 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project_card: *657 + repository: *623 sender: *4 required: - action @@ -146516,9 +146532,9 @@ webhooks: - from required: - column_id - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 project_card: allOf: - title: Project Card @@ -146715,7 +146731,7 @@ webhooks: type: string required: - after_id - repository: *622 + repository: *623 sender: *4 required: - action @@ -146795,10 +146811,10 @@ webhooks: type: string enum: - closed - enterprise: *619 - installation: *620 - organization: *621 - project: &658 + enterprise: *620 + installation: *621 + organization: *622 + project: &659 title: Project type: object properties: @@ -146925,7 +146941,7 @@ webhooks: - creator - created_at - updated_at - repository: *622 + repository: *623 sender: *4 required: - action @@ -147005,10 +147021,10 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - project_column: &657 + enterprise: *620 + installation: *621 + organization: *622 + project_column: &658 title: Project Column type: object properties: @@ -147048,7 +147064,7 @@ webhooks: - name - created_at - updated_at - repository: *622 + repository: *623 sender: *4 required: - action @@ -147127,14 +147143,14 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - project_column: *657 + enterprise: *620 + installation: *621 + organization: *622 + project_column: *658 repository: anyOf: - type: 'null' - - *622 + - *623 sender: *4 required: - action @@ -147223,11 +147239,11 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - organization: *621 - project_column: *657 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project_column: *658 + repository: *623 sender: *4 required: - action @@ -147307,11 +147323,11 @@ webhooks: type: string enum: - moved - enterprise: *619 - installation: *620 - organization: *621 - project_column: *657 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project_column: *658 + repository: *623 sender: *4 required: - action @@ -147391,11 +147407,11 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - project: *658 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project: *659 + repository: *623 sender: *4 required: - action @@ -147475,14 +147491,14 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - project: *658 + enterprise: *620 + installation: *621 + organization: *622 + project: *659 repository: anyOf: - type: 'null' - - *622 + - *623 sender: *4 required: - action @@ -147583,11 +147599,11 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - organization: *621 - project: *658 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project: *659 + repository: *623 sender: *4 required: - action @@ -147666,11 +147682,11 @@ webhooks: type: string enum: - reopened - enterprise: *619 - installation: *620 - organization: *621 - project: *658 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project: *659 + repository: *623 sender: *4 required: - action @@ -147751,9 +147767,9 @@ webhooks: type: string enum: - closed - installation: *620 - organization: *621 - projects_v2: &659 + installation: *621 + organization: *622 + projects_v2: &660 title: Projects v2 Project description: A projects v2 project type: object @@ -147901,9 +147917,9 @@ webhooks: type: string enum: - created - installation: *620 - organization: *621 - projects_v2: *659 + installation: *621 + organization: *622 + projects_v2: *660 sender: *4 required: - action @@ -147984,9 +148000,9 @@ webhooks: type: string enum: - deleted - installation: *620 - organization: *621 - projects_v2: *659 + installation: *621 + organization: *622 + projects_v2: *660 sender: *4 required: - action @@ -148107,9 +148123,9 @@ webhooks: type: string to: type: string - installation: *620 - organization: *621 - projects_v2: *659 + installation: *621 + organization: *622 + projects_v2: *660 sender: *4 required: - action @@ -148192,7 +148208,7 @@ webhooks: type: string enum: - archived - changes: &663 + changes: &664 type: object properties: archived_at: @@ -148208,9 +148224,9 @@ webhooks: - string - 'null' format: date-time - installation: *620 - organization: *621 - projects_v2_item: &660 + installation: *621 + organization: *622 + projects_v2_item: &661 title: Projects v2 Item description: An item belonging to a project type: object @@ -148349,9 +148365,9 @@ webhooks: - 'null' to: type: string - installation: *620 - organization: *621 - projects_v2_item: *660 + installation: *621 + organization: *622 + projects_v2_item: *661 sender: *4 required: - action @@ -148433,9 +148449,9 @@ webhooks: type: string enum: - created - installation: *620 - organization: *621 - projects_v2_item: *660 + installation: *621 + organization: *622 + projects_v2_item: *661 sender: *4 required: - action @@ -148516,9 +148532,9 @@ webhooks: type: string enum: - deleted - installation: *620 - organization: *621 - projects_v2_item: *660 + installation: *621 + organization: *622 + projects_v2_item: *661 sender: *4 required: - action @@ -148623,7 +148639,7 @@ webhooks: oneOf: - type: string - type: integer - - &661 + - &662 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -148643,7 +148659,7 @@ webhooks: required: - id - name - - &662 + - &663 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -148672,8 +148688,8 @@ webhooks: oneOf: - type: string - type: integer - - *661 - *662 + - *663 type: - 'null' - string @@ -148696,9 +148712,9 @@ webhooks: - 'null' required: - body - installation: *620 - organization: *621 - projects_v2_item: *660 + installation: *621 + organization: *622 + projects_v2_item: *661 sender: *4 required: - action @@ -148795,9 +148811,9 @@ webhooks: type: - string - 'null' - installation: *620 - organization: *621 - projects_v2_item: *660 + installation: *621 + organization: *622 + projects_v2_item: *661 sender: *4 required: - action @@ -148880,10 +148896,10 @@ webhooks: type: string enum: - restored - changes: *663 - installation: *620 - organization: *621 - projects_v2_item: *660 + changes: *664 + installation: *621 + organization: *622 + projects_v2_item: *661 sender: *4 required: - action @@ -148965,9 +148981,9 @@ webhooks: type: string enum: - reopened - installation: *620 - organization: *621 - projects_v2: *659 + installation: *621 + organization: *622 + projects_v2: *660 sender: *4 required: - action @@ -149048,9 +149064,9 @@ webhooks: type: string enum: - created - installation: *620 - organization: *621 - projects_v2_status_update: &664 + installation: *621 + organization: *622 + projects_v2_status_update: &665 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -149185,9 +149201,9 @@ webhooks: type: string enum: - deleted - installation: *620 - organization: *621 - projects_v2_status_update: *664 + installation: *621 + organization: *622 + projects_v2_status_update: *665 sender: *4 required: - action @@ -149333,9 +149349,9 @@ webhooks: - string - 'null' format: date - installation: *620 - organization: *621 - projects_v2_status_update: *664 + installation: *621 + organization: *622 + projects_v2_status_update: *665 sender: *4 required: - action @@ -149406,10 +149422,10 @@ webhooks: title: public event type: object properties: - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - repository @@ -149486,13 +149502,13 @@ webhooks: type: string enum: - assigned - assignee: *639 - enterprise: *619 - installation: *620 - number: &665 + assignee: *640 + enterprise: *620 + installation: *621 + number: &666 description: The pull request number. type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -151841,7 +151857,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -151923,11 +151939,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -154269,7 +154285,7 @@ webhooks: - draft reason: type: string - repository: *622 + repository: *623 sender: *4 required: - action @@ -154351,11 +154367,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -156697,7 +156713,7 @@ webhooks: - draft reason: type: string - repository: *622 + repository: *623 sender: *4 required: - action @@ -156779,13 +156795,13 @@ webhooks: type: string enum: - closed - enterprise: *619 - installation: *620 - number: *665 - organization: *621 - pull_request: &666 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 + pull_request: &667 allOf: - - *495 + - *496 - type: object properties: allow_auto_merge: @@ -156847,7 +156863,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *622 + repository: *623 sender: *4 required: - action @@ -156928,12 +156944,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *619 - installation: *620 - number: *665 - organization: *621 - pull_request: *666 - repository: *622 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 + pull_request: *667 + repository: *623 sender: *4 required: - action @@ -157013,11 +157029,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *619 - milestone: *393 - number: *665 - organization: *621 - pull_request: &667 + enterprise: *620 + milestone: *394 + number: *666 + organization: *622 + pull_request: &668 title: Pull Request type: object properties: @@ -159344,7 +159360,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -159423,11 +159439,11 @@ webhooks: type: string enum: - dequeued - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -161773,7 +161789,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *622 + repository: *623 sender: *4 required: - action @@ -161897,12 +161913,12 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - number: *665 - organization: *621 - pull_request: *666 - repository: *622 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 + pull_request: *667 + repository: *623 sender: *4 required: - action @@ -161982,11 +161998,11 @@ webhooks: type: string enum: - enqueued - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -164317,7 +164333,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -164397,11 +164413,11 @@ webhooks: type: string enum: - labeled - enterprise: *619 - installation: *620 - label: *638 - number: *665 - organization: *621 + enterprise: *620 + installation: *621 + label: *639 + number: *666 + organization: *622 pull_request: title: Pull Request type: object @@ -166749,7 +166765,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -166830,10 +166846,10 @@ webhooks: type: string enum: - locked - enterprise: *619 - installation: *620 - number: *665 - organization: *621 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 pull_request: title: Pull Request type: object @@ -169179,7 +169195,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -169259,12 +169275,12 @@ webhooks: type: string enum: - milestoned - enterprise: *619 - milestone: *393 - number: *665 - organization: *621 - pull_request: *667 - repository: *622 + enterprise: *620 + milestone: *394 + number: *666 + organization: *622 + pull_request: *668 + repository: *623 sender: *4 required: - action @@ -169343,12 +169359,12 @@ webhooks: type: string enum: - opened - enterprise: *619 - installation: *620 - number: *665 - organization: *621 - pull_request: *666 - repository: *622 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 + pull_request: *667 + repository: *623 sender: *4 required: - action @@ -169429,12 +169445,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *619 - installation: *620 - number: *665 - organization: *621 - pull_request: *666 - repository: *622 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 + pull_request: *667 + repository: *623 sender: *4 required: - action @@ -169514,12 +169530,12 @@ webhooks: type: string enum: - reopened - enterprise: *619 - installation: *620 - number: *665 - organization: *621 - pull_request: *666 - repository: *622 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 + pull_request: *667 + repository: *623 sender: *4 required: - action @@ -169894,9 +169910,9 @@ webhooks: - start_side - side - reactions - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: type: object properties: @@ -172126,7 +172142,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *622 + repository: *623 sender: *4 required: - action @@ -172206,7 +172222,7 @@ webhooks: type: string enum: - deleted - comment: &669 + comment: &670 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -172499,9 +172515,9 @@ webhooks: - start_side - side - reactions - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: type: object properties: @@ -174719,7 +174735,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *622 + repository: *623 sender: *4 required: - action @@ -174799,11 +174815,11 @@ webhooks: type: string enum: - edited - changes: *668 - comment: *669 - enterprise: *619 - installation: *620 - organization: *621 + changes: *669 + comment: *670 + enterprise: *620 + installation: *621 + organization: *622 pull_request: type: object properties: @@ -177024,7 +177040,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *622 + repository: *623 sender: *4 required: - action @@ -177105,9 +177121,9 @@ webhooks: type: string enum: - dismissed - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: title: Simple Pull Request type: object @@ -179340,7 +179356,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *622 + repository: *623 review: description: The review that was affected. type: object @@ -179586,9 +179602,9 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: title: Simple Pull Request type: object @@ -181702,8 +181718,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *622 - review: &670 + repository: *623 + review: &671 description: The review that was affected. type: object properties: @@ -181936,12 +181952,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: description: The pull request number. type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -184288,7 +184304,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 requested_reviewer: title: User type: @@ -184374,12 +184390,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: description: The pull request number. type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -186733,7 +186749,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 requested_team: title: Team description: Groups of organization members that gives permissions @@ -186928,12 +186944,12 @@ webhooks: type: string enum: - review_requested - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: description: The pull request number. type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -189282,7 +189298,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 requested_reviewer: title: User type: @@ -189369,12 +189385,12 @@ webhooks: type: string enum: - review_requested - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: description: The pull request number. type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -191714,7 +191730,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 requested_team: title: Team description: Groups of organization members that gives permissions @@ -191898,9 +191914,9 @@ webhooks: type: string enum: - submitted - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: title: Simple Pull Request type: object @@ -194136,8 +194152,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *622 - review: *670 + repository: *623 + review: *671 sender: *4 required: - action @@ -194217,9 +194233,9 @@ webhooks: type: string enum: - resolved - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: title: Simple Pull Request type: object @@ -196350,7 +196366,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *622 + repository: *623 sender: *4 thread: type: object @@ -196742,9 +196758,9 @@ webhooks: type: string enum: - unresolved - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: title: Simple Pull Request type: object @@ -198858,7 +198874,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *622 + repository: *623 sender: *4 thread: type: object @@ -199252,10 +199268,10 @@ webhooks: type: string before: type: string - enterprise: *619 - installation: *620 - number: *665 - organization: *621 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 pull_request: title: Pull Request type: object @@ -201590,7 +201606,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -201672,11 +201688,11 @@ webhooks: type: string enum: - unassigned - assignee: *671 - enterprise: *619 - installation: *620 - number: *665 - organization: *621 + assignee: *672 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 pull_request: title: Pull Request type: object @@ -204026,7 +204042,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -204105,11 +204121,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *619 - installation: *620 - label: *638 - number: *665 - organization: *621 + enterprise: *620 + installation: *621 + label: *639 + number: *666 + organization: *622 pull_request: title: Pull Request type: object @@ -206448,7 +206464,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -206529,10 +206545,10 @@ webhooks: type: string enum: - unlocked - enterprise: *619 - installation: *620 - number: *665 - organization: *621 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 pull_request: title: Pull Request type: object @@ -208861,7 +208877,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -209064,7 +209080,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *619 + enterprise: *620 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -209159,8 +209175,8 @@ webhooks: - url - author - committer - installation: *620 - organization: *621 + installation: *621 + organization: *622 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -209748,9 +209764,9 @@ webhooks: type: string enum: - published - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 registry_package: type: object properties: @@ -210227,7 +210243,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *653 + items: *654 summary: type: string tag_name: @@ -210283,7 +210299,7 @@ webhooks: - owner - package_version - registry - repository: *622 + repository: *623 sender: *4 required: - action @@ -210361,9 +210377,9 @@ webhooks: type: string enum: - updated - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 registry_package: type: object properties: @@ -210675,7 +210691,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *653 + items: *654 summary: type: string tag_name: @@ -210725,7 +210741,7 @@ webhooks: - owner - package_version - registry - repository: *622 + repository: *623 sender: *4 required: - action @@ -210802,10 +210818,10 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - release: &672 + enterprise: *620 + installation: *621 + organization: *622 + release: &673 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -211121,7 +211137,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *622 + repository: *623 sender: *4 required: - action @@ -211198,11 +211214,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - release: *672 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + release: *673 + repository: *623 sender: *4 required: - action @@ -211319,11 +211335,11 @@ webhooks: type: boolean required: - to - enterprise: *619 - installation: *620 - organization: *621 - release: *672 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + release: *673 + repository: *623 sender: *4 required: - action @@ -211401,9 +211417,9 @@ webhooks: type: string enum: - prereleased - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -211724,7 +211740,7 @@ webhooks: - string - 'null' format: uri - repository: *622 + repository: *623 sender: *4 required: - action @@ -211800,10 +211816,10 @@ webhooks: type: string enum: - published - enterprise: *619 - installation: *620 - organization: *621 - release: &673 + enterprise: *620 + installation: *621 + organization: *622 + release: &674 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -212121,7 +212137,7 @@ webhooks: - string - 'null' format: uri - repository: *622 + repository: *623 sender: *4 required: - action @@ -212197,11 +212213,11 @@ webhooks: type: string enum: - released - enterprise: *619 - installation: *620 - organization: *621 - release: *672 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + release: *673 + repository: *623 sender: *4 required: - action @@ -212277,11 +212293,11 @@ webhooks: type: string enum: - unpublished - enterprise: *619 - installation: *620 - organization: *621 - release: *673 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + release: *674 + repository: *623 sender: *4 required: - action @@ -212357,11 +212373,11 @@ webhooks: type: string enum: - published - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - repository_advisory: *551 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + repository_advisory: *552 sender: *4 required: - action @@ -212437,11 +212453,11 @@ webhooks: type: string enum: - reported - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - repository_advisory: *551 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + repository_advisory: *552 sender: *4 required: - action @@ -212517,10 +212533,10 @@ webhooks: type: string enum: - archived - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -212597,10 +212613,10 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -212678,10 +212694,10 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -212766,10 +212782,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -212884,10 +212900,10 @@ webhooks: - 'null' items: type: string - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -212959,10 +212975,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 status: type: string @@ -213043,10 +213059,10 @@ webhooks: type: string enum: - privatized - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -213123,10 +213139,10 @@ webhooks: type: string enum: - publicized - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -213220,10 +213236,10 @@ webhooks: - name required: - repository - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -213303,11 +213319,11 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - repository_ruleset: *225 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + repository_ruleset: *226 sender: *4 required: - action @@ -213385,11 +213401,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - repository_ruleset: *225 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + repository_ruleset: *226 sender: *4 required: - action @@ -213467,11 +213483,11 @@ webhooks: type: string enum: - edited - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - repository_ruleset: *225 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + repository_ruleset: *226 changes: type: object properties: @@ -213490,16 +213506,16 @@ webhooks: properties: added: type: array - items: *219 + items: *220 deleted: type: array - items: *219 + items: *220 updated: type: array items: type: object properties: - condition: *219 + condition: *220 changes: type: object properties: @@ -213532,16 +213548,16 @@ webhooks: properties: added: type: array - items: *224 + items: *225 deleted: type: array - items: *224 + items: *225 updated: type: array items: type: object properties: - rule: *224 + rule: *225 changes: type: object properties: @@ -213778,10 +213794,10 @@ webhooks: - from required: - owner - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -213859,10 +213875,10 @@ webhooks: type: string enum: - unarchived - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -213940,7 +213956,7 @@ webhooks: type: string enum: - create - alert: &674 + alert: &675 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -214064,10 +214080,10 @@ webhooks: type: string enum: - open - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -214277,10 +214293,10 @@ webhooks: type: string enum: - dismissed - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -214358,11 +214374,11 @@ webhooks: type: string enum: - reopen - alert: *674 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + alert: *675 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -214564,10 +214580,10 @@ webhooks: enum: - fixed - open - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -214645,7 +214661,7 @@ webhooks: type: string enum: - created - alert: &675 + alert: &676 type: object properties: number: *52 @@ -214755,10 +214771,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -214839,11 +214855,11 @@ webhooks: type: string enum: - created - alert: *675 - installation: *620 - location: *676 - organization: *621 - repository: *622 + alert: *676 + installation: *621 + location: *677 + organization: *622 + repository: *623 sender: *4 required: - location @@ -215081,11 +215097,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *675 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + alert: *676 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -215163,11 +215179,11 @@ webhooks: type: string enum: - reopened - alert: *675 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + alert: *676 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -215245,11 +215261,11 @@ webhooks: type: string enum: - resolved - alert: *675 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + alert: *676 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -215327,11 +215343,11 @@ webhooks: type: string enum: - validated - alert: *675 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + alert: *676 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -215461,10 +215477,10 @@ webhooks: - organization - enterprise - - repository: *622 - enterprise: *619 - installation: *620 - organization: *621 + repository: *623 + enterprise: *620 + installation: *621 + organization: *622 sender: *4 required: - action @@ -215542,11 +215558,11 @@ webhooks: type: string enum: - published - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - security_advisory: &677 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + security_advisory: &678 description: The details of the security advisory, including summary, description, and severity. type: object @@ -215732,11 +215748,11 @@ webhooks: type: string enum: - updated - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - security_advisory: *677 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + security_advisory: *678 sender: *4 required: - action @@ -215809,10 +215825,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -215998,11 +216014,11 @@ webhooks: from: type: object properties: - security_and_analysis: *218 - enterprise: *619 - installation: *620 - organization: *621 - repository: *272 + security_and_analysis: *219 + enterprise: *620 + installation: *621 + organization: *622 + repository: *273 sender: *4 required: - changes @@ -216080,12 +216096,12 @@ webhooks: type: string enum: - cancelled - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - sponsorship: &678 + sponsorship: &679 type: object properties: created_at: @@ -216390,12 +216406,12 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - sponsorship: *678 + sponsorship: *679 required: - action - sponsorship @@ -216483,12 +216499,12 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - sponsorship: *678 + sponsorship: *679 required: - action - changes @@ -216565,17 +216581,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &679 + effective_date: &680 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: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - sponsorship: *678 + sponsorship: *679 required: - action - sponsorship @@ -216649,7 +216665,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &680 + changes: &681 type: object properties: tier: @@ -216693,13 +216709,13 @@ webhooks: - from required: - tier - effective_date: *679 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + effective_date: *680 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - sponsorship: *678 + sponsorship: *679 required: - action - changes @@ -216776,13 +216792,13 @@ webhooks: type: string enum: - tier_changed - changes: *680 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + changes: *681 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - sponsorship: *678 + sponsorship: *679 required: - action - changes @@ -216856,10 +216872,10 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -216943,10 +216959,10 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -217380,15 +217396,15 @@ webhooks: type: - string - 'null' - enterprise: *619 + enterprise: *620 id: description: The unique identifier of the status. type: integer - installation: *620 + installation: *621 name: type: string - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 sha: description: The Commit SHA. @@ -217504,9 +217520,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *74 - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -217596,9 +217612,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *74 - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -217688,9 +217704,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *74 - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -217780,9 +217796,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *74 - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -217859,12 +217875,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - team: &681 + team: &682 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -218057,9 +218073,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 repository: title: Repository description: A git repository @@ -218529,7 +218545,7 @@ webhooks: - topics - visibility sender: *4 - team: *681 + team: *682 required: - action - team @@ -218605,9 +218621,9 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 repository: title: Repository description: A git repository @@ -219077,7 +219093,7 @@ webhooks: - topics - visibility sender: *4 - team: *681 + team: *682 required: - action - team @@ -219154,9 +219170,9 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 repository: title: Repository description: A git repository @@ -219626,7 +219642,7 @@ webhooks: - topics - visibility sender: *4 - team: *681 + team: *682 required: - action - team @@ -219770,9 +219786,9 @@ webhooks: - from required: - permissions - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 repository: title: Repository description: A git repository @@ -220242,7 +220258,7 @@ webhooks: - topics - visibility sender: *4 - team: *681 + team: *682 required: - action - changes @@ -220320,9 +220336,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 repository: title: Repository description: A git repository @@ -220792,7 +220808,7 @@ webhooks: - topics - visibility sender: *4 - team: *681 + team: *682 required: - action - team @@ -220868,10 +220884,10 @@ webhooks: type: string enum: - started - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -220944,17 +220960,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *619 + enterprise: *620 inputs: type: - object - 'null' additionalProperties: true - installation: *620 - organization: *621 + installation: *621 + organization: *622 ref: type: string - repository: *622 + repository: *623 sender: *4 workflow: type: string @@ -221036,10 +221052,10 @@ webhooks: type: string enum: - completed - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 workflow_job: allOf: @@ -221295,7 +221311,7 @@ webhooks: type: string required: - conclusion - deployment: *413 + deployment: *414 required: - action - repository @@ -221374,10 +221390,10 @@ webhooks: type: string enum: - in_progress - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 workflow_job: allOf: @@ -221659,7 +221675,7 @@ webhooks: required: - status - steps - deployment: *413 + deployment: *414 required: - action - repository @@ -221738,10 +221754,10 @@ webhooks: type: string enum: - queued - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 workflow_job: type: object @@ -221887,7 +221903,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *413 + deployment: *414 required: - action - repository @@ -221966,10 +221982,10 @@ webhooks: type: string enum: - waiting - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 workflow_job: type: object @@ -222116,7 +222132,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *413 + deployment: *414 required: - action - repository @@ -222196,12 +222212,12 @@ webhooks: type: string enum: - completed - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - workflow: *634 + workflow: *635 workflow_run: title: Workflow Run type: object @@ -223220,12 +223236,12 @@ webhooks: type: string enum: - in_progress - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - workflow: *634 + workflow: *635 workflow_run: title: Workflow Run type: object @@ -224229,12 +224245,12 @@ webhooks: type: string enum: - requested - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - workflow: *634 + workflow: *635 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 0b2ccab73b..3643c4fa02 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 @@ -3564,6 +3564,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -3634,6 +3635,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -3644,6 +3646,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -99172,6 +99175,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -99242,6 +99246,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -99252,6 +99257,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -127202,6 +127208,22 @@ "type": "string", "format": "date-time" } + }, + { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } } ], "responses": { @@ -129430,6 +129452,22 @@ "type": "string", "format": "date-time" } + }, + { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } } ], "responses": { @@ -273002,7 +273040,7 @@ }, "put": { "summary": "Create or update a repository secret", - "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -273102,7 +273140,7 @@ }, "delete": { "summary": "Delete a repository secret", - "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -310997,7 +311035,7 @@ }, "post": { "summary": "Create a custom deployment protection rule on an environment", - "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", "tags": [ "repos" ], @@ -328141,6 +328179,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -328211,6 +328250,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -328221,6 +328261,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] 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 8c96223006..7040e8b85d 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 @@ -897,7 +897,7 @@ paths: - subscriptions_url - type - url - type: &237 + type: &238 type: string description: The type of credit the user is receiving. enum: @@ -1063,7 +1063,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &553 + - &554 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1684,6 +1684,7 @@ paths: id: description: Unique identifier of the webhook delivery. type: integer + format: int64 examples: - 42 guid: @@ -1738,6 +1739,7 @@ paths: type: - integer - 'null' + format: int64 examples: - 123 repository_id: @@ -1745,6 +1747,7 @@ paths: type: - integer - 'null' + format: int64 examples: - 123 throttled_at: @@ -8948,7 +8951,7 @@ paths: - direct - transitive - - security_advisory: &405 + security_advisory: &406 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9216,7 +9219,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &406 + auto_dismissed_at: &407 type: - string - 'null' @@ -9590,7 +9593,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &228 + - &229 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -9601,7 +9604,7 @@ paths: enum: - open - resolved - - &229 + - &230 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -9611,7 +9614,7 @@ paths: required: false schema: type: string - - &230 + - &231 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -9620,7 +9623,7 @@ paths: required: false schema: type: string - - &231 + - &232 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. @@ -9636,7 +9639,7 @@ paths: - *17 - *37 - *38 - - &232 + - &233 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -9645,7 +9648,7 @@ paths: required: false schema: type: string - - &233 + - &234 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -9654,7 +9657,7 @@ paths: schema: type: boolean default: false - - &234 + - &235 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -9670,7 +9673,7 @@ paths: application/json: schema: type: array - items: &235 + items: &236 type: object properties: number: *52 @@ -9686,14 +9689,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &545 + state: &546 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: &546 + resolution: &547 type: - string - 'null' @@ -9798,7 +9801,7 @@ paths: description: A boolean value representing whether or not alert is base64 encoded examples: - default: &236 + default: &237 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -10251,7 +10254,7 @@ paths: milestone: anyOf: - type: 'null' - - &393 + - &394 title: Milestone description: A collection of related issues and pull requests. @@ -10515,7 +10518,7 @@ paths: - author_association - created_at - updated_at - comment: &452 + comment: &453 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -11090,7 +11093,7 @@ paths: url: type: string format: uri - user: &576 + user: &577 title: Public User description: Public User type: object @@ -14447,14 +14450,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &261 + - &262 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &262 + - &263 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -14525,7 +14528,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &273 + '301': &274 description: Moved permanently content: application/json: @@ -14547,7 +14550,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &481 + - &482 name: all description: If `true`, show notifications marked as read. in: query @@ -14555,7 +14558,7 @@ paths: schema: type: boolean default: false - - &482 + - &483 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -14565,7 +14568,7 @@ paths: type: boolean default: false - *64 - - &483 + - &484 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -14936,7 +14939,7 @@ paths: type: boolean examples: - false - security_and_analysis: &218 + security_and_analysis: &219 type: - object - 'null' @@ -15083,7 +15086,7 @@ paths: - url - subscription_url examples: - default: &484 + default: &485 value: - id: '1' repository: @@ -15704,7 +15707,7 @@ paths: - avatar_url - description examples: - default: &593 + default: &594 value: - login: github id: 1 @@ -16680,7 +16683,7 @@ paths: type: integer repository_cache_usages: type: array - items: &278 + items: &279 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -17578,7 +17581,7 @@ paths: - all - local_only - selected - selected_actions_url: &284 + selected_actions_url: &285 type: string description: The API URL to use to get or set the actions and reusable workflows that are allowed to run, when `allowed_actions` @@ -17668,7 +17671,7 @@ paths: type: array items: *59 examples: - default: &587 + default: &588 value: total_count: 1 repositories: @@ -17996,7 +17999,7 @@ paths: description: Response content: application/json: - schema: &288 + schema: &289 type: object properties: default_workflow_permissions: &108 @@ -18047,7 +18050,7 @@ paths: required: false content: application/json: - schema: &289 + schema: &290 type: object properties: default_workflow_permissions: *108 @@ -18540,7 +18543,7 @@ paths: type: array items: *115 examples: - default: &579 + default: &580 value: total_count: 1 repositories: @@ -19187,7 +19190,7 @@ paths: application/json: schema: type: array - items: &290 + items: &291 title: Runner Application description: Runner Application type: object @@ -19212,7 +19215,7 @@ paths: - download_url - filename examples: - default: &291 + default: &292 value: - os: osx architecture: x64 @@ -19298,7 +19301,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &292 + '201': &293 description: Response content: application/json: @@ -19413,7 +19416,7 @@ paths: - token - expires_at examples: - default: &293 + default: &294 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -19452,7 +19455,7 @@ paths: application/json: schema: *119 examples: - default: &294 + default: &295 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -19486,7 +19489,7 @@ paths: application/json: schema: *117 examples: - default: &295 + default: &296 value: id: 23 name: MBP @@ -19711,7 +19714,7 @@ paths: - *90 - *116 responses: - '200': &296 + '200': &297 description: Response content: application/json: @@ -19768,7 +19771,7 @@ paths: parameters: - *90 - *116 - - &297 + - &298 name: name description: The name of a self-hosted runner's custom label. in: path @@ -19900,7 +19903,7 @@ paths: description: Response content: application/json: - schema: &309 + schema: &310 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -19935,7 +19938,7 @@ paths: - key_id - key examples: - default: &310 + default: &311 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -20348,7 +20351,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *90 - - &283 + - &284 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -20888,7 +20891,7 @@ paths: bundle_url: type: string examples: - default: &323 + default: &324 value: attestations: - bundle: @@ -21125,7 +21128,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *90 - - &348 + - &349 name: tool_name description: The name of a code scanning tool. Only results by this tool will be listed. You can specify the tool by using either `tool_name` or `tool_guid`, @@ -21135,7 +21138,7 @@ paths: schema: &131 type: string description: The name of the tool used to generate the code scanning analysis. - - &349 + - &350 name: tool_guid description: The GUID of a code scanning tool. Only results by this tool will be listed. Note that some code scanning tools may not include a GUID in @@ -21159,7 +21162,7 @@ paths: be returned. in: query required: false - schema: &351 + schema: &352 type: string description: State of a code scanning alert. enum: @@ -21182,7 +21185,7 @@ paths: be returned. in: query required: false - schema: &352 + schema: &353 type: string description: Severity of a code scanning alert. enum: @@ -21208,7 +21211,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: &353 + instances_url: &354 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -21230,7 +21233,7 @@ paths: - type: 'null' - *4 dismissed_at: *130 - dismissed_reason: &354 + dismissed_reason: &355 type: - string - 'null' @@ -21241,14 +21244,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &355 + dismissed_comment: &356 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &356 + rule: &357 type: object properties: id: @@ -21309,7 +21312,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &357 + tool: &358 type: object properties: name: *131 @@ -21320,15 +21323,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *132 - most_recent_instance: &358 + most_recent_instance: &359 type: object properties: - ref: &350 + ref: &351 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &368 + analysis_key: &369 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -21339,7 +21342,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &369 + category: &370 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -22618,7 +22621,7 @@ paths: machine: anyOf: - type: 'null' - - &381 + - &382 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -23570,7 +23573,7 @@ paths: - updated_at - visibility examples: - default: &382 + default: &383 value: total_count: 2 secrets: @@ -23608,7 +23611,7 @@ paths: description: Response content: application/json: - schema: &383 + schema: &384 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -23643,7 +23646,7 @@ paths: - key_id - key examples: - default: &384 + default: &385 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23675,7 +23678,7 @@ paths: application/json: schema: *141 examples: - default: &386 + default: &387 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -24870,7 +24873,7 @@ paths: application/json: schema: type: array - items: &241 + items: &242 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -25185,7 +25188,7 @@ paths: - date additionalProperties: true examples: - default: &242 + default: &243 value: - date: '2024-06-24' total_active_users: 24 @@ -25287,7 +25290,7 @@ paths: '500': *140 '403': *27 '404': *6 - '422': &243 + '422': &244 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -25355,7 +25358,7 @@ paths: application/json: schema: type: array - items: &244 + items: &245 title: Copilot Usage Metrics description: Summary of Copilot usage. type: object @@ -25443,7 +25446,7 @@ paths: - breakdown additionalProperties: false examples: - default: &245 + default: &246 value: - day: '2023-10-15' total_suggestions_count: 1000 @@ -25678,7 +25681,7 @@ paths: description: Response content: application/json: - schema: &409 + schema: &410 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -25697,7 +25700,7 @@ paths: - key_id - key examples: - default: &410 + default: &411 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -27518,7 +27521,7 @@ paths: application/json: schema: *20 examples: - default: &448 + default: &449 value: id: 1 account: @@ -27746,7 +27749,7 @@ paths: required: true content: application/json: - schema: &449 + schema: &450 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -28358,7 +28361,7 @@ paths: application/json: schema: *184 examples: - default: &380 + default: &381 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -29596,7 +29599,7 @@ paths: parameters: - *90 - *191 - - &592 + - &593 name: repo_name description: repo_name parameter in: path @@ -30639,7 +30642,7 @@ paths: - nuget - container - *90 - - &594 + - &595 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -30680,7 +30683,7 @@ paths: default: *198 '403': *27 '401': *23 - '400': &596 + '400': &597 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -31190,6 +31193,18 @@ paths: schema: type: string format: date-time + - &210 + name: token_id + description: The ID of the token + in: query + required: false + schema: + type: array + maxItems: 50 + items: + type: string + examples: + - token_id[]=1,token_id[]=2 responses: '500': *140 '422': *15 @@ -31530,6 +31545,7 @@ paths: - *207 - *208 - *209 + - *210 responses: '500': *140 '422': *15 @@ -31857,7 +31873,7 @@ paths: type: integer configurations: type: array - items: &210 + items: &211 title: Organization private registry description: Private registry configuration for an organization type: object @@ -32069,7 +32085,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &211 + org-private-registry-with-selected-visibility: &212 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -32171,9 +32187,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *210 + schema: *211 examples: - default: *211 + default: *212 '404': *6 x-github: githubCloudOnly: false @@ -32324,7 +32340,7 @@ paths: application/json: schema: type: array - items: &212 + items: &213 title: Project description: Projects are a way to organize columns and cards of work. @@ -32506,7 +32522,7 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: default: value: @@ -32544,7 +32560,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &270 + '410': &271 description: Gone content: application/json: @@ -32579,7 +32595,7 @@ paths: application/json: schema: type: array - items: &213 + items: &214 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -32655,7 +32671,7 @@ paths: - property_name - value_type examples: - default: &214 + default: &215 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -32710,7 +32726,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *213 + items: *214 minItems: 1 maxItems: 100 required: @@ -32740,9 +32756,9 @@ paths: application/json: schema: type: array - items: *213 + items: *214 examples: - default: *214 + default: *215 '403': *27 '404': *6 x-github: @@ -32764,7 +32780,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *90 - - &215 + - &216 name: custom_property_name description: The custom property name in: path @@ -32776,9 +32792,9 @@ paths: description: Response content: application/json: - schema: *213 + schema: *214 examples: - default: &216 + default: &217 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -32813,7 +32829,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *90 - - *215 + - *216 requestBody: required: true content: @@ -32880,9 +32896,9 @@ paths: description: Response content: application/json: - schema: *213 + schema: *214 examples: - default: *216 + default: *217 '403': *27 '404': *6 x-github: @@ -32906,7 +32922,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *90 - - *215 + - *216 responses: '204': *137 '403': *27 @@ -32970,7 +32986,7 @@ paths: - octocat/Hello-World properties: type: array - items: &217 + items: &218 title: Custom Property Value description: Custom property name and associated value type: object @@ -33060,7 +33076,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *217 + items: *218 required: - repository_names - properties @@ -33455,7 +33471,7 @@ paths: description: Response content: application/json: - schema: &272 + schema: &273 title: Full Repository description: Full Repository type: object @@ -33920,7 +33936,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &399 + code_of_conduct: &400 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -33950,7 +33966,7 @@ paths: - key - name - html_url - security_and_analysis: *218 + security_and_analysis: *219 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -34034,7 +34050,7 @@ paths: - network_count - subscribers_count examples: - default: &274 + default: &275 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -34555,7 +34571,7 @@ paths: - *90 - *17 - *19 - - &530 + - &531 name: targets description: | A comma-separated list of rule targets to filter by. @@ -34574,7 +34590,7 @@ paths: application/json: schema: type: array - items: &225 + items: &226 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -34609,7 +34625,7 @@ paths: source: type: string description: The name of the source - enforcement: &221 + enforcement: &222 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -34622,7 +34638,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &222 + items: &223 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -34688,7 +34704,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &219 + - &220 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -34712,7 +34728,7 @@ paths: match. items: type: string - - &223 + - &224 title: Organization ruleset conditions type: object description: |- @@ -34726,7 +34742,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *219 + - *220 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -34760,7 +34776,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *219 + - *220 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -34782,7 +34798,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *219 + - *220 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -34795,7 +34811,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &220 + items: &221 title: Repository ruleset property targeting definition type: object @@ -34828,7 +34844,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *220 + items: *221 required: - repository_property type: @@ -34836,12 +34852,12 @@ paths: - object rules: type: array - items: &224 + items: &225 title: Repository Rule type: object description: A repository rule. oneOf: - - &512 + - &513 title: creation description: Only allow users with bypass permission to create matching refs. @@ -34853,7 +34869,7 @@ paths: type: string enum: - creation - - &513 + - &514 title: update description: Only allow users with bypass permission to update matching refs. @@ -34874,7 +34890,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &515 + - &516 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -34886,7 +34902,7 @@ paths: type: string enum: - deletion - - &516 + - &517 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -34898,7 +34914,7 @@ paths: type: string enum: - required_linear_history - - &517 + - &518 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -34976,7 +34992,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &518 + - &519 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -35000,7 +35016,7 @@ paths: type: string required: - required_deployment_environments - - &519 + - &520 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -35012,7 +35028,7 @@ paths: type: string enum: - required_signatures - - &520 + - &521 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -35065,7 +35081,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &521 + - &522 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -35113,7 +35129,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &522 + - &523 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -35125,7 +35141,7 @@ paths: type: string enum: - non_fast_forward - - &523 + - &524 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -35161,7 +35177,7 @@ paths: required: - operator - pattern - - &524 + - &525 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -35197,7 +35213,7 @@ paths: required: - operator - pattern - - &525 + - &526 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -35233,7 +35249,7 @@ paths: required: - operator - pattern - - &526 + - &527 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -35269,7 +35285,7 @@ paths: required: - operator - pattern - - &527 + - &528 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -35395,7 +35411,7 @@ paths: maximum: 100 required: - max_file_size - - &528 + - &529 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -35445,7 +35461,7 @@ paths: - repository_id required: - workflows - - &529 + - &530 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -35579,16 +35595,16 @@ paths: - push - repository default: branch - enforcement: *221 + enforcement: *222 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *222 - conditions: *223 + items: *223 + conditions: *224 rules: type: array description: An array of rules within the ruleset. - items: *224 + items: *225 required: - name - enforcement @@ -35626,9 +35642,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *226 examples: - default: &226 + default: &227 value: id: 21 name: super cool ruleset @@ -35683,7 +35699,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *90 - - &531 + - &532 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -35698,7 +35714,7 @@ paths: in: query schema: type: string - - &532 + - &533 name: time_period description: |- The time period to filter by. @@ -35714,14 +35730,14 @@ paths: - week - month default: day - - &533 + - &534 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &534 + - &535 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -35741,7 +35757,7 @@ paths: description: Response content: application/json: - schema: &535 + schema: &536 title: Rule Suites description: Response type: array @@ -35797,7 +35813,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &536 + default: &537 value: - id: 21 actor_id: 12 @@ -35841,7 +35857,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *90 - - &537 + - &538 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -35857,7 +35873,7 @@ paths: description: Response content: application/json: - schema: &538 + schema: &539 title: Rule Suite description: Response type: object @@ -35964,7 +35980,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &539 + default: &540 value: id: 21 actor_id: 12 @@ -36037,9 +36053,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *226 examples: - default: *226 + default: *227 '404': *6 '500': *140 put: @@ -36083,16 +36099,16 @@ paths: - tag - push - repository - enforcement: *221 + enforcement: *222 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *222 - conditions: *223 + items: *223 + conditions: *224 rules: description: An array of rules within the ruleset. type: array - items: *224 + items: *225 examples: default: value: @@ -36127,9 +36143,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *226 examples: - default: *226 + default: *227 '404': *6 '500': *140 delete: @@ -36186,7 +36202,7 @@ paths: application/json: schema: type: array - items: &227 + items: &228 title: Ruleset version type: object description: The historical version of a ruleset @@ -36210,7 +36226,7 @@ paths: type: string format: date-time examples: - default: &541 + default: &542 value: - version_id: 3 actor: @@ -36263,9 +36279,9 @@ paths: description: Response content: application/json: - schema: &542 + schema: &543 allOf: - - *227 + - *228 - type: object required: - state @@ -36335,14 +36351,14 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *90 - - *228 - *229 - *230 - *231 + - *232 - *46 - *19 - *17 - - &543 + - &544 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 @@ -36352,7 +36368,7 @@ paths: required: false schema: type: string - - &544 + - &545 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 @@ -36362,9 +36378,9 @@ paths: required: false schema: type: string - - *232 - *233 - *234 + - *235 responses: '200': description: Response @@ -36372,9 +36388,9 @@ paths: application/json: schema: type: array - items: *235 + items: *236 examples: - default: *236 + default: *237 headers: Link: *57 '404': *6 @@ -36444,7 +36460,7 @@ paths: application/json: schema: type: array - items: &551 + items: &552 description: A repository security advisory. type: object properties: @@ -36688,7 +36704,7 @@ paths: login: type: string description: The username of the user credited. - type: *237 + type: *238 credits_detailed: type: - array @@ -36699,7 +36715,7 @@ paths: type: object properties: user: *4 - type: *237 + type: *238 state: type: string description: The state of the user's acceptance of the @@ -36763,7 +36779,7 @@ paths: - private_fork additionalProperties: false examples: - default: &552 + default: &553 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -37237,7 +37253,7 @@ paths: description: Response content: application/json: - schema: &610 + schema: &611 type: object properties: total_minutes_used: @@ -37307,7 +37323,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &611 + default: &612 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -37343,7 +37359,7 @@ paths: description: Response content: application/json: - schema: &612 + schema: &613 type: object properties: total_gigabytes_bandwidth_used: @@ -37361,7 +37377,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &613 + default: &614 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -37393,7 +37409,7 @@ paths: description: Response content: application/json: - schema: &614 + schema: &615 type: object properties: days_left_in_billing_cycle: @@ -37411,7 +37427,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &615 + default: &616 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -37453,7 +37469,7 @@ paths: type: integer network_configurations: type: array - items: &238 + items: &239 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -37578,9 +37594,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: &239 + default: &240 value: id: 123456789ABCDEF name: My network configuration @@ -37609,7 +37625,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *90 - - &240 + - &241 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -37621,9 +37637,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *239 + default: *240 headers: Link: *57 x-github: @@ -37645,7 +37661,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *90 - - *240 + - *241 requestBody: required: true content: @@ -37684,9 +37700,9 @@ paths: description: Response content: application/json: - schema: *238 + schema: *239 examples: - default: *239 + default: *240 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37706,7 +37722,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *90 - - *240 + - *241 responses: '204': description: Response @@ -37851,13 +37867,13 @@ paths: application/json: schema: type: array - items: *241 + items: *242 examples: - default: *242 + default: *243 '500': *140 '403': *27 '404': *6 - '422': *243 + '422': *244 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37924,9 +37940,9 @@ paths: application/json: schema: type: array - items: *244 + items: *245 examples: - default: *245 + default: *246 '500': *140 '401': *23 '403': *27 @@ -38054,7 +38070,7 @@ paths: description: Response content: application/json: - schema: &246 + schema: &247 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -38434,7 +38450,7 @@ paths: - repos_count - organization examples: - default: &247 + default: &248 value: id: 1 node_id: MDQ6VGVhbTE= @@ -38511,9 +38527,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '404': *6 x-github: githubCloudOnly: false @@ -38598,16 +38614,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '201': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '404': *6 '422': *15 '403': *27 @@ -38677,7 +38693,7 @@ paths: application/json: schema: type: array - items: &248 + items: &249 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -38788,7 +38804,7 @@ paths: - updated_at - url examples: - default: &566 + default: &567 value: - author: login: octocat @@ -38897,9 +38913,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: &249 + default: &250 value: author: login: octocat @@ -38973,7 +38989,7 @@ paths: parameters: - *90 - *192 - - &250 + - &251 name: discussion_number description: The number that identifies the discussion. in: path @@ -38985,9 +39001,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: *249 + default: *250 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39011,7 +39027,7 @@ paths: parameters: - *90 - *192 - - *250 + - *251 requestBody: required: false content: @@ -39034,9 +39050,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: &567 + default: &568 value: author: login: octocat @@ -39108,7 +39124,7 @@ paths: parameters: - *90 - *192 - - *250 + - *251 responses: '204': description: Response @@ -39136,7 +39152,7 @@ paths: parameters: - *90 - *192 - - *250 + - *251 - *46 - *17 - *19 @@ -39147,7 +39163,7 @@ paths: application/json: schema: type: array - items: &251 + items: &252 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -39227,7 +39243,7 @@ paths: - updated_at - url examples: - default: &568 + default: &569 value: - author: login: octocat @@ -39297,7 +39313,7 @@ paths: parameters: - *90 - *192 - - *250 + - *251 requestBody: required: true content: @@ -39319,9 +39335,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: &252 + default: &253 value: author: login: octocat @@ -39389,8 +39405,8 @@ paths: parameters: - *90 - *192 - - *250 - - &253 + - *251 + - &254 name: comment_number description: The number that identifies the comment. in: path @@ -39402,9 +39418,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *252 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39428,8 +39444,8 @@ paths: parameters: - *90 - *192 - - *250 - - *253 + - *251 + - *254 requestBody: required: true content: @@ -39451,9 +39467,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: &569 + default: &570 value: author: login: octocat @@ -39519,8 +39535,8 @@ paths: parameters: - *90 - *192 - - *250 - - *253 + - *251 + - *254 responses: '204': description: Response @@ -39548,8 +39564,8 @@ paths: parameters: - *90 - *192 - - *250 - - *253 + - *251 + - *254 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -39575,7 +39591,7 @@ paths: application/json: schema: type: array - items: &254 + items: &255 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -39619,7 +39635,7 @@ paths: - content - created_at examples: - default: &256 + default: &257 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -39671,8 +39687,8 @@ paths: parameters: - *90 - *192 - - *250 - - *253 + - *251 + - *254 requestBody: required: true content: @@ -39705,9 +39721,9 @@ paths: team discussion comment content: application/json: - schema: *254 + schema: *255 examples: - default: &255 + default: &256 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -39736,9 +39752,9 @@ paths: description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39763,9 +39779,9 @@ paths: parameters: - *90 - *192 - - *250 - - *253 - - &257 + - *251 + - *254 + - &258 name: reaction_id description: The unique identifier of the reaction. in: path @@ -39799,7 +39815,7 @@ paths: parameters: - *90 - *192 - - *250 + - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -39825,9 +39841,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 x-github: @@ -39855,7 +39871,7 @@ paths: parameters: - *90 - *192 - - *250 + - *251 requestBody: required: true content: @@ -39887,16 +39903,16 @@ paths: description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '201': description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -39921,8 +39937,8 @@ paths: parameters: - *90 - *192 - - *250 - - *257 + - *251 + - *258 responses: '204': description: Response @@ -40043,7 +40059,7 @@ paths: description: Response content: application/json: - schema: &258 + schema: &259 title: Team Membership description: Team Membership type: object @@ -40071,7 +40087,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &570 + response-if-user-is-a-team-maintainer: &571 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -40134,9 +40150,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *259 examples: - response-if-users-membership-with-team-is-now-pending: &571 + response-if-users-membership-with-team-is-now-pending: &572 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -40209,7 +40225,7 @@ paths: application/json: schema: type: array - items: &259 + items: &260 title: Team Project description: A team's access to a project. type: object @@ -40278,7 +40294,7 @@ paths: - updated_at - permissions examples: - default: &572 + default: &573 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -40343,7 +40359,7 @@ paths: parameters: - *90 - *192 - - &260 + - &261 name: project_id description: The unique identifier of the project. in: path @@ -40355,9 +40371,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *260 examples: - default: &573 + default: &574 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -40421,7 +40437,7 @@ paths: parameters: - *90 - *192 - - *260 + - *261 requestBody: required: false content: @@ -40490,7 +40506,7 @@ paths: parameters: - *90 - *192 - - *260 + - *261 responses: '204': description: Response @@ -40561,14 +40577,14 @@ paths: parameters: - *90 - *192 - - *261 - *262 + - *263 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &574 + schema: &575 title: Team Repository description: A team's access to a repository. type: object @@ -41211,8 +41227,8 @@ paths: parameters: - *90 - *192 - - *261 - *262 + - *263 requestBody: required: false content: @@ -41259,8 +41275,8 @@ paths: parameters: - *90 - *192 - - *261 - *262 + - *263 responses: '204': description: Response @@ -41297,7 +41313,7 @@ paths: type: array items: *180 examples: - response-if-child-teams-exist: &575 + response-if-child-teams-exist: &576 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -41424,7 +41440,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#get-a-project-card parameters: - - &263 + - &264 name: card_id description: The unique identifier of the card. in: path @@ -41436,7 +41452,7 @@ paths: description: Response content: application/json: - schema: &264 + schema: &265 title: Project Card description: Project cards represent a scope of work. type: object @@ -41511,7 +41527,7 @@ paths: - created_at - updated_at examples: - default: &265 + default: &266 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -41567,7 +41583,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#update-an-existing-project-card parameters: - - *263 + - *264 requestBody: required: false content: @@ -41597,9 +41613,9 @@ paths: description: Response content: application/json: - schema: *264 + schema: *265 examples: - default: *265 + default: *266 '304': *35 '403': *27 '401': *23 @@ -41626,7 +41642,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#delete-a-project-card parameters: - - *263 + - *264 responses: '204': description: Response @@ -41670,7 +41686,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#move-a-project-card parameters: - - *263 + - *264 requestBody: required: true content: @@ -41783,7 +41799,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#get-a-project-column parameters: - - &266 + - &267 name: column_id description: The unique identifier of the column. in: path @@ -41795,7 +41811,7 @@ paths: description: Response content: application/json: - schema: &267 + schema: &268 title: Project Column description: Project columns contain cards of work. type: object @@ -41849,7 +41865,7 @@ paths: - created_at - updated_at examples: - default: &268 + default: &269 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -41884,7 +41900,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#update-an-existing-project-column parameters: - - *266 + - *267 requestBody: required: true content: @@ -41909,9 +41925,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: - default: *268 + default: *269 '304': *35 '403': *27 '401': *23 @@ -41936,7 +41952,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#delete-a-project-column parameters: - - *266 + - *267 responses: '204': description: Response @@ -41965,7 +41981,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#list-project-cards parameters: - - *266 + - *267 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -41986,7 +42002,7 @@ paths: application/json: schema: type: array - items: *264 + items: *265 examples: default: value: @@ -42045,7 +42061,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#create-a-project-card parameters: - - *266 + - *267 requestBody: required: true content: @@ -42089,9 +42105,9 @@ paths: description: Response content: application/json: - schema: *264 + schema: *265 examples: - default: *265 + default: *266 '304': *35 '403': *27 '401': *23 @@ -42147,7 +42163,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#move-a-project-column parameters: - - *266 + - *267 requestBody: required: true content: @@ -42208,15 +42224,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-a-project parameters: - - *260 + - *261 responses: '200': description: Response content: application/json: - schema: *212 + schema: *213 examples: - default: &269 + default: &270 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -42273,7 +42289,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#update-a-project parameters: - - *260 + - *261 requestBody: required: false content: @@ -42322,9 +42338,9 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: - default: *269 + default: *270 '404': description: Not Found if the authenticated user does not have access to the project @@ -42345,7 +42361,7 @@ paths: items: type: string '401': *23 - '410': *270 + '410': *271 '422': *7 x-github: githubCloudOnly: false @@ -42368,7 +42384,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#delete-a-project parameters: - - *260 + - *261 responses: '204': description: Delete Success @@ -42389,7 +42405,7 @@ paths: items: type: string '401': *23 - '410': *270 + '410': *271 '404': *6 x-github: githubCloudOnly: false @@ -42413,7 +42429,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#list-project-collaborators parameters: - - *260 + - *261 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -42470,7 +42486,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#add-project-collaborator parameters: - - *260 + - *261 - *128 requestBody: required: false @@ -42525,7 +42541,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *260 + - *261 - *128 responses: '204': @@ -42557,7 +42573,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *260 + - *261 - *128 responses: '200': @@ -42628,7 +42644,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#list-project-columns parameters: - - *260 + - *261 - *17 - *19 responses: @@ -42638,7 +42654,7 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: default: value: @@ -42676,7 +42692,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#create-a-project-column parameters: - - *260 + - *261 requestBody: required: true content: @@ -42700,7 +42716,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -42764,7 +42780,7 @@ paths: resources: type: object properties: - core: &271 + core: &272 title: Rate Limit type: object properties: @@ -42781,20 +42797,20 @@ paths: - remaining - reset - used - graphql: *271 - search: *271 - code_search: *271 - source_import: *271 - integration_manifest: *271 - code_scanning_upload: *271 - actions_runner_registration: *271 - scim: *271 - dependency_snapshots: *271 - code_scanning_autofix: *271 + graphql: *272 + search: *272 + code_search: *272 + source_import: *272 + integration_manifest: *272 + code_scanning_upload: *272 + actions_runner_registration: *272 + scim: *272 + dependency_snapshots: *272 + code_scanning_autofix: *272 required: - core - search - rate: *271 + rate: *272 required: - rate - resources @@ -42898,14 +42914,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *272 + schema: *273 examples: default-response: summary: Default response @@ -43406,7 +43422,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *273 + '301': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43424,8 +43440,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: false content: @@ -43662,10 +43678,10 @@ paths: description: Response content: application/json: - schema: *272 + schema: *273 examples: - default: *274 - '307': &275 + default: *275 + '307': &276 description: Temporary Redirect content: application/json: @@ -43694,8 +43710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -43717,7 +43733,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *275 + '307': *276 '404': *6 x-github: githubCloudOnly: false @@ -43740,11 +43756,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *261 - *262 + - *263 - *17 - *19 - - &301 + - &302 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -43767,7 +43783,7 @@ paths: type: integer artifacts: type: array - items: &276 + items: &277 title: Artifact description: An artifact type: object @@ -43862,7 +43878,7 @@ paths: - expires_at - updated_at examples: - default: &302 + default: &303 value: total_count: 2 artifacts: @@ -43923,9 +43939,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *261 - *262 - - &277 + - *263 + - &278 name: artifact_id description: The unique identifier of the artifact. in: path @@ -43937,7 +43953,7 @@ paths: description: Response content: application/json: - schema: *276 + schema: *277 examples: default: value: @@ -43975,9 +43991,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *261 - *262 - - *277 + - *263 + - *278 responses: '204': description: Response @@ -44001,9 +44017,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *261 - *262 - - *277 + - *263 + - *278 - name: archive_format in: path required: true @@ -44017,7 +44033,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44040,14 +44056,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *278 + schema: *279 examples: default: value: @@ -44073,11 +44089,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *261 - *262 + - *263 - *17 - *19 - - &279 + - &280 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -44111,7 +44127,7 @@ paths: description: Response content: application/json: - schema: &280 + schema: &281 title: Repository actions caches description: Repository actions caches type: object @@ -44161,7 +44177,7 @@ paths: - total_count - actions_caches examples: - default: &281 + default: &282 value: total_count: 1 actions_caches: @@ -44193,23 +44209,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *261 - *262 + - *263 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *279 + - *280 responses: '200': description: Response content: application/json: - schema: *280 + schema: *281 examples: - default: *281 + default: *282 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44229,8 +44245,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *261 - *262 + - *263 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -44261,9 +44277,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *261 - *262 - - &282 + - *263 + - &283 name: job_id description: The unique identifier of the job. in: path @@ -44275,7 +44291,7 @@ paths: description: Response content: application/json: - schema: &305 + schema: &306 title: Job description: Information of a job execution in a workflow run type: object @@ -44622,9 +44638,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *261 - *262 - - *282 + - *263 + - *283 responses: '302': description: Response @@ -44652,9 +44668,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *261 - *262 - - *282 + - *263 + - *283 requestBody: required: false content: @@ -44700,8 +44716,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Status response @@ -44751,8 +44767,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -44815,8 +44831,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -44834,7 +44850,7 @@ paths: type: integer secrets: type: array - items: &307 + items: &308 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -44855,7 +44871,7 @@ paths: - created_at - updated_at examples: - default: &308 + default: &309 value: total_count: 2 secrets: @@ -44888,9 +44904,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *261 - *262 - - *283 + - *263 + - *284 - *19 responses: '200': @@ -44907,7 +44923,7 @@ paths: type: integer variables: type: array - items: &311 + items: &312 title: Actions Variable type: object properties: @@ -44941,7 +44957,7 @@ paths: - created_at - updated_at examples: - default: &312 + default: &313 value: total_count: 2 variables: @@ -44974,8 +44990,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -44984,11 +45000,11 @@ paths: schema: type: object properties: - enabled: &285 + enabled: &286 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *104 - selected_actions_url: *284 + selected_actions_url: *285 required: - enabled examples: @@ -45015,8 +45031,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -45027,7 +45043,7 @@ paths: schema: type: object properties: - enabled: *285 + enabled: *286 allowed_actions: *104 required: - enabled @@ -45057,14 +45073,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: &286 + schema: &287 type: object properties: access_level: @@ -45081,7 +45097,7 @@ paths: required: - access_level examples: - default: &287 + default: &288 value: access_level: organization x-github: @@ -45105,15 +45121,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: application/json: - schema: *286 + schema: *287 examples: - default: *287 + default: *288 responses: '204': description: Response @@ -45137,8 +45153,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -45165,8 +45181,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -45198,14 +45214,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *288 + schema: *289 examples: default: *110 x-github: @@ -45228,8 +45244,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': description: Success response @@ -45240,7 +45256,7 @@ paths: required: true content: application/json: - schema: *289 + schema: *290 examples: default: *110 x-github: @@ -45269,8 +45285,8 @@ paths: in: query schema: type: string - - *261 - *262 + - *263 - *17 - *19 responses: @@ -45314,8 +45330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -45323,9 +45339,9 @@ paths: application/json: schema: type: array - items: *290 + items: *291 examples: - default: *291 + default: *292 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45347,8 +45363,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -45391,7 +45407,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *292 + '201': *293 '404': *6 '422': *7 '409': *44 @@ -45422,8 +45438,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *261 - *262 + - *263 responses: '201': description: Response @@ -45431,7 +45447,7 @@ paths: application/json: schema: *119 examples: - default: *293 + default: *294 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45459,8 +45475,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *261 - *262 + - *263 responses: '201': description: Response @@ -45468,7 +45484,7 @@ paths: application/json: schema: *119 examples: - default: *294 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45490,8 +45506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *261 - *262 + - *263 - *116 responses: '200': @@ -45500,7 +45516,7 @@ paths: application/json: schema: *117 examples: - default: *295 + default: *296 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45521,8 +45537,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *261 - *262 + - *263 - *116 responses: '204': @@ -45548,8 +45564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *261 - *262 + - *263 - *116 responses: '200': *121 @@ -45574,8 +45590,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *261 - *262 + - *263 - *116 requestBody: required: true @@ -45624,8 +45640,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *261 - *262 + - *263 - *116 requestBody: required: true @@ -45675,11 +45691,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *261 - *262 + - *263 - *116 responses: - '200': *296 + '200': *297 '404': *6 x-github: githubCloudOnly: false @@ -45706,10 +45722,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *261 - *262 + - *263 - *116 - - *297 + - *298 responses: '200': *121 '404': *6 @@ -45737,9 +45753,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *261 - *262 - - &315 + - *263 + - &316 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -45747,7 +45763,7 @@ paths: required: false schema: type: string - - &316 + - &317 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -45755,7 +45771,7 @@ paths: required: false schema: type: string - - &317 + - &318 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -45764,7 +45780,7 @@ paths: required: false schema: type: string - - &318 + - &319 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -45791,7 +45807,7 @@ paths: - pending - *17 - *19 - - &319 + - &320 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -45800,7 +45816,7 @@ paths: schema: type: string format: date-time - - &298 + - &299 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -45809,13 +45825,13 @@ paths: schema: type: boolean default: false - - &320 + - &321 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &321 + - &322 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -45838,7 +45854,7 @@ paths: type: integer workflow_runs: type: array - items: &299 + items: &300 title: Workflow Run description: An invocation of a workflow type: object @@ -45955,7 +45971,7 @@ paths: type: - array - 'null' - items: &340 + items: &341 title: Pull Request Minimal type: object properties: @@ -46082,7 +46098,7 @@ paths: head_commit: anyOf: - type: 'null' - - &344 + - &345 title: Simple Commit description: A commit. type: object @@ -46197,7 +46213,7 @@ paths: - workflow_url - pull_requests examples: - default: &322 + default: &323 value: total_count: 1 workflow_runs: @@ -46433,24 +46449,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *261 - *262 - - &300 + - *263 + - &301 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *298 + - *299 responses: '200': description: Response content: application/json: - schema: *299 + schema: *300 examples: - default: &303 + default: &304 value: id: 30433642 name: Build @@ -46691,9 +46707,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '204': description: Response @@ -46716,9 +46732,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '200': description: Response @@ -46846,9 +46862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '201': description: Response @@ -46881,12 +46897,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *261 - *262 - - *300 + - *263 + - *301 - *17 - *19 - - *301 + - *302 responses: '200': description: Response @@ -46902,9 +46918,9 @@ paths: type: integer artifacts: type: array - items: *276 + items: *277 examples: - default: *302 + default: *303 headers: Link: *57 x-github: @@ -46928,25 +46944,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *261 - *262 - - *300 - - &304 + - *263 + - *301 + - &305 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *298 + - *299 responses: '200': description: Response content: application/json: - schema: *299 + schema: *300 examples: - default: *303 + default: *304 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46969,10 +46985,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *261 - *262 - - *300 - - *304 + - *263 + - *301 + - *305 - *17 - *19 responses: @@ -46990,9 +47006,9 @@ paths: type: integer jobs: type: array - items: *305 + items: *306 examples: - default: &306 + default: &307 value: total_count: 1 jobs: @@ -47105,10 +47121,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *261 - *262 - - *300 - - *304 + - *263 + - *301 + - *305 responses: '302': description: Response @@ -47136,9 +47152,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '202': description: Response @@ -47171,9 +47187,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 requestBody: required: true content: @@ -47240,9 +47256,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '202': description: Response @@ -47275,9 +47291,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -47307,9 +47323,9 @@ paths: type: integer jobs: type: array - items: *305 + items: *306 examples: - default: *306 + default: *307 headers: Link: *57 x-github: @@ -47334,9 +47350,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '302': description: Response @@ -47363,9 +47379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '204': description: Response @@ -47392,9 +47408,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '200': description: Response @@ -47463,7 +47479,7 @@ paths: items: type: object properties: - type: &418 + type: &419 type: string description: The type of reviewer. enum: @@ -47549,9 +47565,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 requestBody: required: true content: @@ -47601,7 +47617,7 @@ paths: application/json: schema: type: array - items: &413 + items: &414 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -47713,7 +47729,7 @@ paths: - created_at - updated_at examples: - default: &414 + default: &415 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -47769,9 +47785,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *261 - *262 - - *300 + - *263 + - *301 requestBody: required: false content: @@ -47816,9 +47832,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *261 - *262 - - *300 + - *263 + - *301 requestBody: required: false content: @@ -47872,9 +47888,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *261 - *262 - - *300 + - *263 + - *301 responses: '200': description: Response @@ -48011,8 +48027,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -48030,9 +48046,9 @@ paths: type: integer secrets: type: array - items: *307 + items: *308 examples: - default: *308 + default: *309 headers: Link: *57 x-github: @@ -48057,16 +48073,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *309 + schema: *310 examples: - default: *310 + default: *311 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48088,17 +48104,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 responses: '200': description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &431 + default: &432 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -48124,8 +48140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 requestBody: required: true @@ -48183,8 +48199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 responses: '204': @@ -48210,9 +48226,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *261 - *262 - - *283 + - *263 + - *284 - *19 responses: '200': @@ -48229,9 +48245,9 @@ paths: type: integer variables: type: array - items: *311 + items: *312 examples: - default: *312 + default: *313 headers: Link: *57 x-github: @@ -48254,8 +48270,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -48307,17 +48323,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *261 - *262 + - *263 - *126 responses: '200': description: Response content: application/json: - schema: *311 + schema: *312 examples: - default: &432 + default: &433 value: name: USERNAME value: octocat @@ -48343,8 +48359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *261 - *262 + - *263 - *126 requestBody: required: true @@ -48387,8 +48403,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *261 - *262 + - *263 - *126 responses: '204': @@ -48414,8 +48430,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -48433,7 +48449,7 @@ paths: type: integer workflows: type: array - items: &313 + items: &314 title: Workflow description: A GitHub Actions workflow type: object @@ -48551,9 +48567,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *261 - *262 - - &314 + - *263 + - &315 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -48568,7 +48584,7 @@ paths: description: Response content: application/json: - schema: *313 + schema: *314 examples: default: value: @@ -48601,9 +48617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *261 - *262 - - *314 + - *263 + - *315 responses: '204': description: Response @@ -48628,9 +48644,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *261 - *262 - - *314 + - *263 + - *315 responses: '204': description: Response @@ -48681,9 +48697,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *261 - *262 - - *314 + - *263 + - *315 responses: '204': description: Response @@ -48710,19 +48726,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *261 - *262 - - *314 + - *263 - *315 - *316 - *317 - *318 + - *319 - *17 - *19 - - *319 - - *298 - *320 + - *299 - *321 + - *322 responses: '200': description: Response @@ -48738,9 +48754,9 @@ paths: type: integer workflow_runs: type: array - items: *299 + items: *300 examples: - default: *322 + default: *323 headers: Link: *57 x-github: @@ -48772,9 +48788,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *261 - *262 - - *314 + - *263 + - *315 responses: '200': description: Response @@ -48835,8 +48851,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *261 - *262 + - *263 - *46 - *17 - *37 @@ -49004,8 +49020,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -49042,8 +49058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *261 - *262 + - *263 - name: assignee in: path required: true @@ -49079,8 +49095,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -49192,8 +49208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *261 - *262 + - *263 - *17 - *37 - *38 @@ -49247,7 +49263,7 @@ paths: bundle_url: type: string examples: - default: *323 + default: *324 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49267,8 +49283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -49276,7 +49292,7 @@ paths: application/json: schema: type: array - items: &324 + items: &325 title: Autolink reference description: An autolink reference. type: object @@ -49330,8 +49346,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -49370,9 +49386,9 @@ paths: description: response content: application/json: - schema: *324 + schema: *325 examples: - default: &325 + default: &326 value: id: 1 key_prefix: TICKET- @@ -49403,9 +49419,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *261 - *262 - - &326 + - *263 + - &327 name: autolink_id description: The unique identifier of the autolink. in: path @@ -49417,9 +49433,9 @@ paths: description: Response content: application/json: - schema: *324 + schema: *325 examples: - default: *325 + default: *326 '404': *6 x-github: githubCloudOnly: false @@ -49439,9 +49455,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *261 - *262 - - *326 + - *263 + - *327 responses: '204': description: Response @@ -49465,8 +49481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response if Dependabot is enabled @@ -49516,8 +49532,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -49538,8 +49554,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -49559,8 +49575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *261 - *262 + - *263 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -49598,7 +49614,7 @@ paths: - url protected: type: boolean - protection: &328 + protection: &329 title: Branch Protection description: Branch Protection type: object @@ -49641,7 +49657,7 @@ paths: required: - contexts - checks - enforce_admins: &331 + enforce_admins: &332 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -49658,7 +49674,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &333 + required_pull_request_reviews: &334 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -49742,7 +49758,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &330 + restrictions: &331 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -50067,9 +50083,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *261 - *262 - - &329 + - *263 + - &330 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/graphql). @@ -50083,14 +50099,14 @@ paths: description: Response content: application/json: - schema: &339 + schema: &340 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &389 + commit: &390 title: Commit description: Commit type: object @@ -50129,7 +50145,7 @@ paths: author: anyOf: - type: 'null' - - &327 + - &328 title: Git User description: Metaproperties for Git author/committer information. @@ -50150,7 +50166,7 @@ paths: committer: anyOf: - type: 'null' - - *327 + - *328 message: type: string examples: @@ -50174,7 +50190,7 @@ paths: required: - sha - url - verification: &438 + verification: &439 title: Verification type: object properties: @@ -50254,7 +50270,7 @@ paths: type: integer files: type: array - items: &401 + items: &402 title: Diff Entry description: Diff Entry type: object @@ -50348,7 +50364,7 @@ paths: - self protected: type: boolean - protection: *328 + protection: *329 protection_url: type: string format: uri @@ -50457,7 +50473,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *273 + '301': *274 '404': *6 x-github: githubCloudOnly: false @@ -50479,15 +50495,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *328 + schema: *329 examples: default: value: @@ -50681,9 +50697,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -50943,7 +50959,7 @@ paths: url: type: string format: uri - required_status_checks: &336 + required_status_checks: &337 title: Status Check Policy description: Status Check Policy type: object @@ -51102,7 +51118,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *330 + restrictions: *331 required_conversation_resolution: type: object properties: @@ -51214,9 +51230,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '204': description: Response @@ -51241,17 +51257,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: &332 + default: &333 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -51273,17 +51289,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: *332 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51302,9 +51318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '204': description: Response @@ -51329,17 +51345,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: &334 + default: &335 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -51435,9 +51451,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: false content: @@ -51535,9 +51551,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 '422': *15 x-github: githubCloudOnly: false @@ -51558,9 +51574,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '204': description: Response @@ -51587,17 +51603,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: &335 + default: &336 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -51620,17 +51636,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: *335 + default: *336 '404': *6 x-github: githubCloudOnly: false @@ -51650,9 +51666,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '204': description: Response @@ -51677,17 +51693,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: &337 + default: &338 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -51713,9 +51729,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: false content: @@ -51767,9 +51783,9 @@ paths: description: Response content: application/json: - schema: *336 + schema: *337 examples: - default: *337 + default: *338 '404': *6 '422': *15 x-github: @@ -51791,9 +51807,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '204': description: Response @@ -51817,9 +51833,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response @@ -51853,9 +51869,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: false content: @@ -51922,9 +51938,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: false content: @@ -51988,9 +52004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: content: application/json: @@ -52056,15 +52072,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response content: application/json: - schema: *330 + schema: *331 examples: default: value: @@ -52155,9 +52171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '204': description: Response @@ -52180,9 +52196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response @@ -52192,7 +52208,7 @@ paths: type: array items: *5 examples: - default: &338 + default: &339 value: - id: 1 slug: octoapp @@ -52249,9 +52265,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52285,7 +52301,7 @@ paths: type: array items: *5 examples: - default: *338 + default: *339 '422': *15 x-github: githubCloudOnly: false @@ -52306,9 +52322,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52342,7 +52358,7 @@ paths: type: array items: *5 examples: - default: *338 + default: *339 '422': *15 x-github: githubCloudOnly: false @@ -52363,9 +52379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52399,7 +52415,7 @@ paths: type: array items: *5 examples: - default: *338 + default: *339 '422': *15 x-github: githubCloudOnly: false @@ -52421,9 +52437,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response @@ -52453,9 +52469,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: false content: @@ -52514,9 +52530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: false content: @@ -52575,9 +52591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: content: application/json: @@ -52636,9 +52652,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *261 - *262 - - *329 + - *263 + - *330 responses: '200': description: Response @@ -52672,9 +52688,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52732,9 +52748,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52792,9 +52808,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52854,9 +52870,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *261 - *262 - - *329 + - *263 + - *330 requestBody: required: true content: @@ -52878,7 +52894,7 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: default: value: @@ -52994,8 +53010,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -53274,7 +53290,7 @@ paths: description: Response content: application/json: - schema: &341 + schema: &342 title: CheckRun description: A check performed on the code of a given code change type: object @@ -53409,8 +53425,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *340 - deployment: &624 + items: *341 + deployment: &625 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -53697,9 +53713,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *261 - *262 - - &342 + - *263 + - &343 name: check_run_id description: The unique identifier of the check run. in: path @@ -53711,9 +53727,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: &343 + default: &344 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -53813,9 +53829,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *261 - *262 - - *342 + - *263 + - *343 requestBody: required: true content: @@ -54055,9 +54071,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: *343 + default: *344 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54077,9 +54093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *261 - *262 - - *342 + - *263 + - *343 - *17 - *19 responses: @@ -54191,9 +54207,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *261 - *262 - - *342 + - *263 + - *343 responses: '201': description: Response @@ -54237,8 +54253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -54260,7 +54276,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &345 + schema: &346 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -54342,7 +54358,7 @@ paths: type: - array - 'null' - items: *340 + items: *341 app: anyOf: - type: 'null' @@ -54358,7 +54374,7 @@ paths: - string - 'null' format: date-time - head_commit: *344 + head_commit: *345 latest_check_runs_count: type: integer check_runs_url: @@ -54386,7 +54402,7 @@ paths: - check_runs_url - pull_requests examples: - default: &346 + default: &347 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -54677,9 +54693,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *345 + schema: *346 examples: - default: *346 + default: *347 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54698,8 +54714,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -55008,9 +55024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *261 - *262 - - &347 + - *263 + - &348 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -55022,9 +55038,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *346 examples: - default: *346 + default: *347 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55047,17 +55063,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *261 - *262 - - *347 - - &396 + - *263 + - *348 + - &397 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &397 + - &398 name: status description: Returns check runs with the specified `status`. in: query @@ -55096,9 +55112,9 @@ paths: type: integer check_runs: type: array - items: *341 + items: *342 examples: - default: &398 + default: &399 value: total_count: 1 check_runs: @@ -55200,9 +55216,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *261 - *262 - - *347 + - *263 + - *348 responses: '201': description: Response @@ -55235,21 +55251,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *261 - *262 - - *348 + - *263 - *349 + - *350 - *19 - *17 - - &366 + - &367 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *350 - - &367 + schema: *351 + - &368 name: pr description: The number of the pull request for the results you want to list. in: query @@ -55274,13 +55290,13 @@ paths: be returned. in: query required: false - schema: *351 + schema: *352 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *352 + schema: *353 responses: '200': description: Response @@ -55296,7 +55312,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: *353 + instances_url: *354 state: *133 fixed_at: *129 dismissed_by: @@ -55304,11 +55320,11 @@ paths: - type: 'null' - *4 dismissed_at: *130 - dismissed_reason: *354 - dismissed_comment: *355 - rule: *356 - tool: *357 - most_recent_instance: *358 + dismissed_reason: *355 + dismissed_comment: *356 + rule: *357 + tool: *358 + most_recent_instance: *359 dismissal_approved_by: anyOf: - type: 'null' @@ -55428,7 +55444,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &359 + '403': &360 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -55455,9 +55471,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *261 - *262 - - &360 + - *263 + - &361 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -55471,7 +55487,7 @@ paths: description: Response content: application/json: - schema: &361 + schema: &362 type: object properties: number: *52 @@ -55479,7 +55495,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: *353 + instances_url: *354 state: *133 fixed_at: *129 dismissed_by: @@ -55487,8 +55503,8 @@ paths: - type: 'null' - *4 dismissed_at: *130 - dismissed_reason: *354 - dismissed_comment: *355 + dismissed_reason: *355 + dismissed_comment: *356 rule: type: object properties: @@ -55550,8 +55566,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *357 - most_recent_instance: *358 + tool: *358 + most_recent_instance: *359 dismissal_approved_by: anyOf: - type: 'null' @@ -55644,7 +55660,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -55664,9 +55680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 requestBody: required: true content: @@ -55681,8 +55697,8 @@ paths: enum: - open - dismissed - dismissed_reason: *354 - dismissed_comment: *355 + dismissed_reason: *355 + dismissed_comment: *356 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -55701,7 +55717,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *362 examples: default: value: @@ -55777,7 +55793,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &365 + '403': &366 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -55804,15 +55820,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 responses: '200': description: Response content: application/json: - schema: &362 + schema: &363 type: object properties: status: @@ -55839,13 +55855,13 @@ paths: - description - started_at examples: - default: &363 + default: &364 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &364 + '400': &365 description: Bad Request content: application/json: @@ -55856,7 +55872,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -55881,29 +55897,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 responses: '200': description: OK content: application/json: - schema: *362 + schema: *363 examples: - default: *363 + default: *364 '202': description: Accepted content: application/json: - schema: *362 + schema: *363 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *364 + '400': *365 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -55935,9 +55951,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 requestBody: required: false content: @@ -55983,8 +55999,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *364 - '403': *365 + '400': *365 + '403': *366 '404': *6 '422': description: Unprocessable Entity @@ -56008,13 +56024,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 - *19 - *17 - - *366 - *367 + - *368 responses: '200': description: Response @@ -56022,7 +56038,7 @@ paths: application/json: schema: type: array - items: *358 + items: *359 examples: default: value: @@ -56061,7 +56077,7 @@ paths: end_column: 50 classifications: - source - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -56095,25 +56111,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *261 - *262 - - *348 + - *263 - *349 + - *350 - *19 - *17 - - *367 + - *368 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *350 + schema: *351 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &370 + schema: &371 type: string description: An identifier for the upload. examples: @@ -56135,23 +56151,23 @@ paths: application/json: schema: type: array - items: &371 + items: &372 type: object properties: - ref: *350 - commit_sha: &379 + ref: *351 + commit_sha: &380 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *368 + analysis_key: *369 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *369 + category: *370 error: type: string examples: @@ -56176,8 +56192,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *370 - tool: *357 + sarif_id: *371 + tool: *358 deletable: type: boolean warning: @@ -56239,7 +56255,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -56275,8 +56291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *261 - *262 + - *263 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -56289,7 +56305,7 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: response: summary: application/json response @@ -56343,7 +56359,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -56425,8 +56441,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *261 - *262 + - *263 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -56482,7 +56498,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *365 + '403': *366 '404': *6 '503': *62 x-github: @@ -56504,8 +56520,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -56513,7 +56529,7 @@ paths: application/json: schema: type: array - items: &372 + items: &373 title: CodeQL Database description: A CodeQL database. type: object @@ -56625,7 +56641,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -56654,8 +56670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *261 - *262 + - *263 - name: language in: path description: The language of the CodeQL database. @@ -56667,7 +56683,7 @@ paths: description: Response content: application/json: - schema: *372 + schema: *373 examples: default: value: @@ -56699,9 +56715,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &403 + '302': &404 description: Found - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -56723,8 +56739,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *261 - *262 + - *263 - name: language in: path description: The language of the CodeQL database. @@ -56734,7 +56750,7 @@ paths: responses: '204': description: Response - '403': *365 + '403': *366 '404': *6 '503': *62 x-github: @@ -56762,8 +56778,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -56772,7 +56788,7 @@ paths: type: object additionalProperties: false properties: - language: &373 + language: &374 type: string description: The language targeted by the CodeQL query enum: @@ -56850,7 +56866,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &377 + schema: &378 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -56860,7 +56876,7 @@ paths: description: The ID of the variant analysis. controller_repo: *51 actor: *4 - query_language: *373 + query_language: *374 query_pack_url: type: string description: The download url for the query pack. @@ -56908,7 +56924,7 @@ paths: items: type: object properties: - repository: &374 + repository: &375 title: Repository Identifier description: Repository Identifier type: object @@ -56950,7 +56966,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &378 + analysis_status: &379 type: string description: The new status of the CodeQL variant analysis repository task. @@ -56982,7 +56998,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &375 + access_mismatch_repos: &376 type: object properties: repository_count: @@ -56997,7 +57013,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *374 + items: *375 required: - repository_count - repositories @@ -57020,8 +57036,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *375 - over_limit_repos: *375 + no_codeql_db_repos: *376 + over_limit_repos: *376 required: - access_mismatch_repos - not_found_repos @@ -57037,7 +57053,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &376 + value: &377 summary: Default response value: id: 1 @@ -57189,10 +57205,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *376 + value: *377 repository_lists: summary: Response for a successful variant analysis submission - value: *376 + value: *377 '404': *6 '422': description: Unable to process variant analysis submission @@ -57220,8 +57236,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *261 - *262 + - *263 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -57233,9 +57249,9 @@ paths: description: Response content: application/json: - schema: *377 + schema: *378 examples: - default: *376 + default: *377 '404': *6 '503': *62 x-github: @@ -57258,7 +57274,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *261 + - *262 - name: repo in: path description: The name of the controller repository. @@ -57293,7 +57309,7 @@ paths: type: object properties: repository: *51 - analysis_status: *378 + analysis_status: *379 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -57418,8 +57434,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -57501,7 +57517,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *359 + '403': *360 '404': *6 '503': *62 x-github: @@ -57522,8 +57538,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -57607,7 +57623,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *365 + '403': *366 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -57672,8 +57688,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -57681,7 +57697,7 @@ paths: schema: type: object properties: - commit_sha: *379 + commit_sha: *380 ref: type: string description: |- @@ -57741,7 +57757,7 @@ paths: schema: type: object properties: - id: *370 + id: *371 url: type: string description: The REST API URL for checking the status of the upload. @@ -57755,7 +57771,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *365 + '403': *366 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -57778,8 +57794,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *261 - *262 + - *263 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -57827,7 +57843,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *359 + '403': *360 '404': description: Not Found if the sarif id does not match any upload '503': *62 @@ -57852,8 +57868,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -57934,8 +57950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *261 - *262 + - *263 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -58063,8 +58079,8 @@ paths: parameters: - *17 - *19 - - *261 - *262 + - *263 responses: '200': description: Response @@ -58378,8 +58394,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -58445,7 +58461,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '202': description: Response when the codespace creation partially failed but is being retried in the background @@ -58453,7 +58469,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '400': *14 '401': *23 '403': *27 @@ -58482,8 +58498,8 @@ paths: parameters: - *17 - *19 - - *261 - *262 + - *263 responses: '200': description: Response @@ -58547,8 +58563,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *261 - *262 + - *263 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -58585,9 +58601,9 @@ paths: type: integer machines: type: array - items: *381 + items: *382 examples: - default: &582 + default: &583 value: total_count: 2 machines: @@ -58627,8 +58643,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *261 - *262 + - *263 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -58715,8 +58731,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *261 - *262 + - *263 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -58785,8 +58801,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -58804,7 +58820,7 @@ paths: type: integer secrets: type: array - items: &385 + items: &386 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -58825,7 +58841,7 @@ paths: - created_at - updated_at examples: - default: *382 + default: *383 headers: Link: *57 x-github: @@ -58848,16 +58864,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *383 + schema: *384 examples: - default: *384 + default: *385 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -58877,17 +58893,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 responses: '200': description: Response content: application/json: - schema: *385 + schema: *386 examples: - default: *386 + default: *387 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58899,7 +58915,7 @@ paths: Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/rest/guides/encrypting-secrets-for-the-rest-api)." - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/create-or-update-repo-secret @@ -58907,8 +58923,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 requestBody: required: true @@ -58953,7 +58969,7 @@ paths: description: |- Deletes a development environment secret in a repository using the secret name. - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/delete-repo-secret @@ -58961,8 +58977,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 responses: '204': @@ -58991,8 +59007,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *261 - *262 + - *263 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -59030,7 +59046,7 @@ paths: application/json: schema: type: array - items: &387 + items: &388 title: Collaborator description: Collaborator type: object @@ -59223,8 +59239,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *261 - *262 + - *263 - *128 responses: '204': @@ -59267,8 +59283,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *261 - *262 + - *263 - *128 requestBody: required: false @@ -59295,7 +59311,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &451 + schema: &452 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -59516,8 +59532,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *261 - *262 + - *263 - *128 responses: '204': @@ -59547,8 +59563,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *261 - *262 + - *263 - *128 responses: '200': @@ -59569,7 +59585,7 @@ paths: user: anyOf: - type: 'null' - - *387 + - *388 required: - permission - role_name @@ -59623,8 +59639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -59634,7 +59650,7 @@ paths: application/json: schema: type: array - items: &388 + items: &389 title: Commit Comment description: Commit Comment type: object @@ -59692,7 +59708,7 @@ paths: - created_at - updated_at examples: - default: &391 + default: &392 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -59751,17 +59767,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *261 - *262 + - *263 - *73 responses: '200': description: Response content: application/json: - schema: *388 + schema: *389 examples: - default: &392 + default: &393 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -59818,8 +59834,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *261 - *262 + - *263 - *73 requestBody: required: true @@ -59842,7 +59858,7 @@ paths: description: Response content: application/json: - schema: *388 + schema: *389 examples: default: value: @@ -59893,8 +59909,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *261 - *262 + - *263 - *73 responses: '204': @@ -59916,8 +59932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *261 - *262 + - *263 - *73 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -59944,9 +59960,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 '404': *6 @@ -59967,8 +59983,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *261 - *262 + - *263 - *73 requestBody: required: true @@ -60001,16 +60017,16 @@ paths: description: Reaction exists content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '201': description: Reaction created content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '422': *15 x-github: githubCloudOnly: false @@ -60032,10 +60048,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *261 - *262 + - *263 - *73 - - *257 + - *258 responses: '204': description: Response @@ -60084,8 +60100,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *261 - *262 + - *263 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -60141,9 +60157,9 @@ paths: application/json: schema: type: array - items: *389 + items: *390 examples: - default: &499 + default: &500 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -60237,9 +60253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *261 - *262 - - &390 + - *263 + - &391 name: commit_sha description: The SHA of the commit. in: path @@ -60311,9 +60327,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *261 - *262 - - *390 + - *263 + - *391 - *17 - *19 responses: @@ -60323,9 +60339,9 @@ paths: application/json: schema: type: array - items: *388 + items: *389 examples: - default: *391 + default: *392 headers: Link: *57 x-github: @@ -60353,9 +60369,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *261 - *262 - - *390 + - *263 + - *391 requestBody: required: true content: @@ -60390,9 +60406,9 @@ paths: description: Response content: application/json: - schema: *388 + schema: *389 examples: - default: *392 + default: *393 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -60420,9 +60436,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *261 - *262 - - *390 + - *263 + - *391 - *17 - *19 responses: @@ -60432,7 +60448,7 @@ paths: application/json: schema: type: array - items: &490 + items: &491 title: Pull Request Simple description: Pull Request Simple type: object @@ -60552,7 +60568,7 @@ paths: milestone: anyOf: - type: 'null' - - *393 + - *394 active_lock_reason: type: - string @@ -60651,7 +60667,7 @@ paths: _links: type: object properties: - comments: &394 + comments: &395 title: Link description: Hypermedia Link type: object @@ -60660,13 +60676,13 @@ paths: type: string required: - href - commits: *394 - statuses: *394 - html: *394 - issue: *394 - review_comments: *394 - review_comment: *394 - self: *394 + commits: *395 + statuses: *395 + html: *395 + issue: *395 + review_comments: *395 + review_comment: *395 + self: *395 required: - comments - commits @@ -60677,7 +60693,7 @@ paths: - review_comment - self author_association: *60 - auto_merge: &492 + auto_merge: &493 title: Auto merge description: The status of auto merging a pull request. type: @@ -60742,7 +60758,7 @@ paths: - author_association - auto_merge examples: - default: &491 + default: &492 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -61279,11 +61295,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *261 - *262 + - *263 - *19 - *17 - - &395 + - &396 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -61298,9 +61314,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *390 examples: - default: &478 + default: &479 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -61413,11 +61429,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *261 - *262 - - *395 + - *263 - *396 - *397 + - *398 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -61451,9 +61467,9 @@ paths: type: integer check_runs: type: array - items: *341 + items: *342 examples: - default: *398 + default: *399 headers: Link: *57 x-github: @@ -61478,9 +61494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *261 - *262 - - *395 + - *263 + - *396 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -61488,7 +61504,7 @@ paths: schema: type: integer example: 1 - - *396 + - *397 - *17 - *19 responses: @@ -61506,7 +61522,7 @@ paths: type: integer check_suites: type: array - items: *345 + items: *346 examples: default: value: @@ -61706,9 +61722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *261 - *262 - - *395 + - *263 + - *396 - *17 - *19 responses: @@ -61910,9 +61926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *261 - *262 - - *395 + - *263 + - *396 - *17 - *19 responses: @@ -61922,7 +61938,7 @@ paths: application/json: schema: type: array - items: &556 + items: &557 title: Status description: The status of a commit. type: object @@ -62003,7 +62019,7 @@ paths: site_admin: false headers: Link: *57 - '301': *273 + '301': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62031,8 +62047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -62065,11 +62081,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *399 + - *400 code_of_conduct_file: anyOf: - type: 'null' - - &400 + - &401 title: Community Health File type: object properties: @@ -62089,19 +62105,19 @@ paths: contributing: anyOf: - type: 'null' - - *400 + - *401 readme: anyOf: - type: 'null' - - *400 + - *401 issue_template: anyOf: - type: 'null' - - *400 + - *401 pull_request_template: anyOf: - type: 'null' - - *400 + - *401 required: - code_of_conduct - code_of_conduct_file @@ -62230,8 +62246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *261 - *262 + - *263 - *19 - *17 - name: basehead @@ -62279,8 +62295,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *389 - merge_base_commit: *389 + base_commit: *390 + merge_base_commit: *390 status: type: string enum: @@ -62304,10 +62320,10 @@ paths: - 6 commits: type: array - items: *389 + items: *390 files: type: array - items: *401 + items: *402 required: - url - html_url @@ -62593,8 +62609,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *261 - *262 + - *263 - name: path description: path parameter in: path @@ -62745,7 +62761,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &402 + response-if-content-is-a-file: &403 summary: Response if content is a file value: type: file @@ -62882,7 +62898,7 @@ paths: - size - type - url - - &504 + - &505 title: Content File description: Content File type: object @@ -63100,7 +63116,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *402 + response-if-content-is-a-file: *403 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -63169,7 +63185,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *403 + '302': *404 '304': *35 x-github: githubCloudOnly: false @@ -63192,8 +63208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *261 - *262 + - *263 - name: path description: path parameter in: path @@ -63288,7 +63304,7 @@ paths: description: Response content: application/json: - schema: &404 + schema: &405 title: File Commit description: File Commit type: object @@ -63444,7 +63460,7 @@ paths: description: Response content: application/json: - schema: *404 + schema: *405 examples: example-for-creating-a-file: value: @@ -63498,7 +63514,7 @@ paths: schema: oneOf: - *3 - - &433 + - &434 description: Repository rule violation was detected type: object properties: @@ -63519,7 +63535,7 @@ paths: items: type: object properties: - placeholder_id: &548 + placeholder_id: &549 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -63551,8 +63567,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *261 - *262 + - *263 - name: path description: path parameter in: path @@ -63613,7 +63629,7 @@ paths: description: Response content: application/json: - schema: *404 + schema: *405 examples: default: value: @@ -63668,8 +63684,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *261 - *262 + - *263 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -63793,8 +63809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *261 - *262 + - *263 - *143 - *144 - *145 @@ -63836,7 +63852,7 @@ paths: application/json: schema: type: array - items: &407 + items: &408 type: object description: A Dependabot alert. properties: @@ -63886,7 +63902,7 @@ paths: - direct - transitive - - security_advisory: *405 + security_advisory: *406 security_vulnerability: *50 url: *55 html_url: *56 @@ -63917,7 +63933,7 @@ paths: dismissal. maxLength: 280 fixed_at: *129 - auto_dismissed_at: *406 + auto_dismissed_at: *407 required: - number - state @@ -64147,9 +64163,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *261 - *262 - - &408 + - *263 + - &409 name: alert_number in: path description: |- @@ -64164,7 +64180,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *408 examples: default: value: @@ -64277,9 +64293,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *261 - *262 - - *408 + - *263 + - *409 requestBody: required: true content: @@ -64324,7 +64340,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *408 examples: default: value: @@ -64453,8 +64469,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -64472,7 +64488,7 @@ paths: type: integer secrets: type: array - items: &411 + items: &412 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -64526,16 +64542,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: - default: *410 + default: *411 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64555,15 +64571,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 responses: '200': description: Response content: application/json: - schema: *411 + schema: *412 examples: default: value: @@ -64589,8 +64605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 requestBody: required: true @@ -64643,8 +64659,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *261 - *262 + - *263 - *123 responses: '204': @@ -64667,8 +64683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *261 - *262 + - *263 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -64842,8 +64858,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -65103,8 +65119,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -65187,7 +65203,7 @@ paths: - version - url additionalProperties: false - metadata: &412 + metadata: &413 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -65226,7 +65242,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *412 + metadata: *413 resolved: type: object description: A collection of resolved package dependencies. @@ -65240,7 +65256,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *412 + metadata: *413 relationship: type: string description: A notation of whether a dependency is requested @@ -65373,8 +65389,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *261 - *262 + - *263 - name: sha description: The SHA recorded at creation time. in: query @@ -65415,9 +65431,9 @@ paths: application/json: schema: type: array - items: *413 + items: *414 examples: - default: *414 + default: *415 headers: Link: *57 x-github: @@ -65483,8 +65499,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -65566,7 +65582,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *414 examples: simple-example: summary: Simple example @@ -65639,9 +65655,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *261 - *262 - - &415 + - *263 + - &416 name: deployment_id description: deployment_id parameter in: path @@ -65653,7 +65669,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *414 examples: default: value: @@ -65718,9 +65734,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *261 - *262 - - *415 + - *263 + - *416 responses: '204': description: Response @@ -65742,9 +65758,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *261 - *262 - - *415 + - *263 + - *416 - *17 - *19 responses: @@ -65754,7 +65770,7 @@ paths: application/json: schema: type: array - items: &416 + items: &417 title: Deployment Status description: The status of a deployment. type: object @@ -65918,9 +65934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *261 - *262 - - *415 + - *263 + - *416 requestBody: required: true content: @@ -65995,9 +66011,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: &417 + default: &418 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -66053,9 +66069,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *261 - *262 - - *415 + - *263 + - *416 - name: status_id in: path required: true @@ -66066,9 +66082,9 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: - default: *417 + default: *418 '404': *6 x-github: githubCloudOnly: false @@ -66093,8 +66109,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -66151,8 +66167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -66170,7 +66186,7 @@ paths: - 5 environments: type: array - items: &419 + items: &420 title: Environment description: Details of a deployment environment type: object @@ -66232,7 +66248,7 @@ paths: type: string examples: - wait_timer - wait_timer: &421 + wait_timer: &422 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -66274,7 +66290,7 @@ paths: items: type: object properties: - type: *418 + type: *419 reviewer: anyOf: - *4 @@ -66301,7 +66317,7 @@ paths: - id - node_id - type - deployment_branch_policy: &422 + deployment_branch_policy: &423 type: - object - 'null' @@ -66418,9 +66434,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *261 - *262 - - &420 + - *263 + - &421 name: environment_name in: path required: true @@ -66433,9 +66449,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: &423 + default: &424 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -66519,9 +66535,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *261 - *262 - - *420 + - *263 + - *421 requestBody: required: false content: @@ -66531,7 +66547,7 @@ paths: - object - 'null' properties: - wait_timer: *421 + wait_timer: *422 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -66550,14 +66566,14 @@ paths: items: type: object properties: - type: *418 + type: *419 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *422 + deployment_branch_policy: *423 additionalProperties: false examples: default: @@ -66577,9 +66593,9 @@ paths: description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: *423 + default: *424 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -66603,9 +66619,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *261 - *262 - - *420 + - *263 + - *421 responses: '204': description: Default response @@ -66630,9 +66646,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *261 - *262 - - *420 + - *263 + - *421 - *17 - *19 responses: @@ -66651,7 +66667,7 @@ paths: - 2 branch_policies: type: array - items: &424 + items: &425 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -66712,9 +66728,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *261 - *262 - - *420 + - *263 + - *421 requestBody: required: true content: @@ -66762,9 +66778,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - example-wildcard: &425 + example-wildcard: &426 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -66806,10 +66822,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *261 - *262 - - *420 - - &426 + - *263 + - *421 + - &427 name: branch_policy_id in: path required: true @@ -66821,9 +66837,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66842,10 +66858,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *261 - *262 - - *420 - - *426 + - *263 + - *421 + - *427 requestBody: required: true content: @@ -66874,9 +66890,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66895,10 +66911,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *261 - *262 - - *420 - - *426 + - *263 + - *421 + - *427 responses: '204': description: Response @@ -66923,9 +66939,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *420 + - *421 + - *263 - *262 - - *261 responses: '200': description: List of deployment protection rules @@ -66942,7 +66958,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &427 + items: &428 title: Deployment protection rule description: Deployment protection rule type: object @@ -66964,7 +66980,7 @@ paths: for the environment. examples: - true - app: &428 + app: &429 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -67057,7 +67073,7 @@ paths: The authenticated user must have admin or owner permissions to the repository to use this endpoint. - For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app). + For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules). OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. tags: @@ -67067,9 +67083,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *420 + - *421 + - *263 - *262 - - *261 requestBody: content: application/json: @@ -67090,9 +67106,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *427 + schema: *428 examples: - default: &429 + default: &430 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -67127,9 +67143,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *420 + - *421 + - *263 - *262 - - *261 - *19 - *17 responses: @@ -67149,7 +67165,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *428 + items: *429 examples: default: value: @@ -67184,10 +67200,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *261 - *262 - - *420 - - &430 + - *263 + - *421 + - &431 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -67199,9 +67215,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *428 examples: - default: *429 + default: *430 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67222,10 +67238,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *420 + - *421 + - *263 - *262 - - *261 - - *430 + - *431 responses: '204': description: Response @@ -67251,9 +67267,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *261 - *262 - - *420 + - *263 + - *421 - *17 - *19 responses: @@ -67271,9 +67287,9 @@ paths: type: integer secrets: type: array - items: *307 + items: *308 examples: - default: *308 + default: *309 headers: Link: *57 x-github: @@ -67298,17 +67314,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *261 - *262 - - *420 + - *263 + - *421 responses: '200': description: Response content: application/json: - schema: *309 + schema: *310 examples: - default: *310 + default: *311 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67330,18 +67346,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *261 - *262 - - *420 + - *263 + - *421 - *123 responses: '200': description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *431 + default: *432 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67363,9 +67379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *261 - *262 - - *420 + - *263 + - *421 - *123 requestBody: required: true @@ -67423,9 +67439,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *261 - *262 - - *420 + - *263 + - *421 - *123 responses: '204': @@ -67451,10 +67467,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *261 - *262 - - *420 - - *283 + - *263 + - *421 + - *284 - *19 responses: '200': @@ -67471,9 +67487,9 @@ paths: type: integer variables: type: array - items: *311 + items: *312 examples: - default: *312 + default: *313 headers: Link: *57 x-github: @@ -67496,9 +67512,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *261 - *262 - - *420 + - *263 + - *421 requestBody: required: true content: @@ -67550,18 +67566,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *261 - *262 - - *420 + - *263 + - *421 - *126 responses: '200': description: Response content: application/json: - schema: *311 + schema: *312 examples: - default: *432 + default: *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67582,10 +67598,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *261 - *262 + - *263 - *126 - - *420 + - *421 requestBody: required: true content: @@ -67627,10 +67643,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *261 - *262 + - *263 - *126 - - *420 + - *421 responses: '204': description: Response @@ -67652,8 +67668,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -67730,8 +67746,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *261 - *262 + - *263 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -67890,8 +67906,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *261 - *262 + - *263 requestBody: required: false content: @@ -67924,9 +67940,9 @@ paths: description: Response content: application/json: - schema: *272 + schema: *273 examples: - default: *274 + default: *275 '400': *14 '422': *15 '403': *27 @@ -67947,8 +67963,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -68008,7 +68024,7 @@ paths: schema: oneOf: - *93 - - *433 + - *434 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68033,8 +68049,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *261 - *262 + - *263 - name: file_sha in: path required: true @@ -68134,8 +68150,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -68244,7 +68260,7 @@ paths: description: Response content: application/json: - schema: &434 + schema: &435 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -68471,15 +68487,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *261 - *262 - - *390 + - *263 + - *391 responses: '200': description: Response content: application/json: - schema: *434 + schema: *435 examples: default: value: @@ -68535,9 +68551,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *261 - *262 - - &435 + - *263 + - &436 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -68554,7 +68570,7 @@ paths: application/json: schema: type: array - items: &436 + items: &437 title: Git Reference description: Git references within a repository type: object @@ -68630,17 +68646,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *261 - *262 - - *435 + - *263 + - *436 responses: '200': description: Response content: application/json: - schema: *436 + schema: *437 examples: - default: &437 + default: &438 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -68669,8 +68685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -68699,9 +68715,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: - default: *437 + default: *438 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -68727,9 +68743,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *261 - *262 - - *435 + - *263 + - *436 requestBody: required: true content: @@ -68758,9 +68774,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: - default: *437 + default: *438 '422': *15 '409': *44 x-github: @@ -68778,9 +68794,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *261 - *262 - - *435 + - *263 + - *436 responses: '204': description: Response @@ -68833,8 +68849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -68901,7 +68917,7 @@ paths: description: Response content: application/json: - schema: &439 + schema: &440 title: Git Tag description: Metadata for a Git tag type: object @@ -68957,7 +68973,7 @@ paths: - sha - type - url - verification: *438 + verification: *439 required: - sha - url @@ -68967,7 +68983,7 @@ paths: - tag - message examples: - default: &440 + default: &441 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -69040,8 +69056,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *261 - *262 + - *263 - name: tag_sha in: path required: true @@ -69052,9 +69068,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *440 examples: - default: *440 + default: *441 '404': *6 '409': *44 x-github: @@ -69078,8 +69094,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -69153,7 +69169,7 @@ paths: description: Response content: application/json: - schema: &441 + schema: &442 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -69271,8 +69287,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *261 - *262 + - *263 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -69295,7 +69311,7 @@ paths: description: Response content: application/json: - schema: *441 + schema: *442 examples: default-response: summary: Default response @@ -69354,8 +69370,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -69365,7 +69381,7 @@ paths: application/json: schema: type: array - items: &442 + items: &443 title: Webhook description: Webhooks for repositories. type: object @@ -69428,7 +69444,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &655 + last_response: &656 title: Hook Response type: object properties: @@ -69505,8 +69521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *261 - *262 + - *263 requestBody: required: false content: @@ -69559,9 +69575,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: &443 + default: &444 value: type: Repository id: 12345678 @@ -69609,17 +69625,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 responses: '200': description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: *443 + default: *444 '404': *6 x-github: githubCloudOnly: false @@ -69639,8 +69655,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 requestBody: required: true @@ -69686,9 +69702,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: *443 + default: *444 '422': *15 '404': *6 x-github: @@ -69709,8 +69725,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 responses: '204': @@ -69735,8 +69751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *261 - *262 + - *263 - *157 responses: '200': @@ -69764,8 +69780,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *261 - *262 + - *263 - *157 requestBody: required: false @@ -69810,8 +69826,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 - *17 - *158 @@ -69843,8 +69859,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 - *16 responses: @@ -69873,8 +69889,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 - *16 responses: @@ -69898,8 +69914,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *261 - *262 + - *263 - *157 responses: '204': @@ -69925,8 +69941,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *261 - *262 + - *263 - *157 responses: '204': @@ -69985,14 +70001,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: &444 + schema: &445 title: Import description: A repository import from an external source. type: object @@ -70099,7 +70115,7 @@ paths: - html_url - authors_url examples: - default: &447 + default: &448 value: vcs: subversion use_lfs: true @@ -70115,7 +70131,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &445 + '503': &446 description: Unavailable due to service under maintenance. content: application/json: @@ -70144,8 +70160,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -70193,7 +70209,7 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: default: value: @@ -70218,7 +70234,7 @@ paths: type: string '422': *15 '404': *6 - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70246,8 +70262,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *261 - *262 + - *263 requestBody: required: false content: @@ -70299,7 +70315,7 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: example-1: summary: Example 1 @@ -70347,7 +70363,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70370,12 +70386,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *261 - *262 + - *263 responses: '204': description: Response - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70401,9 +70417,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *261 - *262 - - &605 + - *263 + - &606 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -70417,7 +70433,7 @@ paths: application/json: schema: type: array - items: &446 + items: &447 title: Porter Author description: Porter Author type: object @@ -70471,7 +70487,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70496,8 +70512,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *261 - *262 + - *263 - name: author_id in: path required: true @@ -70527,7 +70543,7 @@ paths: description: Response content: application/json: - schema: *446 + schema: *447 examples: default: value: @@ -70540,7 +70556,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70564,8 +70580,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -70606,7 +70622,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70634,8 +70650,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -70662,11 +70678,11 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: - default: *447 + default: *448 '422': *15 - '503': *445 + '503': *446 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70689,8 +70705,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -70698,8 +70714,8 @@ paths: application/json: schema: *20 examples: - default: *448 - '301': *273 + default: *449 + '301': *274 '404': *6 x-github: githubCloudOnly: false @@ -70719,8 +70735,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -70733,7 +70749,7 @@ paths: properties: {} additionalProperties: false examples: - default: &450 + default: &451 value: limit: collaborators_only origin: repository @@ -70758,13 +70774,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: application/json: - schema: *449 + schema: *450 examples: default: summary: Example request body @@ -70778,7 +70794,7 @@ paths: application/json: schema: *175 examples: - default: *450 + default: *451 '409': description: Response x-github: @@ -70800,8 +70816,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -70824,8 +70840,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -70835,9 +70851,9 @@ paths: application/json: schema: type: array - items: *451 + items: *452 examples: - default: &598 + default: &599 value: - id: 1 repository: @@ -70968,8 +70984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *261 - *262 + - *263 - *179 requestBody: required: false @@ -70999,7 +71015,7 @@ paths: description: Response content: application/json: - schema: *451 + schema: *452 examples: default: value: @@ -71130,8 +71146,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *261 - *262 + - *263 - *179 responses: '204': @@ -71163,8 +71179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *261 - *262 + - *263 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -71229,7 +71245,7 @@ paths: type: array items: *74 examples: - default: &460 + default: &461 value: - id: 1 node_id: MDU6SXNzdWUx @@ -71377,7 +71393,7 @@ paths: state_reason: completed headers: Link: *57 - '301': *273 + '301': *274 '422': *15 '404': *6 x-github: @@ -71406,8 +71422,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -71490,7 +71506,7 @@ paths: application/json: schema: *74 examples: - default: &455 + default: &456 value: id: 1 node_id: MDU6SXNzdWUx @@ -71646,7 +71662,7 @@ paths: '422': *15 '503': *62 '404': *6 - '410': *270 + '410': *271 x-github: triggersNotification: true githubCloudOnly: false @@ -71674,8 +71690,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *261 - *262 + - *263 - *83 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -71696,9 +71712,9 @@ paths: application/json: schema: type: array - items: *452 + items: *453 examples: - default: &457 + default: &458 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71756,17 +71772,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *261 - *262 + - *263 - *73 responses: '200': description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: &453 + default: &454 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71820,8 +71836,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *261 - *262 + - *263 - *73 requestBody: required: true @@ -71844,9 +71860,9 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: *453 + default: *454 '422': *15 x-github: githubCloudOnly: false @@ -71864,8 +71880,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *261 - *262 + - *263 - *73 responses: '204': @@ -71886,8 +71902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *261 - *262 + - *263 - *73 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -71914,9 +71930,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 '404': *6 @@ -71937,8 +71953,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *261 - *262 + - *263 - *73 requestBody: required: true @@ -71971,16 +71987,16 @@ paths: description: Reaction exists content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '201': description: Reaction created content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '422': *15 x-github: githubCloudOnly: false @@ -72002,10 +72018,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *261 - *262 + - *263 - *73 - - *257 + - *258 responses: '204': description: Response @@ -72025,8 +72041,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -72036,7 +72052,7 @@ paths: application/json: schema: type: array - items: &454 + items: &455 title: Issue Event description: Issue Event type: object @@ -72375,8 +72391,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *261 - *262 + - *263 - name: event_id in: path required: true @@ -72387,7 +72403,7 @@ paths: description: Response content: application/json: - schema: *454 + schema: *455 examples: default: value: @@ -72580,7 +72596,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *270 + '410': *271 '403': *27 x-github: githubCloudOnly: false @@ -72614,9 +72630,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *261 - *262 - - &456 + - *263 + - &457 name: issue_number description: The number that identifies the issue. in: path @@ -72630,10 +72646,10 @@ paths: application/json: schema: *74 examples: - default: *455 - '301': *273 + default: *456 + '301': *274 '404': *6 - '410': *270 + '410': *271 '304': *35 x-github: githubCloudOnly: false @@ -72658,9 +72674,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: false content: @@ -72770,13 +72786,13 @@ paths: application/json: schema: *74 examples: - default: *455 + default: *456 '422': *15 '503': *62 '403': *27 - '301': *273 + '301': *274 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72794,9 +72810,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: false content: @@ -72824,7 +72840,7 @@ paths: application/json: schema: *74 examples: - default: *455 + default: *456 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72840,9 +72856,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: content: application/json: @@ -72869,7 +72885,7 @@ paths: application/json: schema: *74 examples: - default: *455 + default: *456 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72891,9 +72907,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 - name: assignee in: path required: true @@ -72933,9 +72949,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *261 - *262 - - *456 + - *263 + - *457 - *64 - *17 - *19 @@ -72946,13 +72962,13 @@ paths: application/json: schema: type: array - items: *452 + items: *453 examples: - default: *457 + default: *458 headers: Link: *57 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72981,9 +72997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: true content: @@ -73005,16 +73021,16 @@ paths: description: Response content: application/json: - schema: *452 + schema: *453 examples: - default: *453 + default: *454 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *270 + '410': *271 '422': *15 '404': *6 x-github: @@ -73034,9 +73050,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *261 - *262 - - *456 + - *263 + - *457 - *17 - *19 responses: @@ -73050,7 +73066,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &461 + - &462 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -73099,7 +73115,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &462 + - &463 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -73227,7 +73243,7 @@ paths: - performed_via_github_app - assignee - assigner - - &463 + - &464 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -73273,7 +73289,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &464 + - &465 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -73319,7 +73335,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &465 + - &466 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -73368,7 +73384,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &466 + - &467 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -73410,7 +73426,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &467 + - &468 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -73452,7 +73468,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &468 + - &469 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -73508,7 +73524,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &469 + - &470 title: Locked Issue Event description: Locked Issue Event type: object @@ -73553,7 +73569,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &470 + - &471 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -73614,7 +73630,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &471 + - &472 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -73675,7 +73691,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &472 + - &473 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -73736,7 +73752,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &473 + - &474 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -73829,7 +73845,7 @@ paths: color: red headers: Link: *57 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73846,9 +73862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 - *17 - *19 responses: @@ -73858,7 +73874,7 @@ paths: application/json: schema: type: array - items: &458 + items: &459 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -73913,7 +73929,7 @@ paths: - color - default examples: - default: &459 + default: &460 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -73931,9 +73947,9 @@ paths: default: false headers: Link: *57 - '301': *273 + '301': *274 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73950,9 +73966,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: false content: @@ -74011,12 +74027,12 @@ paths: application/json: schema: type: array - items: *458 + items: *459 examples: - default: *459 - '301': *273 + default: *460 + '301': *274 '404': *6 - '410': *270 + '410': *271 '422': *15 x-github: githubCloudOnly: false @@ -74033,9 +74049,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: false content: @@ -74095,12 +74111,12 @@ paths: application/json: schema: type: array - items: *458 + items: *459 examples: - default: *459 - '301': *273 + default: *460 + '301': *274 '404': *6 - '410': *270 + '410': *271 '422': *15 x-github: githubCloudOnly: false @@ -74117,15 +74133,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 responses: '204': description: Response - '301': *273 + '301': *274 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74144,9 +74160,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 - name: name in: path required: true @@ -74159,7 +74175,7 @@ paths: application/json: schema: type: array - items: *458 + items: *459 examples: default: value: @@ -74170,9 +74186,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *273 + '301': *274 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74192,9 +74208,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: false content: @@ -74223,7 +74239,7 @@ paths: '204': description: Response '403': *27 - '410': *270 + '410': *271 '404': *6 '422': *15 x-github: @@ -74241,9 +74257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 responses: '204': description: Response @@ -74265,9 +74281,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -74293,13 +74309,13 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74317,9 +74333,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: true content: @@ -74351,16 +74367,16 @@ paths: description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '201': description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '422': *15 x-github: githubCloudOnly: false @@ -74382,10 +74398,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *261 - *262 - - *456 - - *257 + - *263 + - *457 + - *258 responses: '204': description: Response @@ -74414,9 +74430,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: true content: @@ -74440,7 +74456,7 @@ paths: application/json: schema: *74 examples: - default: *455 + default: *456 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -74473,9 +74489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *261 - *262 - - *456 + - *263 + - *457 - *17 - *19 responses: @@ -74487,11 +74503,11 @@ paths: type: array items: *74 examples: - default: *460 + default: *461 headers: Link: *57 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74519,9 +74535,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: true content: @@ -74550,14 +74566,14 @@ paths: application/json: schema: *74 examples: - default: *455 + default: *456 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *270 + '410': *271 '422': *15 '404': *6 x-github: @@ -74577,9 +74593,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 requestBody: required: true content: @@ -74612,7 +74628,7 @@ paths: application/json: schema: *74 examples: - default: *455 + default: *456 '403': *27 '404': *6 '422': *7 @@ -74634,9 +74650,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *261 - *262 - - *456 + - *263 + - *457 - *17 - *19 responses: @@ -74651,7 +74667,6 @@ paths: description: Timeline Event type: object anyOf: - - *461 - *462 - *463 - *464 @@ -74664,6 +74679,7 @@ paths: - *471 - *472 - *473 + - *474 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -74987,7 +75003,7 @@ paths: type: string comments: type: array - items: &493 + items: &494 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -75225,7 +75241,7 @@ paths: type: string comments: type: array - items: *388 + items: *389 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -75500,7 +75516,7 @@ paths: headers: Link: *57 '404': *6 - '410': *270 + '410': *271 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75517,8 +75533,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -75528,7 +75544,7 @@ paths: application/json: schema: type: array - items: &474 + items: &475 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -75595,8 +75611,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -75632,9 +75648,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: - default: &475 + default: &476 value: id: 1 key: ssh-rsa AAA... @@ -75668,9 +75684,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *261 - *262 - - &476 + - *263 + - &477 name: key_id description: The unique identifier of the key. in: path @@ -75682,9 +75698,9 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: - default: *475 + default: *476 '404': *6 x-github: githubCloudOnly: false @@ -75702,9 +75718,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *261 - *262 - - *476 + - *263 + - *477 responses: '204': description: Response @@ -75724,8 +75740,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -75735,9 +75751,9 @@ paths: application/json: schema: type: array - items: *458 + items: *459 examples: - default: *459 + default: *460 headers: Link: *57 '404': *6 @@ -75758,8 +75774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -75795,9 +75811,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *459 examples: - default: &477 + default: &478 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -75829,8 +75845,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *261 - *262 + - *263 - name: name in: path required: true @@ -75841,9 +75857,9 @@ paths: description: Response content: application/json: - schema: *458 + schema: *459 examples: - default: *477 + default: *478 '404': *6 x-github: githubCloudOnly: false @@ -75860,8 +75876,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *261 - *262 + - *263 - name: name in: path required: true @@ -75900,7 +75916,7 @@ paths: description: Response content: application/json: - schema: *458 + schema: *459 examples: default: value: @@ -75926,8 +75942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *261 - *262 + - *263 - name: name in: path required: true @@ -75953,8 +75969,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -75993,9 +76009,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *261 - *262 - - *366 + - *263 + - *367 responses: '200': description: Response @@ -76142,8 +76158,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -76208,8 +76224,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -76243,9 +76259,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *389 + schema: *390 examples: - default: *478 + default: *479 '204': description: Response when already merged '404': @@ -76270,8 +76286,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *261 - *262 + - *263 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -76312,7 +76328,7 @@ paths: application/json: schema: type: array - items: *393 + items: *394 examples: default: value: @@ -76368,8 +76384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -76409,9 +76425,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &479 + default: &480 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -76470,9 +76486,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *261 - *262 - - &480 + - *263 + - &481 name: milestone_number description: The number that identifies the milestone. in: path @@ -76484,9 +76500,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *479 + default: *480 '404': *6 x-github: githubCloudOnly: false @@ -76503,9 +76519,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *261 - *262 - - *480 + - *263 + - *481 requestBody: required: false content: @@ -76543,9 +76559,9 @@ paths: description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *479 + default: *480 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76561,9 +76577,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *261 - *262 - - *480 + - *263 + - *481 responses: '204': description: Response @@ -76584,9 +76600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *261 - *262 - - *480 + - *263 + - *481 - *17 - *19 responses: @@ -76596,9 +76612,9 @@ paths: application/json: schema: type: array - items: *458 + items: *459 examples: - default: *459 + default: *460 headers: Link: *57 x-github: @@ -76617,12 +76633,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *261 - *262 - - *481 + - *263 - *482 - - *64 - *483 + - *64 + - *484 - *17 - *19 responses: @@ -76634,7 +76650,7 @@ paths: type: array items: *86 examples: - default: *484 + default: *485 headers: Link: *57 x-github: @@ -76658,8 +76674,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *261 - *262 + - *263 requestBody: required: false content: @@ -76717,14 +76733,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: &485 + schema: &486 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -76868,7 +76884,7 @@ paths: - custom_404 - public examples: - default: &486 + default: &487 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -76909,8 +76925,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -76965,9 +76981,9 @@ paths: description: Response content: application/json: - schema: *485 + schema: *486 examples: - default: *486 + default: *487 '422': *15 '409': *44 x-github: @@ -76990,8 +77006,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -77091,8 +77107,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -77118,8 +77134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -77129,7 +77145,7 @@ paths: application/json: schema: type: array - items: &487 + items: &488 title: Page Build description: Page Build type: object @@ -77221,8 +77237,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *261 - *262 + - *263 responses: '201': description: Response @@ -77269,16 +77285,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *487 + schema: *488 examples: - default: &488 + default: &489 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -77326,8 +77342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *261 - *262 + - *263 - name: build_id in: path required: true @@ -77338,9 +77354,9 @@ paths: description: Response content: application/json: - schema: *487 + schema: *488 examples: - default: *488 + default: *489 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77360,8 +77376,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -77469,9 +77485,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *261 - *262 - - &489 + - *263 + - &490 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -77529,9 +77545,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *261 - *262 - - *489 + - *263 + - *490 responses: '204': *137 '404': *6 @@ -77558,8 +77574,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -77854,8 +77870,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Private vulnerability reporting status @@ -77892,8 +77908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': *137 '422': *14 @@ -77914,8 +77930,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': *137 '422': *14 @@ -77938,8 +77954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-repository-projects parameters: - - *261 - *262 + - *263 - name: state description: Indicates the state of the projects to return. in: query @@ -77960,7 +77976,7 @@ paths: application/json: schema: type: array - items: *212 + items: *213 examples: default: value: @@ -78000,7 +78016,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *270 + '410': *271 '422': *7 x-github: githubCloudOnly: false @@ -78023,8 +78039,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#create-a-repository-project parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -78050,13 +78066,13 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: - default: *269 + default: *270 '401': *23 '403': *27 '404': *6 - '410': *270 + '410': *271 '422': *7 x-github: githubCloudOnly: false @@ -78079,8 +78095,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -78088,7 +78104,7 @@ paths: application/json: schema: type: array - items: *217 + items: *218 examples: default: value: @@ -78119,8 +78135,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -78132,7 +78148,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *217 + items: *218 required: - properties examples: @@ -78182,8 +78198,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *261 - *262 + - *263 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -78243,9 +78259,9 @@ paths: application/json: schema: type: array - items: *490 + items: *491 examples: - default: *491 + default: *492 headers: Link: *57 '304': *35 @@ -78277,8 +78293,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -78345,7 +78361,7 @@ paths: description: Response content: application/json: - schema: &495 + schema: &496 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -78474,7 +78490,7 @@ paths: milestone: anyOf: - type: 'null' - - *393 + - *394 active_lock_reason: type: - string @@ -78567,14 +78583,14 @@ paths: _links: type: object properties: - comments: *394 - commits: *394 - statuses: *394 - html: *394 - issue: *394 - review_comments: *394 - review_comment: *394 - self: *394 + comments: *395 + commits: *395 + statuses: *395 + html: *395 + issue: *395 + review_comments: *395 + review_comment: *395 + self: *395 required: - comments - commits @@ -78585,7 +78601,7 @@ paths: - review_comment - self author_association: *60 - auto_merge: *492 + auto_merge: *493 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -78687,7 +78703,7 @@ paths: - merged_by - review_comments examples: - default: &496 + default: &497 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -79214,8 +79230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *261 - *262 + - *263 - name: sort in: query required: false @@ -79244,9 +79260,9 @@ paths: application/json: schema: type: array - items: *493 + items: *494 examples: - default: &498 + default: &499 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -79323,17 +79339,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *261 - *262 + - *263 - *73 responses: '200': description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: &494 + default: &495 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -79408,8 +79424,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *261 - *262 + - *263 - *73 requestBody: required: true @@ -79432,9 +79448,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79450,8 +79466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *261 - *262 + - *263 - *73 responses: '204': @@ -79473,8 +79489,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *261 - *262 + - *263 - *73 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -79501,9 +79517,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 '404': *6 @@ -79524,8 +79540,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *261 - *262 + - *263 - *73 requestBody: required: true @@ -79558,16 +79574,16 @@ paths: description: Reaction exists content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '201': description: Reaction created content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '422': *15 x-github: githubCloudOnly: false @@ -79589,10 +79605,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *261 - *262 + - *263 - *73 - - *257 + - *258 responses: '204': description: Response @@ -79635,9 +79651,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *261 - *262 - - &497 + - *263 + - &498 name: pull_number description: The number that identifies the pull request. in: path @@ -79650,9 +79666,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *495 + schema: *496 examples: - default: *496 + default: *497 '304': *35 '404': *6 '406': @@ -79687,9 +79703,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: false content: @@ -79731,9 +79747,9 @@ paths: description: Response content: application/json: - schema: *495 + schema: *496 examples: - default: *496 + default: *497 '422': *15 '403': *27 x-github: @@ -79755,9 +79771,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: true content: @@ -79820,7 +79836,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '202': description: Response when the codespace creation partially failed but is being retried in the background @@ -79828,7 +79844,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '401': *23 '403': *27 '404': *6 @@ -79858,9 +79874,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 - *83 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -79881,9 +79897,9 @@ paths: application/json: schema: type: array - items: *493 + items: *494 examples: - default: *498 + default: *499 headers: Link: *57 x-github: @@ -79916,9 +79932,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: true content: @@ -80024,7 +80040,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: example-for-a-multi-line-comment: value: @@ -80112,9 +80128,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *261 - *262 - - *497 + - *263 + - *498 - *73 requestBody: required: true @@ -80137,7 +80153,7 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: default: value: @@ -80223,9 +80239,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 - *17 - *19 responses: @@ -80235,9 +80251,9 @@ paths: application/json: schema: type: array - items: *389 + items: *390 examples: - default: *499 + default: *500 headers: Link: *57 x-github: @@ -80267,9 +80283,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *261 - *262 - - *497 + - *263 + - *498 - *17 - *19 responses: @@ -80279,7 +80295,7 @@ paths: application/json: schema: type: array - items: *401 + items: *402 examples: default: value: @@ -80317,9 +80333,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *261 - *262 - - *497 + - *263 + - *498 responses: '204': description: Response if pull request has been merged @@ -80342,9 +80358,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: false content: @@ -80456,9 +80472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 responses: '200': description: Response @@ -80533,9 +80549,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: false content: @@ -80572,7 +80588,7 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: default: value: @@ -81108,9 +81124,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: true content: @@ -81144,7 +81160,7 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: default: value: @@ -81649,9 +81665,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 - *17 - *19 responses: @@ -81661,7 +81677,7 @@ paths: application/json: schema: type: array - items: &500 + items: &501 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -81817,9 +81833,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: false content: @@ -81909,9 +81925,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: &502 + default: &503 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81974,10 +81990,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *261 - *262 - - *497 - - &501 + - *263 + - *498 + - &502 name: review_id description: The unique identifier of the review. in: path @@ -81989,9 +82005,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: &503 + default: &504 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -82050,10 +82066,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *261 - *262 - - *497 - - *501 + - *263 + - *498 + - *502 requestBody: required: true content: @@ -82076,7 +82092,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -82138,18 +82154,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *261 - *262 - - *497 - - *501 + - *263 + - *498 + - *502 responses: '200': description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: *502 + default: *503 '422': *7 '404': *6 x-github: @@ -82176,10 +82192,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *261 - *262 - - *497 - - *501 + - *263 + - *498 + - *502 - *17 - *19 responses: @@ -82277,9 +82293,9 @@ paths: _links: type: object properties: - self: *394 - html: *394 - pull_request: *394 + self: *395 + html: *395 + pull_request: *395 required: - self - html @@ -82430,10 +82446,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *261 - *262 - - *497 - - *501 + - *263 + - *498 + - *502 requestBody: required: true content: @@ -82462,7 +82478,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -82525,10 +82541,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *261 - *262 - - *497 - - *501 + - *263 + - *498 + - *502 requestBody: required: true content: @@ -82563,9 +82579,9 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: *503 + default: *504 '404': *6 '422': *7 '403': *27 @@ -82587,9 +82603,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *261 - *262 - - *497 + - *263 + - *498 requestBody: required: false content: @@ -82653,8 +82669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *261 - *262 + - *263 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -82667,9 +82683,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: &505 + default: &506 value: type: file encoding: base64 @@ -82711,8 +82727,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *261 - *262 + - *263 - name: dir description: The alternate path to look for a README file in: path @@ -82732,9 +82748,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *505 + default: *506 '404': *6 '422': *15 x-github: @@ -82756,8 +82772,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -82767,7 +82783,7 @@ paths: application/json: schema: type: array - items: &506 + items: &507 title: Release description: A release. type: object @@ -82839,7 +82855,7 @@ paths: author: *4 assets: type: array - items: &507 + items: &508 title: Release Asset description: Data related to a release. type: object @@ -83019,8 +83035,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -83096,9 +83112,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &510 + default: &511 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -83201,9 +83217,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *261 - *262 - - &508 + - *263 + - &509 name: asset_id description: The unique identifier of the asset. in: path @@ -83215,9 +83231,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *508 examples: - default: &509 + default: &510 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -83251,7 +83267,7 @@ paths: type: User site_admin: false '404': *6 - '302': *403 + '302': *404 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83267,9 +83283,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *261 - *262 - - *508 + - *263 + - *509 requestBody: required: false content: @@ -83298,9 +83314,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *508 examples: - default: *509 + default: *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83316,9 +83332,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *261 - *262 - - *508 + - *263 + - *509 responses: '204': description: Response @@ -83342,8 +83358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -83429,16 +83445,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *261 - *262 + - *263 responses: '200': description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83455,8 +83471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *261 - *262 + - *263 - name: tag description: tag parameter in: path @@ -83469,9 +83485,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 '404': *6 x-github: githubCloudOnly: false @@ -83493,9 +83509,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *261 - *262 - - &511 + - *263 + - &512 name: release_id description: The unique identifier of the release. in: path @@ -83509,9 +83525,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 '401': description: Unauthorized x-github: @@ -83529,9 +83545,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *261 - *262 - - *511 + - *263 + - *512 requestBody: required: false content: @@ -83595,9 +83611,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 '404': description: Not Found if the discussion category name is invalid content: @@ -83618,9 +83634,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *261 - *262 - - *511 + - *263 + - *512 responses: '204': description: Response @@ -83640,9 +83656,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *261 - *262 - - *511 + - *263 + - *512 - *17 - *19 responses: @@ -83652,7 +83668,7 @@ paths: application/json: schema: type: array - items: *507 + items: *508 examples: default: value: @@ -83732,9 +83748,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *261 - *262 - - *511 + - *263 + - *512 - name: name in: query required: true @@ -83760,7 +83776,7 @@ paths: description: Response for successful upload content: application/json: - schema: *507 + schema: *508 examples: response-for-successful-upload: value: @@ -83814,9 +83830,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *261 - *262 - - *511 + - *263 + - *512 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -83840,9 +83856,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 '404': *6 @@ -83863,9 +83879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *261 - *262 - - *511 + - *263 + - *512 requestBody: required: true content: @@ -83895,16 +83911,16 @@ paths: description: Reaction exists content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '201': description: Reaction created content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 '422': *15 x-github: githubCloudOnly: false @@ -83926,10 +83942,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *261 - *262 - - *511 - - *257 + - *263 + - *512 + - *258 responses: '204': description: Response @@ -83953,9 +83969,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *261 - *262 - - *329 + - *263 + - *330 - *17 - *19 responses: @@ -83971,8 +83987,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *512 - - &514 + - *513 + - &515 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -83992,53 +84008,53 @@ paths: type: integer description: The ID of the ruleset that includes this rule. - allOf: - - *513 - *514 - - allOf: - *515 - - *514 - allOf: - *516 - - *514 + - *515 - allOf: - *517 - - *514 + - *515 - allOf: - *518 - - *514 + - *515 - allOf: - *519 - - *514 + - *515 - allOf: - *520 - - *514 + - *515 - allOf: - *521 - - *514 + - *515 - allOf: - *522 - - *514 + - *515 - allOf: - *523 - - *514 + - *515 - allOf: - *524 - - *514 + - *515 - allOf: - *525 - - *514 + - *515 - allOf: - *526 - - *514 + - *515 - allOf: - *527 - - *514 + - *515 - allOf: - *528 - - *514 + - *515 - allOf: - *529 - - *514 + - *515 + - allOf: + - *530 + - *515 examples: default: value: @@ -84077,8 +84093,8 @@ paths: category: repos subcategory: rules parameters: - - *261 - *262 + - *263 - *17 - *19 - name: includes_parents @@ -84089,7 +84105,7 @@ paths: schema: type: boolean default: true - - *530 + - *531 responses: '200': description: Response @@ -84097,7 +84113,7 @@ paths: application/json: schema: type: array - items: *225 + items: *226 examples: default: value: @@ -84144,8 +84160,8 @@ paths: category: repos subcategory: rules parameters: - - *261 - *262 + - *263 requestBody: description: Request body required: true @@ -84165,16 +84181,16 @@ paths: - tag - push default: branch - enforcement: *221 + enforcement: *222 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *222 - conditions: *219 + items: *223 + conditions: *220 rules: type: array description: An array of rules within the ruleset. - items: *224 + items: *225 required: - name - enforcement @@ -84205,9 +84221,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *226 examples: - default: &540 + default: &541 value: id: 42 name: super cool ruleset @@ -84254,12 +84270,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *261 - *262 - - *531 + - *263 - *532 - *533 - *534 + - *535 - *17 - *19 responses: @@ -84267,9 +84283,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: - default: *536 + default: *537 '404': *6 '500': *140 x-github: @@ -84290,17 +84306,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *261 - *262 - - *537 + - *263 + - *538 responses: '200': description: Response content: application/json: - schema: *538 + schema: *539 examples: - default: *539 + default: *540 '404': *6 '500': *140 x-github: @@ -84328,8 +84344,8 @@ paths: category: repos subcategory: rules parameters: - - *261 - *262 + - *263 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84349,9 +84365,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *226 examples: - default: *540 + default: *541 '404': *6 '500': *140 put: @@ -84369,8 +84385,8 @@ paths: category: repos subcategory: rules parameters: - - *261 - *262 + - *263 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84395,16 +84411,16 @@ paths: - branch - tag - push - enforcement: *221 + enforcement: *222 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *222 - conditions: *219 + items: *223 + conditions: *220 rules: description: An array of rules within the ruleset. type: array - items: *224 + items: *225 examples: default: value: @@ -84432,9 +84448,9 @@ paths: description: Response content: application/json: - schema: *225 + schema: *226 examples: - default: *540 + default: *541 '404': *6 '500': *140 delete: @@ -84452,8 +84468,8 @@ paths: category: repos subcategory: rules parameters: - - *261 - *262 + - *263 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84476,8 +84492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *261 - *262 + - *263 - *17 - *19 - name: ruleset_id @@ -84493,9 +84509,9 @@ paths: application/json: schema: type: array - items: *227 + items: *228 examples: - default: *541 + default: *542 '404': *6 '500': *140 x-github: @@ -84514,8 +84530,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *261 - *262 + - *263 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84533,7 +84549,7 @@ paths: description: Response content: application/json: - schema: *542 + schema: *543 examples: default: value: @@ -84588,20 +84604,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *261 - *262 - - *228 + - *263 - *229 - *230 - *231 + - *232 - *46 - *19 - *17 - - *543 - *544 - - *232 + - *545 - *233 - *234 + - *235 responses: '200': description: Response @@ -84609,7 +84625,7 @@ paths: application/json: schema: type: array - items: &547 + items: &548 type: object properties: number: *52 @@ -84625,8 +84641,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *545 - resolution: *546 + state: *546 + resolution: *547 resolved_at: type: - string @@ -84845,15 +84861,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 responses: '200': description: Response content: application/json: - schema: *547 + schema: *548 examples: default: value: @@ -84905,9 +84921,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 requestBody: required: true content: @@ -84915,8 +84931,8 @@ paths: schema: type: object properties: - state: *545 - resolution: *546 + state: *546 + resolution: *547 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -84935,7 +84951,7 @@ paths: description: Response content: application/json: - schema: *547 + schema: *548 examples: default: value: @@ -85010,9 +85026,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *261 - *262 - - *360 + - *263 + - *361 - *19 - *17 responses: @@ -85023,7 +85039,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &676 + items: &677 type: object properties: type: @@ -85402,8 +85418,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -85411,14 +85427,14 @@ paths: schema: type: object properties: - reason: &549 + reason: &550 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *548 + placeholder_id: *549 required: - reason - placeholder_id @@ -85435,7 +85451,7 @@ paths: schema: type: object properties: - reason: *549 + reason: *550 expire_at: type: - string @@ -85479,8 +85495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *261 - *262 + - *263 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -85495,7 +85511,7 @@ paths: properties: incremental_scans: type: array - items: &550 + items: &551 description: Information on a single scan performed by secret scanning on the repository type: object @@ -85523,15 +85539,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *550 + items: *551 backfill_scans: type: array - items: *550 + items: *551 custom_pattern_backfill_scans: type: array items: allOf: - - *550 + - *551 - type: object properties: pattern_name: @@ -85601,8 +85617,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *261 - *262 + - *263 - *46 - name: sort description: The property to sort the results by. @@ -85646,9 +85662,9 @@ paths: application/json: schema: type: array - items: *551 + items: *552 examples: - default: *552 + default: *553 '400': *14 '404': *6 x-github: @@ -85671,8 +85687,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -85752,7 +85768,7 @@ paths: login: type: string description: The username of the user credited. - type: *237 + type: *238 required: - login - type @@ -85842,9 +85858,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: &554 + default: &555 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -86077,8 +86093,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -86191,7 +86207,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -86338,17 +86354,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *261 - *262 - - *553 + - *263 + - *554 responses: '200': description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: *554 + default: *555 '403': *27 '404': *6 x-github: @@ -86372,9 +86388,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *261 - *262 - - *553 + - *263 + - *554 requestBody: required: true content: @@ -86454,7 +86470,7 @@ paths: login: type: string description: The username of the user credited. - type: *237 + type: *238 required: - login - type @@ -86545,10 +86561,10 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: *554 - add_credit: *554 + default: *555 + add_credit: *555 '403': *27 '404': *6 '422': @@ -86586,9 +86602,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *261 - *262 - - *553 + - *263 + - *554 responses: '202': *45 '400': *14 @@ -86615,17 +86631,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *261 - *262 - - *553 + - *263 + - *554 responses: '202': description: Response content: application/json: - schema: *272 + schema: *273 examples: - default: *274 + default: *275 '400': *14 '422': *15 '403': *27 @@ -86651,8 +86667,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -86748,8 +86764,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *261 - *262 + - *263 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -86758,7 +86774,7 @@ paths: application/json: schema: type: array - items: &555 + items: &556 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -86791,8 +86807,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -86870,8 +86886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -86965,8 +86981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *261 - *262 + - *263 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -87120,8 +87136,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *261 - *262 + - *263 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -87131,7 +87147,7 @@ paths: application/json: schema: type: array - items: *555 + items: *556 examples: default: value: @@ -87164,8 +87180,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *261 - *262 + - *263 - name: sha in: path required: true @@ -87221,7 +87237,7 @@ paths: description: Response content: application/json: - schema: *556 + schema: *557 examples: default: value: @@ -87275,8 +87291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -87308,14 +87324,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *261 - *262 + - *263 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &557 + schema: &558 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -87388,8 +87404,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *261 - *262 + - *263 requestBody: required: false content: @@ -87415,7 +87431,7 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: default: value: @@ -87442,8 +87458,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -87463,8 +87479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -87546,8 +87562,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -87555,7 +87571,7 @@ paths: application/json: schema: type: array - items: &558 + items: &559 title: Tag protection description: Tag protection type: object @@ -87612,8 +87628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -87636,7 +87652,7 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: default: value: @@ -87667,8 +87683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *261 - *262 + - *263 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -87705,8 +87721,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *261 - *262 + - *263 - name: ref in: path required: true @@ -87742,8 +87758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *261 - *262 + - *263 - *17 - *19 responses: @@ -87775,8 +87791,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *261 - *262 + - *263 - *19 - *17 responses: @@ -87784,7 +87800,7 @@ paths: description: Response content: application/json: - schema: &559 + schema: &560 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -87796,7 +87812,7 @@ paths: required: - names examples: - default: &560 + default: &561 value: names: - octocat @@ -87819,8 +87835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -87851,9 +87867,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: - default: *560 + default: *561 '404': *6 '422': *7 x-github: @@ -87874,9 +87890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *261 - *262 - - &561 + - *263 + - &562 name: per description: The time frame to display results for. in: query @@ -87907,7 +87923,7 @@ paths: - 128 clones: type: array - items: &562 + items: &563 title: Traffic type: object properties: @@ -87994,8 +88010,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -88089,8 +88105,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *261 - *262 + - *263 responses: '200': description: Response @@ -88153,9 +88169,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *261 - *262 - - *561 + - *263 + - *562 responses: '200': description: Response @@ -88176,7 +88192,7 @@ paths: - 3782 views: type: array - items: *562 + items: *563 required: - uniques - count @@ -88253,8 +88269,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *261 - *262 + - *263 requestBody: required: true content: @@ -88528,8 +88544,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *261 - *262 + - *263 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -88552,8 +88568,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -88575,8 +88591,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -88602,8 +88618,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *261 - *262 + - *263 - name: ref in: path required: true @@ -88695,9 +88711,9 @@ paths: description: Response content: application/json: - schema: *272 + schema: *273 examples: - default: *274 + default: *275 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -88946,7 +88962,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &563 + text_matches: &564 title: Search Result Text Matches type: array items: @@ -89109,7 +89125,7 @@ paths: enum: - author-date - committer-date - - &564 + - &565 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 @@ -89178,7 +89194,7 @@ paths: committer: anyOf: - type: 'null' - - *327 + - *328 comment_count: type: integer message: @@ -89197,7 +89213,7 @@ paths: url: type: string format: uri - verification: *438 + verification: *439 required: - author - committer @@ -89212,7 +89228,7 @@ paths: committer: anyOf: - type: 'null' - - *327 + - *328 parents: type: array items: @@ -89229,7 +89245,7 @@ paths: type: number node_id: type: string - text_matches: *563 + text_matches: *564 required: - sha - node_id @@ -89410,7 +89426,7 @@ paths: - interactions - created - updated - - *564 + - *565 - *17 - *19 - name: advanced_search @@ -89534,7 +89550,7 @@ paths: milestone: anyOf: - type: 'null' - - *393 + - *394 comments: type: integer created_at: @@ -89548,7 +89564,7 @@ paths: - string - 'null' format: date-time - text_matches: *563 + text_matches: *564 pull_request: type: object properties: @@ -89773,7 +89789,7 @@ paths: enum: - created - updated - - *564 + - *565 - *17 - *19 responses: @@ -89818,7 +89834,7 @@ paths: - 'null' score: type: number - text_matches: *563 + text_matches: *564 required: - id - node_id @@ -89903,7 +89919,7 @@ paths: - forks - help-wanted-issues - updated - - *564 + - *565 - *17 - *19 responses: @@ -90140,7 +90156,7 @@ paths: - admin - pull - push - text_matches: *563 + text_matches: *564 temp_clone_token: type: string allow_merge_commit: @@ -90448,7 +90464,7 @@ paths: - string - 'null' format: uri - text_matches: *563 + text_matches: *564 related: type: - array @@ -90641,7 +90657,7 @@ paths: - followers - repositories - joined - - *564 + - *565 - *17 - *19 responses: @@ -90751,7 +90767,7 @@ paths: type: - boolean - 'null' - text_matches: *563 + text_matches: *564 blog: type: - string @@ -90833,7 +90849,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &565 + - &566 name: team_id description: The unique identifier of the team. in: path @@ -90845,9 +90861,9 @@ paths: description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '404': *6 x-github: githubCloudOnly: false @@ -90874,7 +90890,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *565 + - *566 requestBody: required: true content: @@ -90938,16 +90954,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '201': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 '404': *6 '422': *15 '403': *27 @@ -90975,7 +90991,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *565 + - *566 responses: '204': description: Response @@ -91006,7 +91022,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *565 + - *566 - *46 - *17 - *19 @@ -91017,9 +91033,9 @@ paths: application/json: schema: type: array - items: *248 + items: *249 examples: - default: *566 + default: *567 headers: Link: *57 x-github: @@ -91048,7 +91064,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *565 + - *566 requestBody: required: true content: @@ -91082,9 +91098,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: *249 + default: *250 x-github: triggersNotification: true githubCloudOnly: false @@ -91111,16 +91127,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *565 - - *250 + - *566 + - *251 responses: '200': description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: *249 + default: *250 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91145,8 +91161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *565 - - *250 + - *566 + - *251 requestBody: required: false content: @@ -91169,9 +91185,9 @@ paths: description: Response content: application/json: - schema: *248 + schema: *249 examples: - default: *567 + default: *568 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91196,8 +91212,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *565 - - *250 + - *566 + - *251 responses: '204': description: Response @@ -91226,8 +91242,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *565 - - *250 + - *566 + - *251 - *46 - *17 - *19 @@ -91238,9 +91254,9 @@ paths: application/json: schema: type: array - items: *251 + items: *252 examples: - default: *568 + default: *569 headers: Link: *57 x-github: @@ -91269,8 +91285,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *565 - - *250 + - *566 + - *251 requestBody: required: true content: @@ -91292,9 +91308,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *252 + default: *253 x-github: triggersNotification: true githubCloudOnly: false @@ -91321,17 +91337,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *565 - - *250 - - *253 + - *566 + - *251 + - *254 responses: '200': description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *252 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91356,9 +91372,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *565 - - *250 - - *253 + - *566 + - *251 + - *254 requestBody: required: true content: @@ -91380,9 +91396,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *569 + default: *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91407,9 +91423,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *565 - - *250 - - *253 + - *566 + - *251 + - *254 responses: '204': description: Response @@ -91438,9 +91454,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *565 - - *250 - - *253 + - *566 + - *251 + - *254 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -91466,9 +91482,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 x-github: @@ -91497,9 +91513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *565 - - *250 - - *253 + - *566 + - *251 + - *254 requestBody: required: true content: @@ -91531,9 +91547,9 @@ paths: description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91559,8 +91575,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *565 - - *250 + - *566 + - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -91586,9 +91602,9 @@ paths: application/json: schema: type: array - items: *254 + items: *255 examples: - default: *256 + default: *257 headers: Link: *57 x-github: @@ -91617,8 +91633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *565 - - *250 + - *566 + - *251 requestBody: required: true content: @@ -91650,9 +91666,9 @@ paths: description: Response content: application/json: - schema: *254 + schema: *255 examples: - default: *255 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -91676,7 +91692,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *565 + - *566 - *17 - *19 responses: @@ -91714,7 +91730,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *565 + - *566 - name: role description: Filters members returned by their role in the team. in: query @@ -91765,7 +91781,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *565 + - *566 - *128 responses: '204': @@ -91802,7 +91818,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *565 + - *566 - *128 responses: '204': @@ -91842,7 +91858,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *565 + - *566 - *128 responses: '204': @@ -91879,16 +91895,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *565 + - *566 - *128 responses: '200': description: Response content: application/json: - schema: *258 + schema: *259 examples: - response-if-user-is-a-team-maintainer: *570 + response-if-user-is-a-team-maintainer: *571 '404': *6 x-github: githubCloudOnly: false @@ -91921,7 +91937,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *565 + - *566 - *128 requestBody: required: false @@ -91947,9 +91963,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *259 examples: - response-if-users-membership-with-team-is-now-pending: *571 + response-if-users-membership-with-team-is-now-pending: *572 '403': description: Forbidden if team synchronization is set up '422': @@ -91983,7 +91999,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *565 + - *566 - *128 responses: '204': @@ -92012,7 +92028,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *565 + - *566 - *17 - *19 responses: @@ -92022,9 +92038,9 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: *572 + default: *573 headers: Link: *57 '404': *6 @@ -92050,16 +92066,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *565 - - *260 + - *566 + - *261 responses: '200': description: Response content: application/json: - schema: *259 + schema: *260 examples: - default: *573 + default: *574 '404': description: Not Found if project is not managed by this team x-github: @@ -92083,8 +92099,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *565 - - *260 + - *566 + - *261 requestBody: required: false content: @@ -92151,8 +92167,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *565 - - *260 + - *566 + - *261 responses: '204': description: Response @@ -92179,7 +92195,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *565 + - *566 - *17 - *19 responses: @@ -92221,15 +92237,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *565 - - *261 + - *566 - *262 + - *263 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *574 + schema: *575 examples: alternative-response-with-extra-repository-information: value: @@ -92380,9 +92396,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *565 - - *261 + - *566 - *262 + - *263 requestBody: required: false content: @@ -92432,9 +92448,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *565 - - *261 + - *566 - *262 + - *263 responses: '204': description: Response @@ -92459,7 +92475,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *565 + - *566 - *17 - *19 responses: @@ -92471,7 +92487,7 @@ paths: type: array items: *180 examples: - response-if-child-teams-exist: *575 + response-if-child-teams-exist: *576 headers: Link: *57 '404': *6 @@ -92504,7 +92520,7 @@ paths: application/json: schema: oneOf: - - &577 + - &578 title: Private User description: Private User type: object @@ -92754,7 +92770,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *576 + - *577 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -92914,7 +92930,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *578 examples: default: value: @@ -93260,7 +93276,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '202': description: Response when the codespace creation partially failed but is being retried in the background @@ -93268,7 +93284,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '401': *23 '403': *27 '404': *6 @@ -93312,7 +93328,7 @@ paths: type: integer secrets: type: array - items: &578 + items: &579 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -93354,7 +93370,7 @@ paths: - visibility - selected_repositories_url examples: - default: *382 + default: *383 headers: Link: *57 x-github: @@ -93432,7 +93448,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: default: value: @@ -93578,7 +93594,7 @@ paths: type: array items: *115 examples: - default: *579 + default: *580 '401': *23 '403': *27 '404': *6 @@ -93730,7 +93746,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '304': *35 '500': *140 '401': *23 @@ -93788,7 +93804,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '401': *23 '403': *27 '404': *6 @@ -93845,7 +93861,7 @@ paths: description: Response content: application/json: - schema: &580 + schema: &581 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -93898,7 +93914,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &581 + default: &582 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -93943,9 +93959,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: *581 + default: *582 '404': *6 x-github: githubCloudOnly: false @@ -93982,9 +93998,9 @@ paths: type: integer machines: type: array - items: *381 + items: *382 examples: - default: *582 + default: *583 '304': *35 '500': *140 '401': *23 @@ -94069,11 +94085,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *272 + repository: *273 machine: anyOf: - type: 'null' - - *381 + - *382 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -94878,7 +94894,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '304': *35 '500': *140 '400': *14 @@ -94918,7 +94934,7 @@ paths: application/json: schema: *184 examples: - default: *380 + default: *381 '500': *140 '401': *23 '403': *27 @@ -94950,7 +94966,7 @@ paths: type: array items: *197 examples: - default: &595 + default: &596 value: - id: 197 name: hello_docker @@ -95051,7 +95067,7 @@ paths: application/json: schema: type: array - items: &583 + items: &584 title: Email description: Email type: object @@ -95121,9 +95137,9 @@ paths: application/json: schema: type: array - items: *583 + items: *584 examples: - default: &597 + default: &598 value: - email: octocat@github.com verified: true @@ -95200,7 +95216,7 @@ paths: application/json: schema: type: array - items: *583 + items: *584 examples: default: value: @@ -95458,7 +95474,7 @@ paths: application/json: schema: type: array - items: &584 + items: &585 title: GPG Key description: A unique encryption key type: object @@ -95603,7 +95619,7 @@ paths: - subkeys - revoked examples: - default: &608 + default: &609 value: - id: 3 name: Octocat's GPG Key @@ -95688,9 +95704,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: &585 + default: &586 value: id: 3 name: Octocat's GPG Key @@ -95747,7 +95763,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &586 + - &587 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -95759,9 +95775,9 @@ paths: description: Response content: application/json: - schema: *584 + schema: *585 examples: - default: *585 + default: *586 '404': *6 '304': *35 '403': *27 @@ -95784,7 +95800,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *586 + - *587 responses: '204': description: Response @@ -95975,7 +95991,7 @@ paths: type: array items: *59 examples: - default: *587 + default: *588 headers: Link: *57 '404': *6 @@ -96089,7 +96105,7 @@ paths: required: true content: application/json: - schema: *449 + schema: *450 examples: default: value: @@ -96239,7 +96255,7 @@ paths: application/json: schema: type: array - items: &588 + items: &589 title: Key description: Key type: object @@ -96337,9 +96353,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *589 examples: - default: &589 + default: &590 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -96372,15 +96388,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *476 + - *477 responses: '200': description: Response content: application/json: - schema: *588 + schema: *589 examples: - default: *589 + default: *590 '404': *6 '304': *35 '403': *27 @@ -96403,7 +96419,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *476 + - *477 responses: '204': description: Response @@ -96436,7 +96452,7 @@ paths: application/json: schema: type: array - items: &590 + items: &591 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -96515,7 +96531,7 @@ paths: - account - plan examples: - default: &591 + default: &592 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -96577,9 +96593,9 @@ paths: application/json: schema: type: array - items: *590 + items: *591 examples: - default: *591 + default: *592 headers: Link: *57 '304': *35 @@ -97583,7 +97599,7 @@ paths: url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - *191 - - *592 + - *593 responses: '204': description: Response @@ -97656,7 +97672,7 @@ paths: type: array items: *142 examples: - default: *593 + default: *594 headers: Link: *57 '304': *35 @@ -97698,7 +97714,7 @@ paths: - docker - nuget - container - - *594 + - *595 - *19 - *17 responses: @@ -97710,8 +97726,8 @@ paths: type: array items: *197 examples: - default: *595 - '400': *596 + default: *596 + '400': *597 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97740,7 +97756,7 @@ paths: application/json: schema: *197 examples: - default: &609 + default: &610 value: id: 40201 name: octo-name @@ -98123,7 +98139,7 @@ paths: description: Response content: application/json: - schema: *212 + schema: *213 examples: default: value: @@ -98195,9 +98211,9 @@ paths: application/json: schema: type: array - items: *583 + items: *584 examples: - default: *597 + default: *598 headers: Link: *57 '304': *35 @@ -98310,7 +98326,7 @@ paths: type: array items: *59 examples: - default: &604 + default: &605 summary: Default response value: - id: 1296269 @@ -98626,9 +98642,9 @@ paths: description: Response content: application/json: - schema: *272 + schema: *273 examples: - default: *274 + default: *275 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -98666,9 +98682,9 @@ paths: application/json: schema: type: array - items: *451 + items: *452 examples: - default: *598 + default: *599 headers: Link: *57 '304': *35 @@ -98747,7 +98763,7 @@ paths: application/json: schema: type: array - items: &599 + items: &600 title: Social account description: Social media account type: object @@ -98764,7 +98780,7 @@ paths: - provider - url examples: - default: &600 + default: &601 value: - provider: twitter url: https://twitter.com/github @@ -98827,9 +98843,9 @@ paths: application/json: schema: type: array - items: *599 + items: *600 examples: - default: *600 + default: *601 '422': *15 '304': *35 '404': *6 @@ -98917,7 +98933,7 @@ paths: application/json: schema: type: array - items: &601 + items: &602 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -98937,7 +98953,7 @@ paths: - title - created_at examples: - default: &616 + default: &617 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -99004,9 +99020,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *602 examples: - default: &602 + default: &603 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -99037,7 +99053,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: - - &603 + - &604 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -99049,9 +99065,9 @@ paths: description: Response content: application/json: - schema: *601 + schema: *602 examples: - default: *602 + default: *603 '404': *6 '304': *35 '403': *27 @@ -99074,7 +99090,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: - - *603 + - *604 responses: '204': description: Response @@ -99103,7 +99119,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &617 + - &618 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 @@ -99128,11 +99144,11 @@ paths: type: array items: *59 examples: - default-response: *604 + default-response: *605 application/vnd.github.v3.star+json: schema: type: array - items: &618 + items: &619 title: Starred Repository description: Starred Repository type: object @@ -99288,8 +99304,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *261 - *262 + - *263 responses: '204': description: Response if this repository is starred by you @@ -99317,8 +99333,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -99342,8 +99358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *261 - *262 + - *263 responses: '204': description: Response @@ -99415,7 +99431,7 @@ paths: application/json: schema: type: array - items: *246 + items: *247 examples: default: value: @@ -99501,10 +99517,10 @@ paths: application/json: schema: oneOf: + - *578 - *577 - - *576 examples: - default-response: &606 + default-response: &607 summary: Default response value: login: octocat @@ -99539,7 +99555,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &607 + response-with-git-hub-plan-information: &608 summary: Response with GitHub plan information value: login: octocat @@ -99599,7 +99615,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *605 + - *606 - *17 responses: '200': @@ -99648,11 +99664,11 @@ paths: application/json: schema: oneOf: + - *578 - *577 - - *576 examples: - default-response: *606 - response-with-git-hub-plan-information: *607 + default-response: *607 + response-with-git-hub-plan-information: *608 '404': *6 x-github: githubCloudOnly: false @@ -99728,7 +99744,7 @@ paths: bundle_url: type: string examples: - default: *323 + default: *324 '201': description: Response content: @@ -99769,7 +99785,7 @@ paths: type: array items: *197 examples: - default: *595 + default: *596 '403': *27 '401': *23 x-github: @@ -100173,9 +100189,9 @@ paths: application/json: schema: type: array - items: *584 + items: *585 examples: - default: *608 + default: *609 headers: Link: *57 x-github: @@ -100279,7 +100295,7 @@ paths: application/json: schema: *20 examples: - default: *448 + default: *449 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100357,7 +100373,7 @@ paths: type: array items: *142 examples: - default: *593 + default: *594 headers: Link: *57 x-github: @@ -100396,7 +100412,7 @@ paths: - docker - nuget - container - - *594 + - *595 - *128 - *19 - *17 @@ -100409,10 +100425,10 @@ paths: type: array items: *197 examples: - default: *595 + default: *596 '403': *27 '401': *23 - '400': *596 + '400': *597 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100442,7 +100458,7 @@ paths: application/json: schema: *197 examples: - default: *609 + default: *610 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100728,7 +100744,7 @@ paths: application/json: schema: type: array - items: *212 + items: *213 examples: default: value: @@ -101041,9 +101057,9 @@ paths: description: Response content: application/json: - schema: *610 + schema: *611 examples: - default: *611 + default: *612 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101071,9 +101087,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *613 + default: *614 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101101,9 +101117,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *615 + default: *616 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101131,9 +101147,9 @@ paths: application/json: schema: type: array - items: *599 + items: *600 examples: - default: *600 + default: *601 headers: Link: *57 x-github: @@ -101163,9 +101179,9 @@ paths: application/json: schema: type: array - items: *601 + items: *602 examples: - default: *616 + default: *617 headers: Link: *57 x-github: @@ -101190,7 +101206,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *128 - - *617 + - *618 - *46 - *17 - *19 @@ -101202,11 +101218,11 @@ paths: schema: anyOf: - type: array - items: *618 + items: *619 - type: array items: *59 examples: - default-response: *604 + default-response: *605 headers: Link: *57 x-github: @@ -101366,7 +101382,7 @@ webhooks: type: string enum: - disabled - enterprise: &619 + enterprise: &620 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -101435,7 +101451,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &620 + installation: &621 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -101456,7 +101472,7 @@ webhooks: required: - id - node_id - organization: &621 + organization: &622 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -101529,7 +101545,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &622 + repository: &623 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -102442,10 +102458,10 @@ webhooks: type: string enum: - enabled - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -102521,11 +102537,11 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - rule: &623 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + rule: &624 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) @@ -102748,11 +102764,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - rule: *623 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + rule: *624 sender: *4 required: - action @@ -102940,11 +102956,11 @@ webhooks: - everyone required: - from - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - rule: *623 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + rule: *624 sender: *4 required: - action @@ -103028,7 +103044,7 @@ webhooks: type: string enum: - completed - check_run: &625 + check_run: &626 title: CheckRun description: A check performed on the code of a given code change type: object @@ -103096,7 +103112,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *340 + items: *341 repository: *115 status: type: string @@ -103141,7 +103157,7 @@ webhooks: - examples: - neutral - deployment: *624 + deployment: *625 details_url: type: string examples: @@ -103201,7 +103217,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *340 + items: *341 started_at: type: string format: date-time @@ -103239,9 +103255,9 @@ webhooks: - output - app - pull_requests - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - check_run @@ -103634,10 +103650,10 @@ webhooks: type: string enum: - created - check_run: *625 - installation: *620 - organization: *621 - repository: *622 + check_run: *626 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - check_run @@ -104033,10 +104049,10 @@ webhooks: type: string enum: - requested_action - check_run: *625 - installation: *620 - organization: *621 - repository: *622 + check_run: *626 + installation: *621 + organization: *622 + repository: *623 requested_action: description: The action requested by the user. type: object @@ -104441,10 +104457,10 @@ webhooks: type: string enum: - rerequested - check_run: *625 - installation: *620 - organization: *621 - repository: *622 + check_run: *626 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - check_run @@ -105436,10 +105452,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -106124,10 +106140,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -106806,10 +106822,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -106975,7 +106991,7 @@ webhooks: required: - login - id - dismissed_comment: *355 + dismissed_comment: *356 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107127,20 +107143,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &626 + commit_oid: &627 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: *619 - installation: *620 - organization: *621 - ref: &627 + enterprise: *620 + installation: *621 + organization: *622 + ref: &628 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: *622 + repository: *623 sender: *4 required: - action @@ -107304,7 +107320,7 @@ webhooks: required: - login - id - dismissed_comment: *355 + dismissed_comment: *356 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107545,12 +107561,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *626 - enterprise: *619 - installation: *620 - organization: *621 - ref: *627 - repository: *622 + commit_oid: *627 + enterprise: *620 + installation: *621 + organization: *622 + ref: *628 + repository: *623 sender: *4 required: - action @@ -107648,7 +107664,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *355 + dismissed_comment: *356 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -107830,12 +107846,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *626 - enterprise: *619 - installation: *620 - organization: *621 - ref: *627 - repository: *622 + commit_oid: *627 + enterprise: *620 + installation: *621 + organization: *622 + ref: *628 + repository: *623 sender: *4 required: - action @@ -108001,7 +108017,7 @@ webhooks: required: - login - id - dismissed_comment: *355 + dismissed_comment: *356 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -108178,12 +108194,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *626 - enterprise: *619 - installation: *620 - organization: *621 - ref: *627 - repository: *622 + commit_oid: *627 + enterprise: *620 + installation: *621 + organization: *622 + ref: *628 + repository: *623 sender: *4 required: - action @@ -108283,7 +108299,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *355 + dismissed_comment: *356 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108463,9 +108479,9 @@ webhooks: type: - string - 'null' - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -108473,7 +108489,7 @@ webhooks: type: - string - 'null' - repository: *622 + repository: *623 sender: *4 required: - action @@ -108569,7 +108585,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *355 + dismissed_comment: *356 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108716,12 +108732,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *626 - enterprise: *619 - installation: *620 - organization: *621 - ref: *627 - repository: *622 + commit_oid: *627 + enterprise: *620 + installation: *621 + organization: *622 + ref: *628 + repository: *623 sender: *4 required: - action @@ -108983,10 +108999,10 @@ webhooks: - updated_at - author_association - body - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -109067,18 +109083,18 @@ webhooks: type: - string - 'null' - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *621 - pusher_type: &628 + organization: *622 + pusher_type: &629 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &629 + ref: &630 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -109088,7 +109104,7 @@ webhooks: enum: - tag - branch - repository: *622 + repository: *623 sender: *4 required: - ref @@ -109170,10 +109186,10 @@ webhooks: type: string enum: - created - definition: *213 - enterprise: *619 - installation: *620 - organization: *621 + definition: *214 + enterprise: *620 + installation: *621 + organization: *622 sender: *4 required: - action @@ -109258,9 +109274,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 sender: *4 required: - action @@ -109337,10 +109353,10 @@ webhooks: type: string enum: - updated - definition: *213 - enterprise: *619 - installation: *620 - organization: *621 + definition: *214 + enterprise: *620 + installation: *621 + organization: *622 sender: *4 required: - action @@ -109417,19 +109433,19 @@ webhooks: type: string enum: - updated - enterprise: *619 - installation: *620 - repository: *622 - organization: *621 + enterprise: *620 + installation: *621 + repository: *623 + organization: *622 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *217 + items: *218 old_property_values: type: array description: The old custom property values for the repository. - items: *217 + items: *218 required: - action - repository @@ -109505,18 +109521,18 @@ webhooks: title: delete event type: object properties: - enterprise: *619 - installation: *620 - organization: *621 - pusher_type: *628 - ref: *629 + enterprise: *620 + installation: *621 + organization: *622 + pusher_type: *629 + ref: *630 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *622 + repository: *623 sender: *4 required: - ref @@ -109600,11 +109616,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -109688,11 +109704,11 @@ webhooks: type: string enum: - auto_reopened - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -109776,11 +109792,11 @@ webhooks: type: string enum: - created - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -109862,11 +109878,11 @@ webhooks: type: string enum: - dismissed - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -109948,11 +109964,11 @@ webhooks: type: string enum: - fixed - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -110035,11 +110051,11 @@ webhooks: type: string enum: - reintroduced - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -110121,11 +110137,11 @@ webhooks: type: string enum: - reopened - alert: *407 - installation: *620 - organization: *621 - enterprise: *619 - repository: *622 + alert: *408 + installation: *621 + organization: *622 + enterprise: *620 + repository: *623 sender: *4 required: - action @@ -110202,9 +110218,9 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - key: &630 + enterprise: *620 + installation: *621 + key: &631 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -110242,8 +110258,8 @@ webhooks: - verified - created_at - read_only - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -110320,11 +110336,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - key: *630 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + key: *631 + organization: *622 + repository: *623 sender: *4 required: - action @@ -110896,12 +110912,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - workflow: &634 + workflow: &635 title: Workflow type: - object @@ -111639,13 +111655,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *413 + deployment: *414 pull_requests: type: array - items: *495 - repository: *622 - organization: *621 - installation: *620 + items: *496 + repository: *623 + organization: *622 + installation: *621 sender: *4 responses: '200': @@ -111716,7 +111732,7 @@ webhooks: type: string enum: - approved - approver: &631 + approver: &632 type: object properties: avatar_url: @@ -111759,11 +111775,11 @@ webhooks: type: string comment: type: string - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - reviewers: &632 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + reviewers: &633 type: array items: type: object @@ -111844,7 +111860,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &633 + workflow_job_run: &634 type: object properties: conclusion: @@ -112590,18 +112606,18 @@ webhooks: type: string enum: - rejected - approver: *631 + approver: *632 comment: type: string - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - reviewers: *632 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + reviewers: *633 sender: *4 since: type: string - workflow_job_run: *633 + workflow_job_run: *634 workflow_job_runs: type: array items: @@ -113318,13 +113334,13 @@ webhooks: type: string enum: - requested - enterprise: *619 + enterprise: *620 environment: type: string - installation: *620 - organization: *621 - repository: *622 - requestor: &639 + installation: *621 + organization: *622 + repository: *623 + requestor: &640 title: User type: - object @@ -115267,12 +115283,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - workflow: *634 + workflow: *635 workflow_run: title: Deployment Workflow Run type: @@ -115963,7 +115979,7 @@ webhooks: type: string enum: - answered - answer: &637 + answer: &638 type: object properties: author_association: @@ -116123,7 +116139,7 @@ webhooks: - created_at - updated_at - body - discussion: &635 + discussion: &636 title: Discussion description: A Discussion in a repository. type: object @@ -116419,7 +116435,7 @@ webhooks: - id labels: type: array - items: *458 + items: *459 required: - repository_url - category @@ -116441,10 +116457,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -116571,11 +116587,11 @@ webhooks: - from required: - category - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -116658,11 +116674,11 @@ webhooks: type: string enum: - closed - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -116744,7 +116760,7 @@ webhooks: type: string enum: - created - comment: &636 + comment: &637 type: object properties: author_association: @@ -116904,11 +116920,11 @@ webhooks: - updated_at - body - reactions - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -116991,12 +117007,12 @@ webhooks: type: string enum: - deleted - comment: *636 - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + comment: *637 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117091,12 +117107,12 @@ webhooks: - from required: - body - comment: *636 - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + comment: *637 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117180,11 +117196,11 @@ webhooks: type: string enum: - created - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117266,11 +117282,11 @@ webhooks: type: string enum: - deleted - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117370,11 +117386,11 @@ webhooks: type: string required: - from - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117456,10 +117472,10 @@ webhooks: type: string enum: - labeled - discussion: *635 - enterprise: *619 - installation: *620 - label: &638 + discussion: *636 + enterprise: *620 + installation: *621 + label: &639 title: Label type: object properties: @@ -117492,8 +117508,8 @@ webhooks: - color - default - description - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117576,11 +117592,11 @@ webhooks: type: string enum: - locked - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117662,11 +117678,11 @@ webhooks: type: string enum: - pinned - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117748,11 +117764,11 @@ webhooks: type: string enum: - reopened - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117837,16 +117853,16 @@ webhooks: changes: type: object properties: - new_discussion: *635 - new_repository: *622 + new_discussion: *636 + new_repository: *623 required: - new_discussion - new_repository - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -117929,10 +117945,10 @@ webhooks: type: string enum: - unanswered - discussion: *635 - old_answer: *637 - organization: *621 - repository: *622 + discussion: *636 + old_answer: *638 + organization: *622 + repository: *623 sender: *4 required: - action @@ -118014,12 +118030,12 @@ webhooks: type: string enum: - unlabeled - discussion: *635 - enterprise: *619 - installation: *620 - label: *638 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -118102,11 +118118,11 @@ webhooks: type: string enum: - unlocked - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -118188,11 +118204,11 @@ webhooks: type: string enum: - unpinned - discussion: *635 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + discussion: *636 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -118265,7 +118281,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *619 + enterprise: *620 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -118943,9 +118959,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - forkee @@ -119091,9 +119107,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pages: description: The pages that were updated. type: array @@ -119131,7 +119147,7 @@ webhooks: - action - sha - html_url - repository: *622 + repository: *623 sender: *4 required: - pages @@ -119207,10 +119223,10 @@ webhooks: type: string enum: - created - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories: &640 + organization: *622 + repositories: &641 description: An array of repository objects that the installation can access. type: array @@ -119236,8 +119252,8 @@ webhooks: - name - full_name - private - repository: *622 - requester: *639 + repository: *623 + requester: *640 sender: *4 required: - action @@ -119312,11 +119328,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories: *640 - repository: *622 + organization: *622 + repositories: *641 + repository: *623 requester: type: - 'null' @@ -119393,11 +119409,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories: *640 - repository: *622 + organization: *622 + repositories: *641 + repository: *623 requester: type: - 'null' @@ -119474,10 +119490,10 @@ webhooks: type: string enum: - added - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories_added: &641 + organization: *622 + repositories_added: &642 description: An array of repository objects, which were added to the installation. type: array @@ -119523,15 +119539,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *622 - repository_selection: &642 + repository: *623 + repository_selection: &643 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *639 + requester: *640 sender: *4 required: - action @@ -119610,10 +119626,10 @@ webhooks: type: string enum: - removed - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories_added: *641 + organization: *622 + repositories_added: *642 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -119640,9 +119656,9 @@ webhooks: - name - full_name - private - repository: *622 - repository_selection: *642 - requester: *639 + repository: *623 + repository_selection: *643 + requester: *640 sender: *4 required: - action @@ -119721,11 +119737,11 @@ webhooks: type: string enum: - suspend - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories: *640 - repository: *622 + organization: *622 + repositories: *641 + repository: *623 requester: type: - 'null' @@ -119907,10 +119923,10 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 target_type: type: string @@ -119989,11 +120005,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *619 + enterprise: *620 installation: *20 - organization: *621 - repositories: *640 - repository: *622 + organization: *622 + repositories: *641 + repository: *623 requester: type: - 'null' @@ -120241,8 +120257,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -121432,8 +121448,8 @@ webhooks: - state - locked - assignee - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -121513,7 +121529,7 @@ webhooks: type: string enum: - deleted - comment: &643 + comment: &644 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -121680,8 +121696,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -122869,8 +122885,8 @@ webhooks: - state - locked - assignee - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -122950,7 +122966,7 @@ webhooks: type: string enum: - edited - changes: &668 + changes: &669 description: The changes to the comment. type: object properties: @@ -122962,9 +122978,9 @@ webhooks: type: string required: - from - comment: *643 - enterprise: *619 - installation: *620 + comment: *644 + enterprise: *620 + installation: *621 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -124153,8 +124169,8 @@ webhooks: - state - locked - assignee - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -124236,10 +124252,10 @@ webhooks: type: string enum: - assigned - assignee: *639 - enterprise: *619 - installation: *620 - issue: &646 + assignee: *640 + enterprise: *620 + installation: *621 + issue: &647 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -125183,8 +125199,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -125264,8 +125280,8 @@ webhooks: type: string enum: - closed - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -126357,8 +126373,8 @@ webhooks: required: - state - closed_at - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -126437,8 +126453,8 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -127375,8 +127391,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -127455,8 +127471,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128397,7 +128413,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &644 + milestone: &645 title: Milestone description: A collection of related issues and pull requests. type: object @@ -128540,8 +128556,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -128640,8 +128656,8 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -129585,9 +129601,9 @@ webhooks: - active_lock_reason - body - reactions - label: *638 - organization: *621 - repository: *622 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -129667,8 +129683,8 @@ webhooks: type: string enum: - labeled - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -130611,9 +130627,9 @@ webhooks: - active_lock_reason - body - reactions - label: *638 - organization: *621 - repository: *622 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -130693,8 +130709,8 @@ webhooks: type: string enum: - locked - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -131639,8 +131655,8 @@ webhooks: format: uri user_view_type: type: string - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -131719,8 +131735,8 @@ webhooks: type: string enum: - milestoned - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -132659,9 +132675,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *644 - organization: *621 - repository: *622 + milestone: *645 + organization: *622 + repository: *623 sender: *4 required: - action @@ -134161,8 +134177,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135105,8 +135121,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -135186,9 +135202,9 @@ webhooks: type: string enum: - pinned - enterprise: *619 - installation: *620 - issue: &645 + enterprise: *620 + installation: *621 + issue: &646 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136125,8 +136141,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -136205,8 +136221,8 @@ webhooks: type: string enum: - reopened - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137150,8 +137166,8 @@ webhooks: format: uri user_view_type: type: string - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -138651,11 +138667,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *619 - installation: *620 - issue: *645 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + issue: *646 + organization: *622 + repository: *623 sender: *4 required: - action @@ -138736,7 +138752,7 @@ webhooks: type: string enum: - unassigned - assignee: &671 + assignee: &672 title: User type: - object @@ -138808,11 +138824,11 @@ webhooks: required: - login - id - enterprise: *619 - installation: *620 - issue: *646 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + issue: *647 + organization: *622 + repository: *623 sender: *4 required: - action @@ -138891,12 +138907,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *619 - installation: *620 - issue: *646 - label: *638 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + issue: *647 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -138976,8 +138992,8 @@ webhooks: type: string enum: - unlocked - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139920,8 +139936,8 @@ webhooks: format: uri user_view_type: type: string - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -140001,11 +140017,11 @@ webhooks: type: string enum: - unpinned - enterprise: *619 - installation: *620 - issue: *645 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + issue: *646 + organization: *622 + repository: *623 sender: *4 required: - action @@ -140084,11 +140100,11 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - label: *638 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -140166,11 +140182,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - label: *638 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -140280,11 +140296,11 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - label: *638 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + label: *639 + organization: *622 + repository: *623 sender: *4 required: - action @@ -140366,9 +140382,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *619 - installation: *620 - marketplace_purchase: &647 + enterprise: *620 + installation: *621 + marketplace_purchase: &648 title: Marketplace Purchase type: object required: @@ -140456,8 +140472,8 @@ webhooks: type: integer unit_count: type: integer - organization: *621 - previous_marketplace_purchase: &648 + organization: *622 + previous_marketplace_purchase: &649 title: Marketplace Purchase type: object properties: @@ -140541,7 +140557,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *622 + repository: *623 sender: *4 required: - action @@ -140621,10 +140637,10 @@ webhooks: - changed effective_date: type: string - enterprise: *619 - installation: *620 - marketplace_purchase: *647 - organization: *621 + enterprise: *620 + installation: *621 + marketplace_purchase: *648 + organization: *622 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -140712,7 +140728,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *622 + repository: *623 sender: *4 required: - action @@ -140794,10 +140810,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *619 - installation: *620 - marketplace_purchase: *647 - organization: *621 + enterprise: *620 + installation: *621 + marketplace_purchase: *648 + organization: *622 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -140883,7 +140899,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *622 + repository: *623 sender: *4 required: - action @@ -140964,8 +140980,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 marketplace_purchase: title: Marketplace Purchase type: object @@ -141051,9 +141067,9 @@ webhooks: type: integer unit_count: type: integer - organization: *621 - previous_marketplace_purchase: *648 - repository: *622 + organization: *622 + previous_marketplace_purchase: *649 + repository: *623 sender: *4 required: - action @@ -141133,12 +141149,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *619 - installation: *620 - marketplace_purchase: *647 - organization: *621 - previous_marketplace_purchase: *648 - repository: *622 + enterprise: *620 + installation: *621 + marketplace_purchase: *648 + organization: *622 + previous_marketplace_purchase: *649 + repository: *623 sender: *4 required: - action @@ -141240,11 +141256,11 @@ webhooks: type: string required: - to - enterprise: *619 - installation: *620 - member: *639 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + member: *640 + organization: *622 + repository: *623 sender: *4 required: - action @@ -141346,11 +141362,11 @@ webhooks: type: - string - 'null' - enterprise: *619 - installation: *620 - member: *639 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + member: *640 + organization: *622 + repository: *623 sender: *4 required: - action @@ -141429,11 +141445,11 @@ webhooks: type: string enum: - removed - enterprise: *619 - installation: *620 - member: *639 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + member: *640 + organization: *622 + repository: *623 sender: *4 required: - action @@ -141511,11 +141527,11 @@ webhooks: type: string enum: - added - enterprise: *619 - installation: *620 - member: *639 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + member: *640 + organization: *622 + repository: *623 scope: description: The scope of the membership. Currently, can only be `team`. @@ -141593,7 +141609,7 @@ webhooks: required: - login - id - team: &649 + team: &650 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -141786,11 +141802,11 @@ webhooks: type: string enum: - removed - enterprise: *619 - installation: *620 - member: *639 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + member: *640 + organization: *622 + repository: *623 scope: description: The scope of the membership. Currently, can only be `team`. @@ -141869,7 +141885,7 @@ webhooks: required: - login - id - team: *649 + team: *650 required: - action - scope @@ -141951,8 +141967,8 @@ webhooks: type: string enum: - checks_requested - installation: *620 - merge_group: &650 + installation: *621 + merge_group: &651 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -141971,15 +141987,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *344 + head_commit: *345 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142065,10 +142081,10 @@ webhooks: - merged - invalidated - dequeued - installation: *620 - merge_group: *650 - organization: *621 - repository: *622 + installation: *621 + merge_group: *651 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142141,7 +142157,7 @@ webhooks: type: string enum: - deleted - enterprise: *619 + enterprise: *620 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -142249,12 +142265,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *620 - organization: *621 + installation: *621 + organization: *622 repository: anyOf: - type: 'null' - - *622 + - *623 sender: *4 required: - action @@ -142334,11 +142350,11 @@ webhooks: type: string enum: - closed - enterprise: *619 - installation: *620 - milestone: *644 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + milestone: *645 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142417,9 +142433,9 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - milestone: &651 + enterprise: *620 + installation: *621 + milestone: &652 title: Milestone description: A collection of related issues and pull requests. type: object @@ -142561,8 +142577,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142641,11 +142657,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - milestone: *644 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + milestone: *645 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142755,11 +142771,11 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - milestone: *644 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + milestone: *645 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142839,11 +142855,11 @@ webhooks: type: string enum: - opened - enterprise: *619 - installation: *620 - milestone: *651 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + milestone: *652 + organization: *622 + repository: *623 sender: *4 required: - action @@ -142922,11 +142938,11 @@ webhooks: type: string enum: - blocked - blocked_user: *639 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + blocked_user: *640 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -143005,11 +143021,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *639 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + blocked_user: *640 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -143088,9 +143104,9 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - membership: &652 + enterprise: *620 + installation: *621 + membership: &653 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -143184,8 +143200,8 @@ webhooks: - role - organization_url - user - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 required: - action @@ -143263,11 +143279,11 @@ webhooks: type: string enum: - member_added - enterprise: *619 - installation: *620 - membership: *652 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + membership: *653 + organization: *622 + repository: *623 sender: *4 required: - action @@ -143346,8 +143362,8 @@ webhooks: type: string enum: - member_invited - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -143469,10 +143485,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 - user: *639 + user: *640 required: - action - invitation @@ -143550,11 +143566,11 @@ webhooks: type: string enum: - member_removed - enterprise: *619 - installation: *620 - membership: *652 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + membership: *653 + organization: *622 + repository: *623 sender: *4 required: - action @@ -143641,11 +143657,11 @@ webhooks: properties: from: type: string - enterprise: *619 - installation: *620 - membership: *652 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + membership: *653 + organization: *622 + repository: *623 sender: *4 required: - action @@ -143721,9 +143737,9 @@ webhooks: type: string enum: - published - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 package: description: Information about the package. type: object @@ -144246,7 +144262,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &653 + items: &654 title: Ruby Gems metadata type: object properties: @@ -144343,7 +144359,7 @@ webhooks: - owner - package_version - registry - repository: *622 + repository: *623 sender: *4 required: - action @@ -144419,9 +144435,9 @@ webhooks: type: string enum: - updated - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 package: description: Information about the package. type: object @@ -144783,7 +144799,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *653 + items: *654 source_url: type: string format: uri @@ -144854,7 +144870,7 @@ webhooks: - owner - package_version - registry - repository: *622 + repository: *623 sender: *4 required: - action @@ -145035,12 +145051,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *619 + enterprise: *620 id: type: integer - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - id @@ -145120,7 +145136,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &654 + personal_access_token_request: &655 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -145270,10 +145286,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *619 - organization: *621 + enterprise: *620 + organization: *622 sender: *4 - installation: *620 + installation: *621 required: - action - personal_access_token_request @@ -145352,11 +145368,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *654 - enterprise: *619 - organization: *621 + personal_access_token_request: *655 + enterprise: *620 + organization: *622 sender: *4 - installation: *620 + installation: *621 required: - action - personal_access_token_request @@ -145434,11 +145450,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *654 - enterprise: *619 - organization: *621 + personal_access_token_request: *655 + enterprise: *620 + organization: *622 sender: *4 - installation: *620 + installation: *621 required: - action - personal_access_token_request @@ -145515,11 +145531,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *654 - organization: *621 - enterprise: *619 + personal_access_token_request: *655 + organization: *622 + enterprise: *620 sender: *4 - installation: *620 + installation: *621 required: - action - personal_access_token_request @@ -145623,7 +145639,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *655 + last_response: *656 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -145655,8 +145671,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 zen: description: Random string of GitHub zen. @@ -145901,10 +145917,10 @@ webhooks: - from required: - note - enterprise: *619 - installation: *620 - organization: *621 - project_card: &656 + enterprise: *620 + installation: *621 + organization: *622 + project_card: &657 title: Project Card type: object properties: @@ -146027,7 +146043,7 @@ webhooks: - creator - created_at - updated_at - repository: *622 + repository: *623 sender: *4 required: - action @@ -146108,11 +146124,11 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - project_card: *656 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project_card: *657 + repository: *623 sender: *4 required: - action @@ -146192,9 +146208,9 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 project_card: title: Project Card type: object @@ -146324,7 +146340,7 @@ webhooks: repository: anyOf: - type: 'null' - - *622 + - *623 sender: *4 required: - action @@ -146418,11 +146434,11 @@ webhooks: - from required: - note - enterprise: *619 - installation: *620 - organization: *621 - project_card: *656 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project_card: *657 + repository: *623 sender: *4 required: - action @@ -146516,9 +146532,9 @@ webhooks: - from required: - column_id - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 project_card: allOf: - title: Project Card @@ -146715,7 +146731,7 @@ webhooks: type: string required: - after_id - repository: *622 + repository: *623 sender: *4 required: - action @@ -146795,10 +146811,10 @@ webhooks: type: string enum: - closed - enterprise: *619 - installation: *620 - organization: *621 - project: &658 + enterprise: *620 + installation: *621 + organization: *622 + project: &659 title: Project type: object properties: @@ -146925,7 +146941,7 @@ webhooks: - creator - created_at - updated_at - repository: *622 + repository: *623 sender: *4 required: - action @@ -147005,10 +147021,10 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - project_column: &657 + enterprise: *620 + installation: *621 + organization: *622 + project_column: &658 title: Project Column type: object properties: @@ -147048,7 +147064,7 @@ webhooks: - name - created_at - updated_at - repository: *622 + repository: *623 sender: *4 required: - action @@ -147127,14 +147143,14 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - project_column: *657 + enterprise: *620 + installation: *621 + organization: *622 + project_column: *658 repository: anyOf: - type: 'null' - - *622 + - *623 sender: *4 required: - action @@ -147223,11 +147239,11 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - organization: *621 - project_column: *657 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project_column: *658 + repository: *623 sender: *4 required: - action @@ -147307,11 +147323,11 @@ webhooks: type: string enum: - moved - enterprise: *619 - installation: *620 - organization: *621 - project_column: *657 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project_column: *658 + repository: *623 sender: *4 required: - action @@ -147391,11 +147407,11 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - project: *658 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project: *659 + repository: *623 sender: *4 required: - action @@ -147475,14 +147491,14 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - project: *658 + enterprise: *620 + installation: *621 + organization: *622 + project: *659 repository: anyOf: - type: 'null' - - *622 + - *623 sender: *4 required: - action @@ -147583,11 +147599,11 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - organization: *621 - project: *658 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project: *659 + repository: *623 sender: *4 required: - action @@ -147666,11 +147682,11 @@ webhooks: type: string enum: - reopened - enterprise: *619 - installation: *620 - organization: *621 - project: *658 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + project: *659 + repository: *623 sender: *4 required: - action @@ -147751,9 +147767,9 @@ webhooks: type: string enum: - closed - installation: *620 - organization: *621 - projects_v2: &659 + installation: *621 + organization: *622 + projects_v2: &660 title: Projects v2 Project description: A projects v2 project type: object @@ -147901,9 +147917,9 @@ webhooks: type: string enum: - created - installation: *620 - organization: *621 - projects_v2: *659 + installation: *621 + organization: *622 + projects_v2: *660 sender: *4 required: - action @@ -147984,9 +148000,9 @@ webhooks: type: string enum: - deleted - installation: *620 - organization: *621 - projects_v2: *659 + installation: *621 + organization: *622 + projects_v2: *660 sender: *4 required: - action @@ -148107,9 +148123,9 @@ webhooks: type: string to: type: string - installation: *620 - organization: *621 - projects_v2: *659 + installation: *621 + organization: *622 + projects_v2: *660 sender: *4 required: - action @@ -148192,7 +148208,7 @@ webhooks: type: string enum: - archived - changes: &663 + changes: &664 type: object properties: archived_at: @@ -148208,9 +148224,9 @@ webhooks: - string - 'null' format: date-time - installation: *620 - organization: *621 - projects_v2_item: &660 + installation: *621 + organization: *622 + projects_v2_item: &661 title: Projects v2 Item description: An item belonging to a project type: object @@ -148349,9 +148365,9 @@ webhooks: - 'null' to: type: string - installation: *620 - organization: *621 - projects_v2_item: *660 + installation: *621 + organization: *622 + projects_v2_item: *661 sender: *4 required: - action @@ -148433,9 +148449,9 @@ webhooks: type: string enum: - created - installation: *620 - organization: *621 - projects_v2_item: *660 + installation: *621 + organization: *622 + projects_v2_item: *661 sender: *4 required: - action @@ -148516,9 +148532,9 @@ webhooks: type: string enum: - deleted - installation: *620 - organization: *621 - projects_v2_item: *660 + installation: *621 + organization: *622 + projects_v2_item: *661 sender: *4 required: - action @@ -148623,7 +148639,7 @@ webhooks: oneOf: - type: string - type: integer - - &661 + - &662 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -148643,7 +148659,7 @@ webhooks: required: - id - name - - &662 + - &663 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -148672,8 +148688,8 @@ webhooks: oneOf: - type: string - type: integer - - *661 - *662 + - *663 type: - 'null' - string @@ -148696,9 +148712,9 @@ webhooks: - 'null' required: - body - installation: *620 - organization: *621 - projects_v2_item: *660 + installation: *621 + organization: *622 + projects_v2_item: *661 sender: *4 required: - action @@ -148795,9 +148811,9 @@ webhooks: type: - string - 'null' - installation: *620 - organization: *621 - projects_v2_item: *660 + installation: *621 + organization: *622 + projects_v2_item: *661 sender: *4 required: - action @@ -148880,10 +148896,10 @@ webhooks: type: string enum: - restored - changes: *663 - installation: *620 - organization: *621 - projects_v2_item: *660 + changes: *664 + installation: *621 + organization: *622 + projects_v2_item: *661 sender: *4 required: - action @@ -148965,9 +148981,9 @@ webhooks: type: string enum: - reopened - installation: *620 - organization: *621 - projects_v2: *659 + installation: *621 + organization: *622 + projects_v2: *660 sender: *4 required: - action @@ -149048,9 +149064,9 @@ webhooks: type: string enum: - created - installation: *620 - organization: *621 - projects_v2_status_update: &664 + installation: *621 + organization: *622 + projects_v2_status_update: &665 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -149185,9 +149201,9 @@ webhooks: type: string enum: - deleted - installation: *620 - organization: *621 - projects_v2_status_update: *664 + installation: *621 + organization: *622 + projects_v2_status_update: *665 sender: *4 required: - action @@ -149333,9 +149349,9 @@ webhooks: - string - 'null' format: date - installation: *620 - organization: *621 - projects_v2_status_update: *664 + installation: *621 + organization: *622 + projects_v2_status_update: *665 sender: *4 required: - action @@ -149406,10 +149422,10 @@ webhooks: title: public event type: object properties: - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - repository @@ -149486,13 +149502,13 @@ webhooks: type: string enum: - assigned - assignee: *639 - enterprise: *619 - installation: *620 - number: &665 + assignee: *640 + enterprise: *620 + installation: *621 + number: &666 description: The pull request number. type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -151841,7 +151857,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -151923,11 +151939,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -154269,7 +154285,7 @@ webhooks: - draft reason: type: string - repository: *622 + repository: *623 sender: *4 required: - action @@ -154351,11 +154367,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -156697,7 +156713,7 @@ webhooks: - draft reason: type: string - repository: *622 + repository: *623 sender: *4 required: - action @@ -156779,13 +156795,13 @@ webhooks: type: string enum: - closed - enterprise: *619 - installation: *620 - number: *665 - organization: *621 - pull_request: &666 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 + pull_request: &667 allOf: - - *495 + - *496 - type: object properties: allow_auto_merge: @@ -156847,7 +156863,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *622 + repository: *623 sender: *4 required: - action @@ -156928,12 +156944,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *619 - installation: *620 - number: *665 - organization: *621 - pull_request: *666 - repository: *622 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 + pull_request: *667 + repository: *623 sender: *4 required: - action @@ -157013,11 +157029,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *619 - milestone: *393 - number: *665 - organization: *621 - pull_request: &667 + enterprise: *620 + milestone: *394 + number: *666 + organization: *622 + pull_request: &668 title: Pull Request type: object properties: @@ -159344,7 +159360,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -159423,11 +159439,11 @@ webhooks: type: string enum: - dequeued - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -161773,7 +161789,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *622 + repository: *623 sender: *4 required: - action @@ -161897,12 +161913,12 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - number: *665 - organization: *621 - pull_request: *666 - repository: *622 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 + pull_request: *667 + repository: *623 sender: *4 required: - action @@ -161982,11 +161998,11 @@ webhooks: type: string enum: - enqueued - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -164317,7 +164333,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -164397,11 +164413,11 @@ webhooks: type: string enum: - labeled - enterprise: *619 - installation: *620 - label: *638 - number: *665 - organization: *621 + enterprise: *620 + installation: *621 + label: *639 + number: *666 + organization: *622 pull_request: title: Pull Request type: object @@ -166749,7 +166765,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -166830,10 +166846,10 @@ webhooks: type: string enum: - locked - enterprise: *619 - installation: *620 - number: *665 - organization: *621 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 pull_request: title: Pull Request type: object @@ -169179,7 +169195,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -169259,12 +169275,12 @@ webhooks: type: string enum: - milestoned - enterprise: *619 - milestone: *393 - number: *665 - organization: *621 - pull_request: *667 - repository: *622 + enterprise: *620 + milestone: *394 + number: *666 + organization: *622 + pull_request: *668 + repository: *623 sender: *4 required: - action @@ -169343,12 +169359,12 @@ webhooks: type: string enum: - opened - enterprise: *619 - installation: *620 - number: *665 - organization: *621 - pull_request: *666 - repository: *622 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 + pull_request: *667 + repository: *623 sender: *4 required: - action @@ -169429,12 +169445,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *619 - installation: *620 - number: *665 - organization: *621 - pull_request: *666 - repository: *622 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 + pull_request: *667 + repository: *623 sender: *4 required: - action @@ -169514,12 +169530,12 @@ webhooks: type: string enum: - reopened - enterprise: *619 - installation: *620 - number: *665 - organization: *621 - pull_request: *666 - repository: *622 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 + pull_request: *667 + repository: *623 sender: *4 required: - action @@ -169894,9 +169910,9 @@ webhooks: - start_side - side - reactions - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: type: object properties: @@ -172126,7 +172142,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *622 + repository: *623 sender: *4 required: - action @@ -172206,7 +172222,7 @@ webhooks: type: string enum: - deleted - comment: &669 + comment: &670 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -172499,9 +172515,9 @@ webhooks: - start_side - side - reactions - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: type: object properties: @@ -174719,7 +174735,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *622 + repository: *623 sender: *4 required: - action @@ -174799,11 +174815,11 @@ webhooks: type: string enum: - edited - changes: *668 - comment: *669 - enterprise: *619 - installation: *620 - organization: *621 + changes: *669 + comment: *670 + enterprise: *620 + installation: *621 + organization: *622 pull_request: type: object properties: @@ -177024,7 +177040,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *622 + repository: *623 sender: *4 required: - action @@ -177105,9 +177121,9 @@ webhooks: type: string enum: - dismissed - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: title: Simple Pull Request type: object @@ -179340,7 +179356,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *622 + repository: *623 review: description: The review that was affected. type: object @@ -179586,9 +179602,9 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: title: Simple Pull Request type: object @@ -181702,8 +181718,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *622 - review: &670 + repository: *623 + review: &671 description: The review that was affected. type: object properties: @@ -181936,12 +181952,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: description: The pull request number. type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -184288,7 +184304,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 requested_reviewer: title: User type: @@ -184374,12 +184390,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: description: The pull request number. type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -186733,7 +186749,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 requested_team: title: Team description: Groups of organization members that gives permissions @@ -186928,12 +186944,12 @@ webhooks: type: string enum: - review_requested - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: description: The pull request number. type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -189282,7 +189298,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 requested_reviewer: title: User type: @@ -189369,12 +189385,12 @@ webhooks: type: string enum: - review_requested - enterprise: *619 - installation: *620 + enterprise: *620 + installation: *621 number: description: The pull request number. type: integer - organization: *621 + organization: *622 pull_request: title: Pull Request type: object @@ -191714,7 +191730,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 requested_team: title: Team description: Groups of organization members that gives permissions @@ -191898,9 +191914,9 @@ webhooks: type: string enum: - submitted - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: title: Simple Pull Request type: object @@ -194136,8 +194152,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *622 - review: *670 + repository: *623 + review: *671 sender: *4 required: - action @@ -194217,9 +194233,9 @@ webhooks: type: string enum: - resolved - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: title: Simple Pull Request type: object @@ -196350,7 +196366,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *622 + repository: *623 sender: *4 thread: type: object @@ -196742,9 +196758,9 @@ webhooks: type: string enum: - unresolved - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 pull_request: title: Simple Pull Request type: object @@ -198858,7 +198874,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *622 + repository: *623 sender: *4 thread: type: object @@ -199252,10 +199268,10 @@ webhooks: type: string before: type: string - enterprise: *619 - installation: *620 - number: *665 - organization: *621 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 pull_request: title: Pull Request type: object @@ -201590,7 +201606,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -201672,11 +201688,11 @@ webhooks: type: string enum: - unassigned - assignee: *671 - enterprise: *619 - installation: *620 - number: *665 - organization: *621 + assignee: *672 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 pull_request: title: Pull Request type: object @@ -204026,7 +204042,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -204105,11 +204121,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *619 - installation: *620 - label: *638 - number: *665 - organization: *621 + enterprise: *620 + installation: *621 + label: *639 + number: *666 + organization: *622 pull_request: title: Pull Request type: object @@ -206448,7 +206464,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -206529,10 +206545,10 @@ webhooks: type: string enum: - unlocked - enterprise: *619 - installation: *620 - number: *665 - organization: *621 + enterprise: *620 + installation: *621 + number: *666 + organization: *622 pull_request: title: Pull Request type: object @@ -208861,7 +208877,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *622 + repository: *623 sender: *4 required: - action @@ -209064,7 +209080,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *619 + enterprise: *620 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -209159,8 +209175,8 @@ webhooks: - url - author - committer - installation: *620 - organization: *621 + installation: *621 + organization: *622 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -209748,9 +209764,9 @@ webhooks: type: string enum: - published - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 registry_package: type: object properties: @@ -210227,7 +210243,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *653 + items: *654 summary: type: string tag_name: @@ -210283,7 +210299,7 @@ webhooks: - owner - package_version - registry - repository: *622 + repository: *623 sender: *4 required: - action @@ -210361,9 +210377,9 @@ webhooks: type: string enum: - updated - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 registry_package: type: object properties: @@ -210675,7 +210691,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *653 + items: *654 summary: type: string tag_name: @@ -210725,7 +210741,7 @@ webhooks: - owner - package_version - registry - repository: *622 + repository: *623 sender: *4 required: - action @@ -210802,10 +210818,10 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - release: &672 + enterprise: *620 + installation: *621 + organization: *622 + release: &673 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -211121,7 +211137,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *622 + repository: *623 sender: *4 required: - action @@ -211198,11 +211214,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - release: *672 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + release: *673 + repository: *623 sender: *4 required: - action @@ -211319,11 +211335,11 @@ webhooks: type: boolean required: - to - enterprise: *619 - installation: *620 - organization: *621 - release: *672 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + release: *673 + repository: *623 sender: *4 required: - action @@ -211401,9 +211417,9 @@ webhooks: type: string enum: - prereleased - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -211724,7 +211740,7 @@ webhooks: - string - 'null' format: uri - repository: *622 + repository: *623 sender: *4 required: - action @@ -211800,10 +211816,10 @@ webhooks: type: string enum: - published - enterprise: *619 - installation: *620 - organization: *621 - release: &673 + enterprise: *620 + installation: *621 + organization: *622 + release: &674 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -212121,7 +212137,7 @@ webhooks: - string - 'null' format: uri - repository: *622 + repository: *623 sender: *4 required: - action @@ -212197,11 +212213,11 @@ webhooks: type: string enum: - released - enterprise: *619 - installation: *620 - organization: *621 - release: *672 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + release: *673 + repository: *623 sender: *4 required: - action @@ -212277,11 +212293,11 @@ webhooks: type: string enum: - unpublished - enterprise: *619 - installation: *620 - organization: *621 - release: *673 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + release: *674 + repository: *623 sender: *4 required: - action @@ -212357,11 +212373,11 @@ webhooks: type: string enum: - published - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - repository_advisory: *551 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + repository_advisory: *552 sender: *4 required: - action @@ -212437,11 +212453,11 @@ webhooks: type: string enum: - reported - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - repository_advisory: *551 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + repository_advisory: *552 sender: *4 required: - action @@ -212517,10 +212533,10 @@ webhooks: type: string enum: - archived - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -212597,10 +212613,10 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -212678,10 +212694,10 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -212766,10 +212782,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -212884,10 +212900,10 @@ webhooks: - 'null' items: type: string - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -212959,10 +212975,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 status: type: string @@ -213043,10 +213059,10 @@ webhooks: type: string enum: - privatized - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -213123,10 +213139,10 @@ webhooks: type: string enum: - publicized - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -213220,10 +213236,10 @@ webhooks: - name required: - repository - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -213303,11 +213319,11 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - repository_ruleset: *225 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + repository_ruleset: *226 sender: *4 required: - action @@ -213385,11 +213401,11 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - repository_ruleset: *225 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + repository_ruleset: *226 sender: *4 required: - action @@ -213467,11 +213483,11 @@ webhooks: type: string enum: - edited - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - repository_ruleset: *225 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + repository_ruleset: *226 changes: type: object properties: @@ -213490,16 +213506,16 @@ webhooks: properties: added: type: array - items: *219 + items: *220 deleted: type: array - items: *219 + items: *220 updated: type: array items: type: object properties: - condition: *219 + condition: *220 changes: type: object properties: @@ -213532,16 +213548,16 @@ webhooks: properties: added: type: array - items: *224 + items: *225 deleted: type: array - items: *224 + items: *225 updated: type: array items: type: object properties: - rule: *224 + rule: *225 changes: type: object properties: @@ -213778,10 +213794,10 @@ webhooks: - from required: - owner - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -213859,10 +213875,10 @@ webhooks: type: string enum: - unarchived - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -213940,7 +213956,7 @@ webhooks: type: string enum: - create - alert: &674 + alert: &675 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -214064,10 +214080,10 @@ webhooks: type: string enum: - open - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -214277,10 +214293,10 @@ webhooks: type: string enum: - dismissed - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -214358,11 +214374,11 @@ webhooks: type: string enum: - reopen - alert: *674 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + alert: *675 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -214564,10 +214580,10 @@ webhooks: enum: - fixed - open - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -214645,7 +214661,7 @@ webhooks: type: string enum: - created - alert: &675 + alert: &676 type: object properties: number: *52 @@ -214755,10 +214771,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -214839,11 +214855,11 @@ webhooks: type: string enum: - created - alert: *675 - installation: *620 - location: *676 - organization: *621 - repository: *622 + alert: *676 + installation: *621 + location: *677 + organization: *622 + repository: *623 sender: *4 required: - location @@ -215081,11 +215097,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *675 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + alert: *676 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -215163,11 +215179,11 @@ webhooks: type: string enum: - reopened - alert: *675 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + alert: *676 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -215245,11 +215261,11 @@ webhooks: type: string enum: - resolved - alert: *675 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + alert: *676 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -215327,11 +215343,11 @@ webhooks: type: string enum: - validated - alert: *675 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + alert: *676 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -215461,10 +215477,10 @@ webhooks: - organization - enterprise - - repository: *622 - enterprise: *619 - installation: *620 - organization: *621 + repository: *623 + enterprise: *620 + installation: *621 + organization: *622 sender: *4 required: - action @@ -215542,11 +215558,11 @@ webhooks: type: string enum: - published - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - security_advisory: &677 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + security_advisory: &678 description: The details of the security advisory, including summary, description, and severity. type: object @@ -215732,11 +215748,11 @@ webhooks: type: string enum: - updated - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 - security_advisory: *677 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 + security_advisory: *678 sender: *4 required: - action @@ -215809,10 +215825,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -215998,11 +216014,11 @@ webhooks: from: type: object properties: - security_and_analysis: *218 - enterprise: *619 - installation: *620 - organization: *621 - repository: *272 + security_and_analysis: *219 + enterprise: *620 + installation: *621 + organization: *622 + repository: *273 sender: *4 required: - changes @@ -216080,12 +216096,12 @@ webhooks: type: string enum: - cancelled - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - sponsorship: &678 + sponsorship: &679 type: object properties: created_at: @@ -216390,12 +216406,12 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - sponsorship: *678 + sponsorship: *679 required: - action - sponsorship @@ -216483,12 +216499,12 @@ webhooks: type: string required: - from - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - sponsorship: *678 + sponsorship: *679 required: - action - changes @@ -216565,17 +216581,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &679 + effective_date: &680 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: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - sponsorship: *678 + sponsorship: *679 required: - action - sponsorship @@ -216649,7 +216665,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &680 + changes: &681 type: object properties: tier: @@ -216693,13 +216709,13 @@ webhooks: - from required: - tier - effective_date: *679 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + effective_date: *680 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - sponsorship: *678 + sponsorship: *679 required: - action - changes @@ -216776,13 +216792,13 @@ webhooks: type: string enum: - tier_changed - changes: *680 - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + changes: *681 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - sponsorship: *678 + sponsorship: *679 required: - action - changes @@ -216856,10 +216872,10 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -216943,10 +216959,10 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -217380,15 +217396,15 @@ webhooks: type: - string - 'null' - enterprise: *619 + enterprise: *620 id: description: The unique identifier of the status. type: integer - installation: *620 + installation: *621 name: type: string - organization: *621 - repository: *622 + organization: *622 + repository: *623 sender: *4 sha: description: The Commit SHA. @@ -217504,9 +217520,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *74 - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -217596,9 +217612,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *74 - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -217688,9 +217704,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *74 - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -217780,9 +217796,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *74 - installation: *620 - organization: *621 - repository: *622 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -217859,12 +217875,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - team: &681 + team: &682 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -218057,9 +218073,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 repository: title: Repository description: A git repository @@ -218529,7 +218545,7 @@ webhooks: - topics - visibility sender: *4 - team: *681 + team: *682 required: - action - team @@ -218605,9 +218621,9 @@ webhooks: type: string enum: - created - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 repository: title: Repository description: A git repository @@ -219077,7 +219093,7 @@ webhooks: - topics - visibility sender: *4 - team: *681 + team: *682 required: - action - team @@ -219154,9 +219170,9 @@ webhooks: type: string enum: - deleted - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 repository: title: Repository description: A git repository @@ -219626,7 +219642,7 @@ webhooks: - topics - visibility sender: *4 - team: *681 + team: *682 required: - action - team @@ -219770,9 +219786,9 @@ webhooks: - from required: - permissions - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 repository: title: Repository description: A git repository @@ -220242,7 +220258,7 @@ webhooks: - topics - visibility sender: *4 - team: *681 + team: *682 required: - action - changes @@ -220320,9 +220336,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *619 - installation: *620 - organization: *621 + enterprise: *620 + installation: *621 + organization: *622 repository: title: Repository description: A git repository @@ -220792,7 +220808,7 @@ webhooks: - topics - visibility sender: *4 - team: *681 + team: *682 required: - action - team @@ -220868,10 +220884,10 @@ webhooks: type: string enum: - started - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 required: - action @@ -220944,17 +220960,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *619 + enterprise: *620 inputs: type: - object - 'null' additionalProperties: true - installation: *620 - organization: *621 + installation: *621 + organization: *622 ref: type: string - repository: *622 + repository: *623 sender: *4 workflow: type: string @@ -221036,10 +221052,10 @@ webhooks: type: string enum: - completed - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 workflow_job: allOf: @@ -221295,7 +221311,7 @@ webhooks: type: string required: - conclusion - deployment: *413 + deployment: *414 required: - action - repository @@ -221374,10 +221390,10 @@ webhooks: type: string enum: - in_progress - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 workflow_job: allOf: @@ -221659,7 +221675,7 @@ webhooks: required: - status - steps - deployment: *413 + deployment: *414 required: - action - repository @@ -221738,10 +221754,10 @@ webhooks: type: string enum: - queued - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 workflow_job: type: object @@ -221887,7 +221903,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *413 + deployment: *414 required: - action - repository @@ -221966,10 +221982,10 @@ webhooks: type: string enum: - waiting - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 workflow_job: type: object @@ -222116,7 +222132,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *413 + deployment: *414 required: - action - repository @@ -222196,12 +222212,12 @@ webhooks: type: string enum: - completed - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - workflow: *634 + workflow: *635 workflow_run: title: Workflow Run type: object @@ -223220,12 +223236,12 @@ webhooks: type: string enum: - in_progress - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - workflow: *634 + workflow: *635 workflow_run: title: Workflow Run type: object @@ -224229,12 +224245,12 @@ webhooks: type: string enum: - requested - enterprise: *619 - installation: *620 - organization: *621 - repository: *622 + enterprise: *620 + installation: *621 + organization: *622 + repository: *623 sender: *4 - workflow: *634 + workflow: *635 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 5d3f18cd59..f5cf56c3ca 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -3580,6 +3580,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -3650,6 +3651,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -3660,6 +3662,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -132371,6 +132374,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -132441,6 +132445,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -132451,6 +132456,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -161684,6 +161690,22 @@ "type": "string", "format": "date-time" } + }, + { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } } ], "responses": { @@ -163924,6 +163946,22 @@ "type": "string", "format": "date-time" } + }, + { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } } ], "responses": { @@ -311100,7 +311138,7 @@ }, "put": { "summary": "Create or update a repository secret", - "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/enterprise-cloud@latest//rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/enterprise-cloud@latest//rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -311200,7 +311238,7 @@ }, "delete": { "summary": "Delete a repository secret", - "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -349131,7 +349169,7 @@ }, "post": { "summary": "Create a custom deployment protection rule on an environment", - "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/enterprise-cloud@latest//actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", "tags": [ "repos" ], @@ -366299,6 +366337,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -366369,6 +366408,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -366379,6 +366419,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 096daa8a00..26d36ece07 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -905,7 +905,7 @@ paths: - subscriptions_url - type - url - type: &326 + type: &327 type: string description: The type of credit the user is receiving. enum: @@ -1071,7 +1071,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &637 + - &638 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1692,6 +1692,7 @@ paths: id: description: Unique identifier of the webhook delivery. type: integer + format: int64 examples: - 42 guid: @@ -1746,6 +1747,7 @@ paths: type: - integer - 'null' + format: int64 examples: - 123 repository_id: @@ -1753,6 +1755,7 @@ paths: type: - integer - 'null' + format: int64 examples: - 123 throttled_at: @@ -1808,7 +1811,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &647 + schema: &648 title: Scim Error description: Scim Error type: object @@ -11645,7 +11648,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &440 + instances_url: &441 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -11681,7 +11684,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &441 + dismissed_reason: &442 type: - string - 'null' @@ -11692,14 +11695,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &442 + dismissed_comment: &443 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &443 + rule: &444 type: object properties: id: @@ -11760,7 +11763,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &444 + tool: &445 type: object properties: name: *85 @@ -11771,15 +11774,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *86 - most_recent_instance: &445 + most_recent_instance: &446 type: object properties: - ref: &438 + ref: &439 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &455 + analysis_key: &456 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -11790,7 +11793,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &456 + category: &457 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -15278,7 +15281,7 @@ paths: - direct - transitive - - security_advisory: &492 + security_advisory: &493 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -15514,7 +15517,7 @@ paths: dismissal. maxLength: 280 fixed_at: *106 - auto_dismissed_at: &493 + auto_dismissed_at: &494 type: - string - 'null' @@ -16012,7 +16015,7 @@ paths: - name - created_on examples: - default: &335 + default: &336 value: total_count: 2 network_configurations: @@ -16235,7 +16238,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *38 - - &336 + - &337 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -16247,7 +16250,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &338 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -16286,7 +16289,7 @@ paths: - subnet_id - region examples: - default: &338 + default: &339 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -16609,7 +16612,7 @@ paths: required: true content: application/json: - schema: &308 + schema: &309 title: Custom Property Set Payload description: Custom property set payload type: object @@ -16977,7 +16980,7 @@ paths: type: object description: A repository rule. oneOf: - - &599 + - &600 title: creation description: Only allow users with bypass permission to create matching refs. @@ -16989,7 +16992,7 @@ paths: type: string enum: - creation - - &600 + - &601 title: update description: Only allow users with bypass permission to update matching refs. @@ -17010,7 +17013,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &602 + - &603 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -17022,7 +17025,7 @@ paths: type: string enum: - deletion - - &603 + - &604 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -17034,7 +17037,7 @@ paths: type: string enum: - required_linear_history - - &604 + - &605 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -17110,7 +17113,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &605 + - &606 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -17134,7 +17137,7 @@ paths: type: string required: - required_deployment_environments - - &606 + - &607 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -17146,7 +17149,7 @@ paths: type: string enum: - required_signatures - - &607 + - &608 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -17197,7 +17200,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &608 + - &609 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -17244,7 +17247,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &609 + - &610 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -17256,7 +17259,7 @@ paths: type: string enum: - non_fast_forward - - &610 + - &611 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -17292,7 +17295,7 @@ paths: required: - operator - pattern - - &611 + - &612 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -17328,7 +17331,7 @@ paths: required: - operator - pattern - - &612 + - &613 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -17364,7 +17367,7 @@ paths: required: - operator - pattern - - &613 + - &614 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -17400,7 +17403,7 @@ paths: required: - operator - pattern - - &614 + - &615 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -17526,7 +17529,7 @@ paths: maximum: 100 required: - max_file_size - - &615 + - &616 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -17575,7 +17578,7 @@ paths: - repository_id required: - workflows - - &616 + - &617 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -17732,7 +17735,7 @@ paths: conditions: anyOf: - *117 - - &313 + - &314 title: Organization ruleset conditions type: object description: |- @@ -18016,7 +18019,7 @@ paths: type: string format: date-time examples: - default: &315 + default: &316 value: - version_id: 3 actor: @@ -18069,7 +18072,7 @@ paths: description: Response content: application/json: - schema: &316 + schema: &317 allOf: - *127 - type: object @@ -18124,7 +18127,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *38 - - &317 + - &318 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -18135,7 +18138,7 @@ paths: enum: - open - resolved - - &318 + - &319 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -18145,7 +18148,7 @@ paths: required: false schema: type: string - - &319 + - &320 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -18154,7 +18157,7 @@ paths: required: false schema: type: string - - &320 + - &321 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. @@ -18170,7 +18173,7 @@ paths: - *17 - *82 - *83 - - &321 + - &322 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -18179,7 +18182,7 @@ paths: required: false schema: type: string - - &322 + - &323 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -18188,7 +18191,7 @@ paths: schema: type: boolean default: false - - &323 + - &324 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -18204,7 +18207,7 @@ paths: application/json: schema: type: array - items: &324 + items: &325 type: object properties: number: *96 @@ -18220,14 +18223,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &629 + state: &630 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: &630 + resolution: &631 type: - string - 'null' @@ -18332,7 +18335,7 @@ paths: description: A boolean value representing whether or not alert is base64 encoded examples: - default: &325 + default: &326 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -18595,7 +18598,7 @@ paths: description: Response content: application/json: - schema: &327 + schema: &328 type: object properties: total_minutes_used: @@ -18665,7 +18668,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &328 + default: &329 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -18703,7 +18706,7 @@ paths: description: Success content: application/json: - schema: &329 + schema: &330 type: object properties: total_advanced_security_committers: @@ -18766,7 +18769,7 @@ paths: required: - repositories examples: - default: &330 + default: &331 value: total_advanced_security_committers: 2 total_count: 2 @@ -19005,7 +19008,7 @@ paths: description: Response content: application/json: - schema: &331 + schema: &332 type: object properties: total_gigabytes_bandwidth_used: @@ -19023,7 +19026,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &332 + default: &333 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -19055,7 +19058,7 @@ paths: description: Response content: application/json: - schema: &333 + schema: &334 type: object properties: days_left_in_billing_cycle: @@ -19073,7 +19076,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &334 + default: &335 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -19702,7 +19705,7 @@ paths: milestone: anyOf: - type: 'null' - - &480 + - &481 title: Milestone description: A collection of related issues and pull requests. @@ -19966,7 +19969,7 @@ paths: - author_association - created_at - updated_at - comment: &539 + comment: &540 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -20541,7 +20544,7 @@ paths: url: type: string format: uri - user: &686 + user: &687 title: Public User description: Public User type: object @@ -23898,14 +23901,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &358 + - &359 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &359 + - &360 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -23976,7 +23979,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &372 + '301': &373 description: Moved permanently content: application/json: @@ -23998,7 +24001,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &568 + - &569 name: all description: If `true`, show notifications marked as read. in: query @@ -24006,7 +24009,7 @@ paths: schema: type: boolean default: false - - &569 + - &570 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -24016,7 +24019,7 @@ paths: type: boolean default: false - *138 - - &570 + - &571 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -24387,7 +24390,7 @@ paths: type: boolean examples: - false - security_and_analysis: &310 + security_and_analysis: &311 type: - object - 'null' @@ -24542,7 +24545,7 @@ paths: - url - subscription_url examples: - default: &571 + default: &572 value: - id: '1' repository: @@ -25095,7 +25098,7 @@ paths: type: array items: *56 examples: - default: &703 + default: &704 value: - login: github id: 1 @@ -26098,7 +26101,7 @@ paths: type: integer repository_cache_usages: type: array - items: &377 + items: &378 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -26771,7 +26774,7 @@ paths: type: array items: *61 examples: - default: &697 + default: &698 value: total_count: 1 repositories: @@ -27594,7 +27597,7 @@ paths: type: array items: *190 examples: - default: &689 + default: &690 value: total_count: 1 repositories: @@ -28637,7 +28640,7 @@ paths: description: Response content: application/json: - schema: &397 + schema: &398 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -28672,7 +28675,7 @@ paths: - key_id - key examples: - default: &398 + default: &399 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29085,7 +29088,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *164 - - &382 + - &383 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -29703,7 +29706,7 @@ paths: bundle_url: type: string examples: - default: &411 + default: &412 value: attestations: - bundle: @@ -30050,7 +30053,7 @@ paths: application/json: schema: type: array - items: &428 + items: &429 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -30181,7 +30184,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &429 + default: &430 value: - id: 21 number: 42 @@ -30294,7 +30297,7 @@ paths: be returned. in: query required: false - schema: &439 + schema: &440 type: string description: Severity of a code scanning alert. enum: @@ -31299,7 +31302,7 @@ paths: machine: anyOf: - type: 'null' - - &468 + - &469 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -32251,7 +32254,7 @@ paths: - updated_at - visibility examples: - default: &469 + default: &470 value: total_count: 2 secrets: @@ -32289,7 +32292,7 @@ paths: description: Response content: application/json: - schema: &470 + schema: &471 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -32324,7 +32327,7 @@ paths: - key_id - key examples: - default: &471 + default: &472 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32356,7 +32359,7 @@ paths: application/json: schema: *231 examples: - default: &473 + default: &474 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -34125,7 +34128,7 @@ paths: description: Response content: application/json: - schema: &496 + schema: &497 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -34144,7 +34147,7 @@ paths: - key_id - key examples: - default: &497 + default: &498 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34726,7 +34729,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &354 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -34816,7 +34819,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &354 + default: &355 value: group_id: '123' group_name: Octocat admins @@ -34871,7 +34874,7 @@ paths: description: Response content: application/json: - schema: &351 + schema: &352 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -34911,7 +34914,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &352 + default: &353 value: groups: - group_id: '123' @@ -35076,7 +35079,7 @@ paths: application/json: schema: type: array - items: &311 + items: &312 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -35090,7 +35093,7 @@ paths: - name - description examples: - default: &312 + default: &313 value: - name: add_assignee description: Assign or remove a user @@ -36240,7 +36243,7 @@ paths: application/json: schema: *20 examples: - default: &535 + default: &536 value: id: 1 account: @@ -36468,7 +36471,7 @@ paths: required: true content: application/json: - schema: &536 + schema: &537 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -37088,7 +37091,7 @@ paths: application/json: schema: *281 examples: - default: &467 + default: &468 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -38326,7 +38329,7 @@ paths: parameters: - *164 - *287 - - &702 + - &703 name: repo_name description: repo_name parameter in: path @@ -39650,7 +39653,7 @@ paths: - nuget - container - *164 - - &704 + - &705 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -39691,7 +39694,7 @@ paths: default: *293 '403': *27 '401': *23 - '400': &706 + '400': &707 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -40201,6 +40204,18 @@ paths: schema: type: string format: date-time + - &305 + name: token_id + description: The ID of the token + in: query + required: false + schema: + type: array + maxItems: 50 + items: + type: string + examples: + - token_id[]=1,token_id[]=2 responses: '500': *95 '422': *15 @@ -40541,6 +40556,7 @@ paths: - *302 - *303 - *304 + - *305 responses: '500': *95 '422': *15 @@ -40868,7 +40884,7 @@ paths: type: integer configurations: type: array - items: &305 + items: &306 title: Organization private registry description: Private registry configuration for an organization type: object @@ -41080,7 +41096,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &306 + org-private-registry-with-selected-visibility: &307 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -41182,9 +41198,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *305 + schema: *306 examples: - default: *306 + default: *307 '404': *6 x-github: githubCloudOnly: false @@ -41335,7 +41351,7 @@ paths: application/json: schema: type: array - items: &307 + items: &308 title: Project description: Projects are a way to organize columns and cards of work. @@ -41517,7 +41533,7 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: default: value: @@ -41555,7 +41571,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &369 + '410': &370 description: Gone content: application/json: @@ -41717,7 +41733,7 @@ paths: required: true content: application/json: - schema: *308 + schema: *309 examples: default: value: @@ -41823,7 +41839,7 @@ paths: - octocat/Hello-World properties: type: array - items: &309 + items: &310 title: Custom Property Value description: Custom property name and associated value type: object @@ -41913,7 +41929,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *309 + items: *310 required: - repository_names - properties @@ -42310,7 +42326,7 @@ paths: description: Response content: application/json: - schema: &371 + schema: &372 title: Full Repository description: Full Repository type: object @@ -42775,7 +42791,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &486 + code_of_conduct: &487 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -42805,7 +42821,7 @@ paths: - key - name - html_url - security_and_analysis: *310 + security_and_analysis: *311 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -42889,7 +42905,7 @@ paths: - network_count - subscribers_count examples: - default: &373 + default: &374 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43415,9 +43431,9 @@ paths: application/json: schema: type: array - items: *311 + items: *312 examples: - default: *312 + default: *313 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -43442,7 +43458,7 @@ paths: - *164 - *17 - *19 - - &617 + - &618 name: targets description: | A comma-separated list of rule targets to filter by. @@ -43534,7 +43550,7 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *122 - conditions: *313 + conditions: *314 rules: type: array description: An array of rules within the ruleset. @@ -43578,7 +43594,7 @@ paths: application/json: schema: *124 examples: - default: &314 + default: &315 value: id: 21 name: super cool ruleset @@ -43633,7 +43649,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *164 - - &618 + - &619 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -43645,14 +43661,14 @@ paths: x-multi-segment: true - *219 - *215 - - &619 + - &620 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &620 + - &621 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -43672,7 +43688,7 @@ paths: description: Response content: application/json: - schema: &621 + schema: &622 title: Rule Suites description: Response type: array @@ -43728,7 +43744,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &622 + default: &623 value: - id: 21 actor_id: 12 @@ -43772,7 +43788,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *164 - - &623 + - &624 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -43788,7 +43804,7 @@ paths: description: Response content: application/json: - schema: &624 + schema: &625 title: Rule Suite description: Response type: object @@ -43895,7 +43911,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &625 + default: &626 value: id: 21 actor_id: 12 @@ -43970,7 +43986,7 @@ paths: application/json: schema: *124 examples: - default: *314 + default: *315 '404': *6 '500': *95 put: @@ -44019,7 +44035,7 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *122 - conditions: *313 + conditions: *314 rules: description: An array of rules within the ruleset. type: array @@ -44060,7 +44076,7 @@ paths: application/json: schema: *124 examples: - default: *314 + default: *315 '404': *6 '500': *95 delete: @@ -44119,7 +44135,7 @@ paths: type: array items: *127 examples: - default: *315 + default: *316 '404': *6 '500': *95 x-github: @@ -44156,7 +44172,7 @@ paths: description: Response content: application/json: - schema: *316 + schema: *317 examples: default: value: @@ -44219,14 +44235,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *164 - - *317 - *318 - *319 - *320 + - *321 - *84 - *19 - *17 - - &627 + - &628 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -44236,7 +44252,7 @@ paths: required: false schema: type: string - - &628 + - &629 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -44246,9 +44262,9 @@ paths: required: false schema: type: string - - *321 - *322 - *323 + - *324 responses: '200': description: Response @@ -44256,9 +44272,9 @@ paths: application/json: schema: type: array - items: *324 + items: *325 examples: - default: *325 + default: *326 headers: Link: *37 '404': *6 @@ -44328,7 +44344,7 @@ paths: application/json: schema: type: array - items: &635 + items: &636 description: A repository security advisory. type: object properties: @@ -44572,7 +44588,7 @@ paths: login: type: string description: The username of the user credited. - type: *326 + type: *327 credits_detailed: type: - array @@ -44583,7 +44599,7 @@ paths: type: object properties: user: *4 - type: *326 + type: *327 state: type: string description: The state of the user's acceptance of the @@ -44647,7 +44663,7 @@ paths: - private_fork additionalProperties: false examples: - default: &636 + default: &637 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -45121,9 +45137,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *328 + default: *329 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45155,9 +45171,9 @@ paths: description: Success content: application/json: - schema: *329 + schema: *330 examples: - default: *330 + default: *331 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45185,9 +45201,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: *332 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45215,9 +45231,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45257,7 +45273,7 @@ paths: type: array items: *107 examples: - default: *335 + default: *336 headers: Link: *37 x-github: @@ -45458,15 +45474,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *164 - - *336 + - *337 responses: '200': description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 headers: Link: *37 x-github: @@ -45504,7 +45520,7 @@ paths: description: Response content: application/json: - schema: &360 + schema: &361 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -45556,7 +45572,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &361 + default: &362 value: groups: - group_id: '123' @@ -45837,7 +45853,7 @@ paths: description: Response content: application/json: - schema: &339 + schema: &340 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -46217,7 +46233,7 @@ paths: - repos_count - organization examples: - default: &340 + default: &341 value: id: 1 node_id: MDQ6VGVhbTE= @@ -46294,9 +46310,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '404': *6 x-github: githubCloudOnly: false @@ -46381,16 +46397,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '201': description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '404': *6 '422': *15 '403': *27 @@ -46460,7 +46476,7 @@ paths: application/json: schema: type: array - items: &341 + items: &342 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -46571,7 +46587,7 @@ paths: - updated_at - url examples: - default: &676 + default: &677 value: - author: login: octocat @@ -46680,9 +46696,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: &342 + default: &343 value: author: login: octocat @@ -46756,7 +46772,7 @@ paths: parameters: - *164 - *289 - - &343 + - &344 name: discussion_number description: The number that identifies the discussion. in: path @@ -46768,9 +46784,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: *342 + default: *343 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46794,7 +46810,7 @@ paths: parameters: - *164 - *289 - - *343 + - *344 requestBody: required: false content: @@ -46817,9 +46833,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: &677 + default: &678 value: author: login: octocat @@ -46891,7 +46907,7 @@ paths: parameters: - *164 - *289 - - *343 + - *344 responses: '204': description: Response @@ -46919,7 +46935,7 @@ paths: parameters: - *164 - *289 - - *343 + - *344 - *84 - *17 - *19 @@ -46930,7 +46946,7 @@ paths: application/json: schema: type: array - items: &344 + items: &345 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -47010,7 +47026,7 @@ paths: - updated_at - url examples: - default: &678 + default: &679 value: - author: login: octocat @@ -47080,7 +47096,7 @@ paths: parameters: - *164 - *289 - - *343 + - *344 requestBody: required: true content: @@ -47102,9 +47118,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: &345 + default: &346 value: author: login: octocat @@ -47172,8 +47188,8 @@ paths: parameters: - *164 - *289 - - *343 - - &346 + - *344 + - &347 name: comment_number description: The number that identifies the comment. in: path @@ -47185,9 +47201,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *345 + default: *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47211,8 +47227,8 @@ paths: parameters: - *164 - *289 - - *343 - - *346 + - *344 + - *347 requestBody: required: true content: @@ -47234,9 +47250,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: &679 + default: &680 value: author: login: octocat @@ -47302,8 +47318,8 @@ paths: parameters: - *164 - *289 - - *343 - - *346 + - *344 + - *347 responses: '204': description: Response @@ -47331,8 +47347,8 @@ paths: parameters: - *164 - *289 - - *343 - - *346 + - *344 + - *347 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -47358,7 +47374,7 @@ paths: application/json: schema: type: array - items: &347 + items: &348 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -47402,7 +47418,7 @@ paths: - content - created_at examples: - default: &349 + default: &350 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -47454,8 +47470,8 @@ paths: parameters: - *164 - *289 - - *343 - - *346 + - *344 + - *347 requestBody: required: true content: @@ -47488,9 +47504,9 @@ paths: team discussion comment content: application/json: - schema: *347 + schema: *348 examples: - default: &348 + default: &349 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -47519,9 +47535,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47546,9 +47562,9 @@ paths: parameters: - *164 - *289 - - *343 - - *346 - - &350 + - *344 + - *347 + - &351 name: reaction_id description: The unique identifier of the reaction. in: path @@ -47582,7 +47598,7 @@ paths: parameters: - *164 - *289 - - *343 + - *344 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -47608,9 +47624,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 x-github: @@ -47638,7 +47654,7 @@ paths: parameters: - *164 - *289 - - *343 + - *344 requestBody: required: true content: @@ -47670,16 +47686,16 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '201': description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47704,8 +47720,8 @@ paths: parameters: - *164 - *289 - - *343 - - *350 + - *344 + - *351 responses: '204': description: Response @@ -47735,9 +47751,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *352 examples: - default: *352 + default: *353 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -47781,9 +47797,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -47924,7 +47940,7 @@ paths: description: Response content: application/json: - schema: &355 + schema: &356 title: Team Membership description: Team Membership type: object @@ -47952,7 +47968,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &680 + response-if-user-is-a-team-maintainer: &681 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -48015,9 +48031,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *356 examples: - response-if-users-membership-with-team-is-now-pending: &681 + response-if-users-membership-with-team-is-now-pending: &682 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -48090,7 +48106,7 @@ paths: application/json: schema: type: array - items: &356 + items: &357 title: Team Project description: A team's access to a project. type: object @@ -48159,7 +48175,7 @@ paths: - updated_at - permissions examples: - default: &682 + default: &683 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -48224,7 +48240,7 @@ paths: parameters: - *164 - *289 - - &357 + - &358 name: project_id description: The unique identifier of the project. in: path @@ -48236,9 +48252,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: - default: &683 + default: &684 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -48302,7 +48318,7 @@ paths: parameters: - *164 - *289 - - *357 + - *358 requestBody: required: false content: @@ -48371,7 +48387,7 @@ paths: parameters: - *164 - *289 - - *357 + - *358 responses: '204': description: Response @@ -48442,14 +48458,14 @@ paths: parameters: - *164 - *289 - - *358 - *359 + - *360 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &684 + schema: &685 title: Team Repository description: A team's access to a repository. type: object @@ -49092,8 +49108,8 @@ paths: parameters: - *164 - *289 - - *358 - *359 + - *360 requestBody: required: false content: @@ -49140,8 +49156,8 @@ paths: parameters: - *164 - *289 - - *358 - *359 + - *360 responses: '204': description: Response @@ -49174,9 +49190,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *361 + default: *362 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -49242,7 +49258,7 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: default: value: @@ -49287,7 +49303,7 @@ paths: type: array items: *277 examples: - response-if-child-teams-exist: &685 + response-if-child-teams-exist: &686 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -49414,7 +49430,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#get-a-project-card parameters: - - &362 + - &363 name: card_id description: The unique identifier of the card. in: path @@ -49426,7 +49442,7 @@ paths: description: Response content: application/json: - schema: &363 + schema: &364 title: Project Card description: Project cards represent a scope of work. type: object @@ -49501,7 +49517,7 @@ paths: - created_at - updated_at examples: - default: &364 + default: &365 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -49557,7 +49573,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#update-an-existing-project-card parameters: - - *362 + - *363 requestBody: required: false content: @@ -49587,9 +49603,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *364 examples: - default: *364 + default: *365 '304': *35 '403': *27 '401': *23 @@ -49616,7 +49632,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#delete-a-project-card parameters: - - *362 + - *363 responses: '204': description: Response @@ -49660,7 +49676,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#move-a-project-card parameters: - - *362 + - *363 requestBody: required: true content: @@ -49773,7 +49789,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#get-a-project-column parameters: - - &365 + - &366 name: column_id description: The unique identifier of the column. in: path @@ -49785,7 +49801,7 @@ paths: description: Response content: application/json: - schema: &366 + schema: &367 title: Project Column description: Project columns contain cards of work. type: object @@ -49839,7 +49855,7 @@ paths: - created_at - updated_at examples: - default: &367 + default: &368 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -49874,7 +49890,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#update-an-existing-project-column parameters: - - *365 + - *366 requestBody: required: true content: @@ -49899,9 +49915,9 @@ paths: description: Response content: application/json: - schema: *366 + schema: *367 examples: - default: *367 + default: *368 '304': *35 '403': *27 '401': *23 @@ -49926,7 +49942,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#delete-a-project-column parameters: - - *365 + - *366 responses: '204': description: Response @@ -49955,7 +49971,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#list-project-cards parameters: - - *365 + - *366 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -49976,7 +49992,7 @@ paths: application/json: schema: type: array - items: *363 + items: *364 examples: default: value: @@ -50035,7 +50051,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#create-a-project-card parameters: - - *365 + - *366 requestBody: required: true content: @@ -50079,9 +50095,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *364 examples: - default: *364 + default: *365 '304': *35 '403': *27 '401': *23 @@ -50137,7 +50153,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#move-a-project-column parameters: - - *365 + - *366 requestBody: required: true content: @@ -50198,15 +50214,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-a-project parameters: - - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &368 + default: &369 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -50263,7 +50279,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#update-a-project parameters: - - *357 + - *358 requestBody: required: false content: @@ -50312,9 +50328,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *368 + default: *369 '404': description: Not Found if the authenticated user does not have access to the project @@ -50335,7 +50351,7 @@ paths: items: type: string '401': *23 - '410': *369 + '410': *370 '422': *7 x-github: githubCloudOnly: false @@ -50358,7 +50374,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#delete-a-project parameters: - - *357 + - *358 responses: '204': description: Delete Success @@ -50379,7 +50395,7 @@ paths: items: type: string '401': *23 - '410': *369 + '410': *370 '404': *6 x-github: githubCloudOnly: false @@ -50403,7 +50419,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#list-project-collaborators parameters: - - *357 + - *358 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -50460,7 +50476,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#add-project-collaborator parameters: - - *357 + - *358 - *212 requestBody: required: false @@ -50515,7 +50531,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *357 + - *358 - *212 responses: '204': @@ -50547,7 +50563,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *357 + - *358 - *212 responses: '200': @@ -50618,7 +50634,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#list-project-columns parameters: - - *357 + - *358 - *17 - *19 responses: @@ -50628,7 +50644,7 @@ paths: application/json: schema: type: array - items: *366 + items: *367 examples: default: value: @@ -50666,7 +50682,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#create-a-project-column parameters: - - *357 + - *358 requestBody: required: true content: @@ -50690,7 +50706,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *367 examples: default: value: @@ -50754,7 +50770,7 @@ paths: resources: type: object properties: - core: &370 + core: &371 title: Rate Limit type: object properties: @@ -50771,20 +50787,20 @@ paths: - remaining - reset - used - graphql: *370 - search: *370 - code_search: *370 - source_import: *370 - integration_manifest: *370 - code_scanning_upload: *370 - actions_runner_registration: *370 - scim: *370 - dependency_snapshots: *370 - code_scanning_autofix: *370 + graphql: *371 + search: *371 + code_search: *371 + source_import: *371 + integration_manifest: *371 + code_scanning_upload: *371 + actions_runner_registration: *371 + scim: *371 + dependency_snapshots: *371 + code_scanning_autofix: *371 required: - core - search - rate: *370 + rate: *371 required: - rate - resources @@ -50888,14 +50904,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *371 + schema: *372 examples: default-response: summary: Default response @@ -51400,7 +51416,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *372 + '301': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51418,8 +51434,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: false content: @@ -51666,10 +51682,10 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *373 - '307': &374 + default: *374 + '307': &375 description: Temporary Redirect content: application/json: @@ -51698,8 +51714,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -51721,7 +51737,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *374 + '307': *375 '404': *6 x-github: githubCloudOnly: false @@ -51744,11 +51760,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *358 - *359 + - *360 - *17 - *19 - - &389 + - &390 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -51771,7 +51787,7 @@ paths: type: integer artifacts: type: array - items: &375 + items: &376 title: Artifact description: An artifact type: object @@ -51866,7 +51882,7 @@ paths: - expires_at - updated_at examples: - default: &390 + default: &391 value: total_count: 2 artifacts: @@ -51927,9 +51943,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *358 - *359 - - &376 + - *360 + - &377 name: artifact_id description: The unique identifier of the artifact. in: path @@ -51941,7 +51957,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *376 examples: default: value: @@ -51979,9 +51995,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *358 - *359 - - *376 + - *360 + - *377 responses: '204': description: Response @@ -52005,9 +52021,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *358 - *359 - - *376 + - *360 + - *377 - name: archive_format in: path required: true @@ -52021,7 +52037,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52044,14 +52060,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *377 + schema: *378 examples: default: value: @@ -52077,11 +52093,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *358 - *359 + - *360 - *17 - *19 - - &378 + - &379 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -52115,7 +52131,7 @@ paths: description: Response content: application/json: - schema: &379 + schema: &380 title: Repository actions caches description: Repository actions caches type: object @@ -52165,7 +52181,7 @@ paths: - total_count - actions_caches examples: - default: &380 + default: &381 value: total_count: 1 actions_caches: @@ -52197,23 +52213,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *358 - *359 + - *360 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *378 + - *379 responses: '200': description: Response content: application/json: - schema: *379 + schema: *380 examples: - default: *380 + default: *381 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52233,8 +52249,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *358 - *359 + - *360 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -52265,9 +52281,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *358 - *359 - - &381 + - *360 + - &382 name: job_id description: The unique identifier of the job. in: path @@ -52279,7 +52295,7 @@ paths: description: Response content: application/json: - schema: &393 + schema: &394 title: Job description: Information of a job execution in a workflow run type: object @@ -52626,9 +52642,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *358 - *359 - - *381 + - *360 + - *382 responses: '302': description: Response @@ -52656,9 +52672,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *358 - *359 - - *381 + - *360 + - *382 requestBody: required: false content: @@ -52704,8 +52720,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Status response @@ -52755,8 +52771,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -52819,8 +52835,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -52838,7 +52854,7 @@ paths: type: integer secrets: type: array - items: &395 + items: &396 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -52859,7 +52875,7 @@ paths: - created_at - updated_at examples: - default: &396 + default: &397 value: total_count: 2 secrets: @@ -52892,9 +52908,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *358 - *359 - - *382 + - *360 + - *383 - *19 responses: '200': @@ -52911,7 +52927,7 @@ paths: type: integer variables: type: array - items: &399 + items: &400 title: Actions Variable type: object properties: @@ -52945,7 +52961,7 @@ paths: - created_at - updated_at examples: - default: &400 + default: &401 value: total_count: 2 variables: @@ -52978,8 +52994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -52988,7 +53004,7 @@ paths: schema: type: object properties: - enabled: &383 + enabled: &384 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *46 @@ -53021,8 +53037,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -53033,7 +53049,7 @@ paths: schema: type: object properties: - enabled: *383 + enabled: *384 allowed_actions: *46 required: - enabled @@ -53064,14 +53080,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: &384 + schema: &385 type: object properties: access_level: @@ -53089,7 +53105,7 @@ paths: required: - access_level examples: - default: &385 + default: &386 value: access_level: organization x-github: @@ -53114,15 +53130,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: application/json: - schema: *384 + schema: *385 examples: - default: *385 + default: *386 responses: '204': description: Response @@ -53146,8 +53162,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -53178,8 +53194,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -53211,8 +53227,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -53241,8 +53257,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Success response @@ -53282,8 +53298,8 @@ paths: in: query schema: type: string - - *358 - *359 + - *360 - *17 - *19 responses: @@ -53327,8 +53343,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -53360,8 +53376,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -53435,8 +53451,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *358 - *359 + - *360 responses: '201': description: Response @@ -53472,8 +53488,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *358 - *359 + - *360 responses: '201': description: Response @@ -53503,8 +53519,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *358 - *359 + - *360 - *58 responses: '200': @@ -53534,8 +53550,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *358 - *359 + - *360 - *58 responses: '204': @@ -53561,8 +53577,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *358 - *359 + - *360 - *58 responses: '200': *64 @@ -53587,8 +53603,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *358 - *359 + - *360 - *58 requestBody: required: true @@ -53637,8 +53653,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *358 - *359 + - *360 - *58 requestBody: required: true @@ -53688,8 +53704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *358 - *359 + - *360 - *58 responses: '200': *197 @@ -53719,8 +53735,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *358 - *359 + - *360 - *58 - *198 responses: @@ -53750,9 +53766,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *358 - *359 - - &403 + - *360 + - &404 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -53760,7 +53776,7 @@ paths: required: false schema: type: string - - &404 + - &405 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -53768,7 +53784,7 @@ paths: required: false schema: type: string - - &405 + - &406 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -53777,7 +53793,7 @@ paths: required: false schema: type: string - - &406 + - &407 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -53804,7 +53820,7 @@ paths: - pending - *17 - *19 - - &407 + - &408 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -53813,7 +53829,7 @@ paths: schema: type: string format: date-time - - &386 + - &387 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -53822,13 +53838,13 @@ paths: schema: type: boolean default: false - - &408 + - &409 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &409 + - &410 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -53851,7 +53867,7 @@ paths: type: integer workflow_runs: type: array - items: &387 + items: &388 title: Workflow Run description: An invocation of a workflow type: object @@ -53968,7 +53984,7 @@ paths: type: - array - 'null' - items: &430 + items: &431 title: Pull Request Minimal type: object properties: @@ -54095,7 +54111,7 @@ paths: head_commit: anyOf: - type: 'null' - - &434 + - &435 title: Simple Commit description: A commit. type: object @@ -54210,7 +54226,7 @@ paths: - workflow_url - pull_requests examples: - default: &410 + default: &411 value: total_count: 1 workflow_runs: @@ -54446,24 +54462,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *358 - *359 - - &388 + - *360 + - &389 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *386 + - *387 responses: '200': description: Response content: application/json: - schema: *387 + schema: *388 examples: - default: &391 + default: &392 value: id: 30433642 name: Build @@ -54704,9 +54720,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '204': description: Response @@ -54729,9 +54745,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '200': description: Response @@ -54859,9 +54875,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '201': description: Response @@ -54894,12 +54910,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *358 - *359 - - *388 + - *360 + - *389 - *17 - *19 - - *389 + - *390 responses: '200': description: Response @@ -54915,9 +54931,9 @@ paths: type: integer artifacts: type: array - items: *375 + items: *376 examples: - default: *390 + default: *391 headers: Link: *37 x-github: @@ -54941,25 +54957,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *358 - *359 - - *388 - - &392 + - *360 + - *389 + - &393 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *386 + - *387 responses: '200': description: Response content: application/json: - schema: *387 + schema: *388 examples: - default: *391 + default: *392 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54982,10 +54998,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *358 - *359 - - *388 - - *392 + - *360 + - *389 + - *393 - *17 - *19 responses: @@ -55003,9 +55019,9 @@ paths: type: integer jobs: type: array - items: *393 + items: *394 examples: - default: &394 + default: &395 value: total_count: 1 jobs: @@ -55118,10 +55134,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *358 - *359 - - *388 - - *392 + - *360 + - *389 + - *393 responses: '302': description: Response @@ -55149,9 +55165,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '202': description: Response @@ -55184,9 +55200,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 requestBody: required: true content: @@ -55253,9 +55269,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '202': description: Response @@ -55288,9 +55304,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -55320,9 +55336,9 @@ paths: type: integer jobs: type: array - items: *393 + items: *394 examples: - default: *394 + default: *395 headers: Link: *37 x-github: @@ -55347,9 +55363,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '302': description: Response @@ -55376,9 +55392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '204': description: Response @@ -55405,9 +55421,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '200': description: Response @@ -55476,7 +55492,7 @@ paths: items: type: object properties: - type: &505 + type: &506 type: string description: The type of reviewer. enum: @@ -55562,9 +55578,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 requestBody: required: true content: @@ -55614,7 +55630,7 @@ paths: application/json: schema: type: array - items: &500 + items: &501 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -55726,7 +55742,7 @@ paths: - created_at - updated_at examples: - default: &501 + default: &502 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -55782,9 +55798,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *358 - *359 - - *388 + - *360 + - *389 requestBody: required: false content: @@ -55829,9 +55845,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 requestBody: required: false content: @@ -55886,9 +55902,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '200': description: Response @@ -56025,8 +56041,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -56044,9 +56060,9 @@ paths: type: integer secrets: type: array - items: *395 + items: *396 examples: - default: *396 + default: *397 headers: Link: *37 x-github: @@ -56071,16 +56087,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *397 + schema: *398 examples: - default: *398 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56102,17 +56118,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 responses: '200': description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: &518 + default: &519 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -56138,8 +56154,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 requestBody: required: true @@ -56197,8 +56213,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 responses: '204': @@ -56224,9 +56240,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *358 - *359 - - *382 + - *360 + - *383 - *19 responses: '200': @@ -56243,9 +56259,9 @@ paths: type: integer variables: type: array - items: *399 + items: *400 examples: - default: *400 + default: *401 headers: Link: *37 x-github: @@ -56268,8 +56284,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -56321,17 +56337,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *358 - *359 + - *360 - *203 responses: '200': description: Response content: application/json: - schema: *399 + schema: *400 examples: - default: &519 + default: &520 value: name: USERNAME value: octocat @@ -56357,8 +56373,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *358 - *359 + - *360 - *203 requestBody: required: true @@ -56401,8 +56417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *358 - *359 + - *360 - *203 responses: '204': @@ -56428,8 +56444,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -56447,7 +56463,7 @@ paths: type: integer workflows: type: array - items: &401 + items: &402 title: Workflow description: A GitHub Actions workflow type: object @@ -56565,9 +56581,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *358 - *359 - - &402 + - *360 + - &403 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -56582,7 +56598,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: default: value: @@ -56615,9 +56631,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *358 - *359 - - *402 + - *360 + - *403 responses: '204': description: Response @@ -56642,9 +56658,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *358 - *359 - - *402 + - *360 + - *403 responses: '204': description: Response @@ -56695,9 +56711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *358 - *359 - - *402 + - *360 + - *403 responses: '204': description: Response @@ -56724,19 +56740,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *358 - *359 - - *402 + - *360 - *403 - *404 - *405 - *406 + - *407 - *17 - *19 - - *407 - - *386 - *408 + - *387 - *409 + - *410 responses: '200': description: Response @@ -56752,9 +56768,9 @@ paths: type: integer workflow_runs: type: array - items: *387 + items: *388 examples: - default: *410 + default: *411 headers: Link: *37 x-github: @@ -56787,9 +56803,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *358 - *359 - - *402 + - *360 + - *403 responses: '200': description: Response @@ -56850,8 +56866,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *358 - *359 + - *360 - *84 - *17 - *82 @@ -57019,8 +57035,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -57057,8 +57073,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *358 - *359 + - *360 - name: assignee in: path required: true @@ -57094,8 +57110,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -57207,8 +57223,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *358 - *359 + - *360 - *17 - *82 - *83 @@ -57262,7 +57278,7 @@ paths: bundle_url: type: string examples: - default: *411 + default: *412 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57282,8 +57298,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -57291,7 +57307,7 @@ paths: application/json: schema: type: array - items: &412 + items: &413 title: Autolink reference description: An autolink reference. type: object @@ -57345,8 +57361,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -57385,9 +57401,9 @@ paths: description: response content: application/json: - schema: *412 + schema: *413 examples: - default: &413 + default: &414 value: id: 1 key_prefix: TICKET- @@ -57418,9 +57434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *358 - *359 - - &414 + - *360 + - &415 name: autolink_id description: The unique identifier of the autolink. in: path @@ -57432,9 +57448,9 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: - default: *413 + default: *414 '404': *6 x-github: githubCloudOnly: false @@ -57454,9 +57470,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *358 - *359 - - *414 + - *360 + - *415 responses: '204': description: Response @@ -57480,8 +57496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response if Dependabot is enabled @@ -57531,8 +57547,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -57553,8 +57569,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -57574,8 +57590,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *358 - *359 + - *360 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -57613,7 +57629,7 @@ paths: - url protected: type: boolean - protection: &416 + protection: &417 title: Branch Protection description: Branch Protection type: object @@ -57656,7 +57672,7 @@ paths: required: - contexts - checks - enforce_admins: &419 + enforce_admins: &420 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -57673,7 +57689,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &421 + required_pull_request_reviews: &422 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -57757,7 +57773,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &418 + restrictions: &419 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -58082,9 +58098,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *358 - *359 - - &417 + - *360 + - &418 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -58098,14 +58114,14 @@ paths: description: Response content: application/json: - schema: &427 + schema: &428 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &476 + commit: &477 title: Commit description: Commit type: object @@ -58144,7 +58160,7 @@ paths: author: anyOf: - type: 'null' - - &415 + - &416 title: Git User description: Metaproperties for Git author/committer information. @@ -58165,7 +58181,7 @@ paths: committer: anyOf: - type: 'null' - - *415 + - *416 message: type: string examples: @@ -58189,7 +58205,7 @@ paths: required: - sha - url - verification: &525 + verification: &526 title: Verification type: object properties: @@ -58269,7 +58285,7 @@ paths: type: integer files: type: array - items: &488 + items: &489 title: Diff Entry description: Diff Entry type: object @@ -58363,7 +58379,7 @@ paths: - self protected: type: boolean - protection: *416 + protection: *417 protection_url: type: string format: uri @@ -58472,7 +58488,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *372 + '301': *373 '404': *6 x-github: githubCloudOnly: false @@ -58494,15 +58510,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -58696,9 +58712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -58958,7 +58974,7 @@ paths: url: type: string format: uri - required_status_checks: &424 + required_status_checks: &425 title: Status Check Policy description: Status Check Policy type: object @@ -59117,7 +59133,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *418 + restrictions: *419 required_conversation_resolution: type: object properties: @@ -59229,9 +59245,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '204': description: Response @@ -59256,17 +59272,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: &420 + default: &421 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -59288,17 +59304,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: *420 + default: *421 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59317,9 +59333,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '204': description: Response @@ -59344,17 +59360,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: &422 + default: &423 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -59450,9 +59466,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: false content: @@ -59550,9 +59566,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 '422': *15 x-github: githubCloudOnly: false @@ -59573,9 +59589,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '204': description: Response @@ -59602,17 +59618,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: &423 + default: &424 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -59635,17 +59651,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: *423 + default: *424 '404': *6 x-github: githubCloudOnly: false @@ -59665,9 +59681,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '204': description: Response @@ -59692,17 +59708,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: &425 + default: &426 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -59728,9 +59744,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: false content: @@ -59782,9 +59798,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '404': *6 '422': *15 x-github: @@ -59806,9 +59822,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '204': description: Response @@ -59832,9 +59848,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response @@ -59868,9 +59884,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: false content: @@ -59937,9 +59953,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: false content: @@ -60003,9 +60019,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: content: application/json: @@ -60071,15 +60087,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *418 + schema: *419 examples: default: value: @@ -60170,9 +60186,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '204': description: Response @@ -60195,9 +60211,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response @@ -60207,7 +60223,7 @@ paths: type: array items: *5 examples: - default: &426 + default: &427 value: - id: 1 slug: octoapp @@ -60264,9 +60280,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60300,7 +60316,7 @@ paths: type: array items: *5 examples: - default: *426 + default: *427 '422': *15 x-github: githubCloudOnly: false @@ -60321,9 +60337,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60357,7 +60373,7 @@ paths: type: array items: *5 examples: - default: *426 + default: *427 '422': *15 x-github: githubCloudOnly: false @@ -60378,9 +60394,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60414,7 +60430,7 @@ paths: type: array items: *5 examples: - default: *426 + default: *427 '422': *15 x-github: githubCloudOnly: false @@ -60436,9 +60452,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response @@ -60468,9 +60484,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: false content: @@ -60529,9 +60545,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: false content: @@ -60590,9 +60606,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: content: application/json: @@ -60651,9 +60667,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response @@ -60687,9 +60703,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60747,9 +60763,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60807,9 +60823,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60869,9 +60885,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60893,7 +60909,7 @@ paths: description: Response content: application/json: - schema: *427 + schema: *428 examples: default: value: @@ -61007,8 +61023,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *358 - *359 + - *360 - *213 - *214 - *215 @@ -61044,8 +61060,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *358 - *359 + - *360 - name: bypass_request_number in: path required: true @@ -61118,8 +61134,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *358 - *359 + - *360 - *213 - *214 - *215 @@ -61133,9 +61149,9 @@ paths: application/json: schema: type: array - items: *428 + items: *429 examples: - default: *429 + default: *430 '404': *6 '403': *27 '500': *95 @@ -61159,8 +61175,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *358 - *359 + - *360 - name: bypass_request_number in: path required: true @@ -61172,7 +61188,7 @@ paths: description: A single bypass request. content: application/json: - schema: *428 + schema: *429 examples: default: value: @@ -61230,8 +61246,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *358 - *359 + - *360 - name: bypass_request_number in: path required: true @@ -61302,8 +61318,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *358 - *359 + - *360 - name: bypass_response_id in: path required: true @@ -61336,8 +61352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -61616,7 +61632,7 @@ paths: description: Response content: application/json: - schema: &431 + schema: &432 title: CheckRun description: A check performed on the code of a given code change type: object @@ -61751,8 +61767,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *430 - deployment: &735 + items: *431 + deployment: &736 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -62039,9 +62055,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *358 - *359 - - &432 + - *360 + - &433 name: check_run_id description: The unique identifier of the check run. in: path @@ -62053,9 +62069,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *432 examples: - default: &433 + default: &434 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -62155,9 +62171,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *358 - *359 - - *432 + - *360 + - *433 requestBody: required: true content: @@ -62397,9 +62413,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *432 examples: - default: *433 + default: *434 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62419,9 +62435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *358 - *359 - - *432 + - *360 + - *433 - *17 - *19 responses: @@ -62533,9 +62549,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *358 - *359 - - *432 + - *360 + - *433 responses: '201': description: Response @@ -62579,8 +62595,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -62602,7 +62618,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &435 + schema: &436 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -62684,7 +62700,7 @@ paths: type: - array - 'null' - items: *430 + items: *431 app: anyOf: - type: 'null' @@ -62700,7 +62716,7 @@ paths: - string - 'null' format: date-time - head_commit: *434 + head_commit: *435 latest_check_runs_count: type: integer check_runs_url: @@ -62728,7 +62744,7 @@ paths: - check_runs_url - pull_requests examples: - default: &436 + default: &437 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -63019,9 +63035,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *435 + schema: *436 examples: - default: *436 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63040,8 +63056,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -63350,9 +63366,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *358 - *359 - - &437 + - *360 + - &438 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -63364,9 +63380,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *436 examples: - default: *436 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63389,17 +63405,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *358 - *359 - - *437 - - &483 + - *360 + - *438 + - &484 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &484 + - &485 name: status description: Returns check runs with the specified `status`. in: query @@ -63438,9 +63454,9 @@ paths: type: integer check_runs: type: array - items: *431 + items: *432 examples: - default: &485 + default: &486 value: total_count: 1 check_runs: @@ -63542,9 +63558,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *358 - *359 - - *437 + - *360 + - *438 responses: '201': description: Response @@ -63577,21 +63593,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *358 - *359 + - *360 - *221 - *222 - *19 - *17 - - &453 + - &454 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *438 - - &454 + schema: *439 + - &455 name: pr description: The number of the pull request for the results you want to list. in: query @@ -63622,7 +63638,7 @@ paths: be returned. in: query required: false - schema: *439 + schema: *440 responses: '200': description: Response @@ -63638,7 +63654,7 @@ paths: updated_at: *104 url: *101 html_url: *102 - instances_url: *440 + instances_url: *441 state: *87 fixed_at: *106 dismissed_by: @@ -63646,11 +63662,11 @@ paths: - type: 'null' - *4 dismissed_at: *105 - dismissed_reason: *441 - dismissed_comment: *442 - rule: *443 - tool: *444 - most_recent_instance: *445 + dismissed_reason: *442 + dismissed_comment: *443 + rule: *444 + tool: *445 + most_recent_instance: *446 dismissal_approved_by: anyOf: - type: 'null' @@ -63770,7 +63786,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &446 + '403': &447 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -63797,9 +63813,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *358 - *359 - - &447 + - *360 + - &448 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -63813,7 +63829,7 @@ paths: description: Response content: application/json: - schema: &448 + schema: &449 type: object properties: number: *96 @@ -63821,7 +63837,7 @@ paths: updated_at: *104 url: *101 html_url: *102 - instances_url: *440 + instances_url: *441 state: *87 fixed_at: *106 dismissed_by: @@ -63829,8 +63845,8 @@ paths: - type: 'null' - *4 dismissed_at: *105 - dismissed_reason: *441 - dismissed_comment: *442 + dismissed_reason: *442 + dismissed_comment: *443 rule: type: object properties: @@ -63892,8 +63908,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *444 - most_recent_instance: *445 + tool: *445 + most_recent_instance: *446 dismissal_approved_by: anyOf: - type: 'null' @@ -63986,7 +64002,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -64006,9 +64022,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 requestBody: required: true content: @@ -64023,8 +64039,8 @@ paths: enum: - open - dismissed - dismissed_reason: *441 - dismissed_comment: *442 + dismissed_reason: *442 + dismissed_comment: *443 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -64043,7 +64059,7 @@ paths: description: Response content: application/json: - schema: *448 + schema: *449 examples: default: value: @@ -64119,7 +64135,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &452 + '403': &453 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -64146,15 +64162,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 responses: '200': description: Response content: application/json: - schema: &449 + schema: &450 type: object properties: status: @@ -64181,13 +64197,13 @@ paths: - description - started_at examples: - default: &450 + default: &451 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &451 + '400': &452 description: Bad Request content: application/json: @@ -64198,7 +64214,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -64223,29 +64239,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 responses: '200': description: OK content: application/json: - schema: *449 + schema: *450 examples: - default: *450 + default: *451 '202': description: Accepted content: application/json: - schema: *449 + schema: *450 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *451 + '400': *452 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -64277,9 +64293,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 requestBody: required: false content: @@ -64325,8 +64341,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *451 - '403': *452 + '400': *452 + '403': *453 '404': *6 '422': description: Unprocessable Entity @@ -64350,13 +64366,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 - *19 - *17 - - *453 - *454 + - *455 responses: '200': description: Response @@ -64364,7 +64380,7 @@ paths: application/json: schema: type: array - items: *445 + items: *446 examples: default: value: @@ -64403,7 +64419,7 @@ paths: end_column: 50 classifications: - source - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -64437,25 +64453,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *358 - *359 + - *360 - *221 - *222 - *19 - *17 - - *454 + - *455 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *438 + schema: *439 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &457 + schema: &458 type: string description: An identifier for the upload. examples: @@ -64477,23 +64493,23 @@ paths: application/json: schema: type: array - items: &458 + items: &459 type: object properties: - ref: *438 - commit_sha: &466 + ref: *439 + commit_sha: &467 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *455 + analysis_key: *456 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *456 + category: *457 error: type: string examples: @@ -64518,8 +64534,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *457 - tool: *444 + sarif_id: *458 + tool: *445 deletable: type: boolean warning: @@ -64581,7 +64597,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -64617,8 +64633,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *358 - *359 + - *360 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64631,7 +64647,7 @@ paths: description: Response content: application/json: - schema: *458 + schema: *459 examples: response: summary: application/json response @@ -64685,7 +64701,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -64767,8 +64783,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *358 - *359 + - *360 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64824,7 +64840,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *452 + '403': *453 '404': *6 '503': *128 x-github: @@ -64846,8 +64862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -64855,7 +64871,7 @@ paths: application/json: schema: type: array - items: &459 + items: &460 title: CodeQL Database description: A CodeQL database. type: object @@ -64967,7 +64983,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -64996,8 +65012,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *358 - *359 + - *360 - name: language in: path description: The language of the CodeQL database. @@ -65009,7 +65025,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: default: value: @@ -65041,9 +65057,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &490 + '302': &491 description: Found - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -65065,8 +65081,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *358 - *359 + - *360 - name: language in: path description: The language of the CodeQL database. @@ -65076,7 +65092,7 @@ paths: responses: '204': description: Response - '403': *452 + '403': *453 '404': *6 '503': *128 x-github: @@ -65104,8 +65120,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -65114,7 +65130,7 @@ paths: type: object additionalProperties: false properties: - language: &460 + language: &461 type: string description: The language targeted by the CodeQL query enum: @@ -65192,7 +65208,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &464 + schema: &465 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -65202,7 +65218,7 @@ paths: description: The ID of the variant analysis. controller_repo: *94 actor: *4 - query_language: *460 + query_language: *461 query_pack_url: type: string description: The download url for the query pack. @@ -65250,7 +65266,7 @@ paths: items: type: object properties: - repository: &461 + repository: &462 title: Repository Identifier description: Repository Identifier type: object @@ -65292,7 +65308,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &465 + analysis_status: &466 type: string description: The new status of the CodeQL variant analysis repository task. @@ -65324,7 +65340,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &462 + access_mismatch_repos: &463 type: object properties: repository_count: @@ -65339,7 +65355,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *461 + items: *462 required: - repository_count - repositories @@ -65362,8 +65378,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *462 - over_limit_repos: *462 + no_codeql_db_repos: *463 + over_limit_repos: *463 required: - access_mismatch_repos - not_found_repos @@ -65379,7 +65395,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &463 + value: &464 summary: Default response value: id: 1 @@ -65531,10 +65547,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *463 + value: *464 repository_lists: summary: Response for a successful variant analysis submission - value: *463 + value: *464 '404': *6 '422': description: Unable to process variant analysis submission @@ -65562,8 +65578,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *358 - *359 + - *360 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -65575,9 +65591,9 @@ paths: description: Response content: application/json: - schema: *464 + schema: *465 examples: - default: *463 + default: *464 '404': *6 '503': *128 x-github: @@ -65600,7 +65616,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *358 + - *359 - name: repo in: path description: The name of the controller repository. @@ -65635,7 +65651,7 @@ paths: type: object properties: repository: *94 - analysis_status: *465 + analysis_status: *466 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -65760,8 +65776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -65843,7 +65859,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -65864,8 +65880,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -65949,7 +65965,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *452 + '403': *453 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -66014,8 +66030,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -66023,7 +66039,7 @@ paths: schema: type: object properties: - commit_sha: *466 + commit_sha: *467 ref: type: string description: |- @@ -66083,7 +66099,7 @@ paths: schema: type: object properties: - id: *457 + id: *458 url: type: string description: The REST API URL for checking the status of the upload. @@ -66097,7 +66113,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *452 + '403': *453 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -66120,8 +66136,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *358 - *359 + - *360 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -66169,7 +66185,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *446 + '403': *447 '404': description: Not Found if the sarif id does not match any upload '503': *128 @@ -66194,8 +66210,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -66276,8 +66292,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *358 - *359 + - *360 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -66405,8 +66421,8 @@ paths: parameters: - *17 - *19 - - *358 - *359 + - *360 responses: '200': description: Response @@ -66720,8 +66736,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -66787,7 +66803,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '202': description: Response when the codespace creation partially failed but is being retried in the background @@ -66795,7 +66811,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '400': *14 '401': *23 '403': *27 @@ -66824,8 +66840,8 @@ paths: parameters: - *17 - *19 - - *358 - *359 + - *360 responses: '200': description: Response @@ -66889,8 +66905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *358 - *359 + - *360 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -66927,9 +66943,9 @@ paths: type: integer machines: type: array - items: *468 + items: *469 examples: - default: &692 + default: &693 value: total_count: 2 machines: @@ -66969,8 +66985,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *358 - *359 + - *360 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -67057,8 +67073,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *358 - *359 + - *360 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -67127,8 +67143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -67146,7 +67162,7 @@ paths: type: integer secrets: type: array - items: &472 + items: &473 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -67167,7 +67183,7 @@ paths: - created_at - updated_at examples: - default: *469 + default: *470 headers: Link: *37 x-github: @@ -67190,16 +67206,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *470 + schema: *471 examples: - default: *471 + default: *472 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -67219,17 +67235,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 responses: '200': description: Response content: application/json: - schema: *472 + schema: *473 examples: - default: *473 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67241,7 +67257,7 @@ paths: Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/enterprise-cloud@latest//rest/guides/encrypting-secrets-for-the-rest-api)." - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/create-or-update-repo-secret @@ -67249,8 +67265,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 requestBody: required: true @@ -67295,7 +67311,7 @@ paths: description: |- Deletes a development environment secret in a repository using the secret name. - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/delete-repo-secret @@ -67303,8 +67319,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 responses: '204': @@ -67333,8 +67349,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *358 - *359 + - *360 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -67372,7 +67388,7 @@ paths: application/json: schema: type: array - items: &474 + items: &475 title: Collaborator description: Collaborator type: object @@ -67565,8 +67581,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *358 - *359 + - *360 - *212 responses: '204': @@ -67609,8 +67625,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *358 - *359 + - *360 - *212 requestBody: required: false @@ -67637,7 +67653,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &538 + schema: &539 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -67858,8 +67874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *358 - *359 + - *360 - *212 responses: '204': @@ -67889,8 +67905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *358 - *359 + - *360 - *212 responses: '200': @@ -67911,7 +67927,7 @@ paths: user: anyOf: - type: 'null' - - *474 + - *475 required: - permission - role_name @@ -67965,8 +67981,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -67976,7 +67992,7 @@ paths: application/json: schema: type: array - items: &475 + items: &476 title: Commit Comment description: Commit Comment type: object @@ -68034,7 +68050,7 @@ paths: - created_at - updated_at examples: - default: &478 + default: &479 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68093,17 +68109,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *358 - *359 + - *360 - *147 responses: '200': description: Response content: application/json: - schema: *475 + schema: *476 examples: - default: &479 + default: &480 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68160,8 +68176,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *358 - *359 + - *360 - *147 requestBody: required: true @@ -68184,7 +68200,7 @@ paths: description: Response content: application/json: - schema: *475 + schema: *476 examples: default: value: @@ -68235,8 +68251,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *358 - *359 + - *360 - *147 responses: '204': @@ -68258,8 +68274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *358 - *359 + - *360 - *147 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -68286,9 +68302,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 '404': *6 @@ -68309,8 +68325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *358 - *359 + - *360 - *147 requestBody: required: true @@ -68343,16 +68359,16 @@ paths: description: Reaction exists content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '201': description: Reaction created content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '422': *15 x-github: githubCloudOnly: false @@ -68374,10 +68390,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *358 - *359 + - *360 - *147 - - *350 + - *351 responses: '204': description: Response @@ -68426,8 +68442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *358 - *359 + - *360 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -68483,9 +68499,9 @@ paths: application/json: schema: type: array - items: *476 + items: *477 examples: - default: &586 + default: &587 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68579,9 +68595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *358 - *359 - - &477 + - *360 + - &478 name: commit_sha description: The SHA of the commit. in: path @@ -68653,9 +68669,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *358 - *359 - - *477 + - *360 + - *478 - *17 - *19 responses: @@ -68665,9 +68681,9 @@ paths: application/json: schema: type: array - items: *475 + items: *476 examples: - default: *478 + default: *479 headers: Link: *37 x-github: @@ -68695,9 +68711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *358 - *359 - - *477 + - *360 + - *478 requestBody: required: true content: @@ -68732,9 +68748,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *476 examples: - default: *479 + default: *480 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68762,9 +68778,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *358 - *359 - - *477 + - *360 + - *478 - *17 - *19 responses: @@ -68774,7 +68790,7 @@ paths: application/json: schema: type: array - items: &577 + items: &578 title: Pull Request Simple description: Pull Request Simple type: object @@ -68894,7 +68910,7 @@ paths: milestone: anyOf: - type: 'null' - - *480 + - *481 active_lock_reason: type: - string @@ -68993,7 +69009,7 @@ paths: _links: type: object properties: - comments: &481 + comments: &482 title: Link description: Hypermedia Link type: object @@ -69002,13 +69018,13 @@ paths: type: string required: - href - commits: *481 - statuses: *481 - html: *481 - issue: *481 - review_comments: *481 - review_comment: *481 - self: *481 + commits: *482 + statuses: *482 + html: *482 + issue: *482 + review_comments: *482 + review_comment: *482 + self: *482 required: - comments - commits @@ -69019,7 +69035,7 @@ paths: - review_comment - self author_association: *135 - auto_merge: &579 + auto_merge: &580 title: Auto merge description: The status of auto merging a pull request. type: @@ -69084,7 +69100,7 @@ paths: - author_association - auto_merge examples: - default: &578 + default: &579 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -69621,11 +69637,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *358 - *359 + - *360 - *19 - *17 - - &482 + - &483 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -69640,9 +69656,9 @@ paths: description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: &565 + default: &566 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69755,11 +69771,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *358 - *359 - - *482 + - *360 - *483 - *484 + - *485 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -69793,9 +69809,9 @@ paths: type: integer check_runs: type: array - items: *431 + items: *432 examples: - default: *485 + default: *486 headers: Link: *37 x-github: @@ -69820,9 +69836,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *358 - *359 - - *482 + - *360 + - *483 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -69830,7 +69846,7 @@ paths: schema: type: integer example: 1 - - *483 + - *484 - *17 - *19 responses: @@ -69848,7 +69864,7 @@ paths: type: integer check_suites: type: array - items: *435 + items: *436 examples: default: value: @@ -70048,9 +70064,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *358 - *359 - - *482 + - *360 + - *483 - *17 - *19 responses: @@ -70252,9 +70268,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *358 - *359 - - *482 + - *360 + - *483 - *17 - *19 responses: @@ -70264,7 +70280,7 @@ paths: application/json: schema: type: array - items: &640 + items: &641 title: Status description: The status of a commit. type: object @@ -70345,7 +70361,7 @@ paths: site_admin: false headers: Link: *37 - '301': *372 + '301': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70373,8 +70389,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -70407,11 +70423,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *486 + - *487 code_of_conduct_file: anyOf: - type: 'null' - - &487 + - &488 title: Community Health File type: object properties: @@ -70431,19 +70447,19 @@ paths: contributing: anyOf: - type: 'null' - - *487 + - *488 readme: anyOf: - type: 'null' - - *487 + - *488 issue_template: anyOf: - type: 'null' - - *487 + - *488 pull_request_template: anyOf: - type: 'null' - - *487 + - *488 required: - code_of_conduct - code_of_conduct_file @@ -70572,8 +70588,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *358 - *359 + - *360 - *19 - *17 - name: basehead @@ -70621,8 +70637,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *476 - merge_base_commit: *476 + base_commit: *477 + merge_base_commit: *477 status: type: string enum: @@ -70646,10 +70662,10 @@ paths: - 6 commits: type: array - items: *476 + items: *477 files: type: array - items: *488 + items: *489 required: - url - html_url @@ -70935,8 +70951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *358 - *359 + - *360 - name: path description: path parameter in: path @@ -71087,7 +71103,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &489 + response-if-content-is-a-file: &490 summary: Response if content is a file value: type: file @@ -71224,7 +71240,7 @@ paths: - size - type - url - - &591 + - &592 title: Content File description: Content File type: object @@ -71442,7 +71458,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *489 + response-if-content-is-a-file: *490 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -71511,7 +71527,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *490 + '302': *491 '304': *35 x-github: githubCloudOnly: false @@ -71534,8 +71550,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *358 - *359 + - *360 - name: path description: path parameter in: path @@ -71630,7 +71646,7 @@ paths: description: Response content: application/json: - schema: &491 + schema: &492 title: File Commit description: File Commit type: object @@ -71786,7 +71802,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: example-for-creating-a-file: value: @@ -71840,7 +71856,7 @@ paths: schema: oneOf: - *3 - - &520 + - &521 description: Repository rule violation was detected type: object properties: @@ -71861,7 +71877,7 @@ paths: items: type: object properties: - placeholder_id: &632 + placeholder_id: &633 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -71893,8 +71909,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *358 - *359 + - *360 - name: path description: path parameter in: path @@ -71955,7 +71971,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: default: value: @@ -72010,8 +72026,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *358 - *359 + - *360 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -72135,8 +72151,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *358 - *359 + - *360 - *240 - *241 - *242 @@ -72178,7 +72194,7 @@ paths: application/json: schema: type: array - items: &494 + items: &495 type: object description: A Dependabot alert. properties: @@ -72228,7 +72244,7 @@ paths: - direct - transitive - - security_advisory: *492 + security_advisory: *493 security_vulnerability: *100 url: *101 html_url: *102 @@ -72259,7 +72275,7 @@ paths: dismissal. maxLength: 280 fixed_at: *106 - auto_dismissed_at: *493 + auto_dismissed_at: *494 required: - number - state @@ -72489,9 +72505,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *358 - *359 - - &495 + - *360 + - &496 name: alert_number in: path description: |- @@ -72506,7 +72522,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: default: value: @@ -72619,9 +72635,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *358 - *359 - - *495 + - *360 + - *496 requestBody: required: true content: @@ -72666,7 +72682,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: default: value: @@ -72795,8 +72811,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -72814,7 +72830,7 @@ paths: type: integer secrets: type: array - items: &498 + items: &499 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -72868,16 +72884,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: *497 + default: *498 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72897,15 +72913,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 responses: '200': description: Response content: application/json: - schema: *498 + schema: *499 examples: default: value: @@ -72931,8 +72947,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 requestBody: required: true @@ -72985,8 +73001,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 responses: '204': @@ -73009,8 +73025,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *358 - *359 + - *360 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -73184,8 +73200,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -73445,8 +73461,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -73529,7 +73545,7 @@ paths: - version - url additionalProperties: false - metadata: &499 + metadata: &500 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -73568,7 +73584,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *499 + metadata: *500 resolved: type: object description: A collection of resolved package dependencies. @@ -73582,7 +73598,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *499 + metadata: *500 relationship: type: string description: A notation of whether a dependency is requested @@ -73715,8 +73731,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *358 - *359 + - *360 - name: sha description: The SHA recorded at creation time. in: query @@ -73757,9 +73773,9 @@ paths: application/json: schema: type: array - items: *500 + items: *501 examples: - default: *501 + default: *502 headers: Link: *37 x-github: @@ -73825,8 +73841,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -73908,7 +73924,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: simple-example: summary: Simple example @@ -73981,9 +73997,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *358 - *359 - - &502 + - *360 + - &503 name: deployment_id description: deployment_id parameter in: path @@ -73995,7 +74011,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -74060,9 +74076,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *358 - *359 - - *502 + - *360 + - *503 responses: '204': description: Response @@ -74084,9 +74100,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *358 - *359 - - *502 + - *360 + - *503 - *17 - *19 responses: @@ -74096,7 +74112,7 @@ paths: application/json: schema: type: array - items: &503 + items: &504 title: Deployment Status description: The status of a deployment. type: object @@ -74260,9 +74276,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *358 - *359 - - *502 + - *360 + - *503 requestBody: required: true content: @@ -74337,9 +74353,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: &504 + default: &505 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -74395,9 +74411,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *358 - *359 - - *502 + - *360 + - *503 - name: status_id in: path required: true @@ -74408,9 +74424,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 '404': *6 x-github: githubCloudOnly: false @@ -74435,8 +74451,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -74493,8 +74509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -74512,7 +74528,7 @@ paths: - 5 environments: type: array - items: &506 + items: &507 title: Environment description: Details of a deployment environment type: object @@ -74574,7 +74590,7 @@ paths: type: string examples: - wait_timer - wait_timer: &508 + wait_timer: &509 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -74616,7 +74632,7 @@ paths: items: type: object properties: - type: *505 + type: *506 reviewer: anyOf: - *4 @@ -74643,7 +74659,7 @@ paths: - id - node_id - type - deployment_branch_policy: &509 + deployment_branch_policy: &510 type: - object - 'null' @@ -74760,9 +74776,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *358 - *359 - - &507 + - *360 + - &508 name: environment_name in: path required: true @@ -74775,9 +74791,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &510 + default: &511 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -74861,9 +74877,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *358 - *359 - - *507 + - *360 + - *508 requestBody: required: false content: @@ -74873,7 +74889,7 @@ paths: - object - 'null' properties: - wait_timer: *508 + wait_timer: *509 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -74892,14 +74908,14 @@ paths: items: type: object properties: - type: *505 + type: *506 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *509 + deployment_branch_policy: *510 additionalProperties: false examples: default: @@ -74919,9 +74935,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -74945,9 +74961,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *358 - *359 - - *507 + - *360 + - *508 responses: '204': description: Default response @@ -74972,9 +74988,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *358 - *359 - - *507 + - *360 + - *508 - *17 - *19 responses: @@ -74993,7 +75009,7 @@ paths: - 2 branch_policies: type: array - items: &511 + items: &512 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -75054,9 +75070,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *358 - *359 - - *507 + - *360 + - *508 requestBody: required: true content: @@ -75104,9 +75120,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - example-wildcard: &512 + example-wildcard: &513 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -75148,10 +75164,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *358 - *359 - - *507 - - &513 + - *360 + - *508 + - &514 name: branch_policy_id in: path required: true @@ -75163,9 +75179,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75184,10 +75200,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *358 - *359 - - *507 - - *513 + - *360 + - *508 + - *514 requestBody: required: true content: @@ -75216,9 +75232,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75237,10 +75253,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *358 - *359 - - *507 - - *513 + - *360 + - *508 + - *514 responses: '204': description: Response @@ -75265,9 +75281,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *507 + - *508 + - *360 - *359 - - *358 responses: '200': description: List of deployment protection rules @@ -75284,7 +75300,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &514 + items: &515 title: Deployment protection rule description: Deployment protection rule type: object @@ -75306,7 +75322,7 @@ paths: for the environment. examples: - true - app: &515 + app: &516 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -75399,7 +75415,7 @@ paths: The authenticated user must have admin or owner permissions to the repository to use this endpoint. - For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app). + For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/enterprise-cloud@latest//actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules). OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. tags: @@ -75409,9 +75425,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *507 + - *508 + - *360 - *359 - - *358 requestBody: content: application/json: @@ -75432,9 +75448,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *514 + schema: *515 examples: - default: &516 + default: &517 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -75469,9 +75485,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *507 + - *508 + - *360 - *359 - - *358 - *19 - *17 responses: @@ -75491,7 +75507,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *515 + items: *516 examples: default: value: @@ -75526,10 +75542,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *358 - *359 - - *507 - - &517 + - *360 + - *508 + - &518 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -75541,9 +75557,9 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: - default: *516 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75564,10 +75580,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *507 + - *508 + - *360 - *359 - - *358 - - *517 + - *518 responses: '204': description: Response @@ -75593,9 +75609,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *358 - *359 - - *507 + - *360 + - *508 - *17 - *19 responses: @@ -75613,9 +75629,9 @@ paths: type: integer secrets: type: array - items: *395 + items: *396 examples: - default: *396 + default: *397 headers: Link: *37 x-github: @@ -75640,17 +75656,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *358 - *359 - - *507 + - *360 + - *508 responses: '200': description: Response content: application/json: - schema: *397 + schema: *398 examples: - default: *398 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75672,18 +75688,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *358 - *359 - - *507 + - *360 + - *508 - *200 responses: '200': description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75705,9 +75721,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *358 - *359 - - *507 + - *360 + - *508 - *200 requestBody: required: true @@ -75765,9 +75781,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *358 - *359 - - *507 + - *360 + - *508 - *200 responses: '204': @@ -75793,10 +75809,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *358 - *359 - - *507 - - *382 + - *360 + - *508 + - *383 - *19 responses: '200': @@ -75813,9 +75829,9 @@ paths: type: integer variables: type: array - items: *399 + items: *400 examples: - default: *400 + default: *401 headers: Link: *37 x-github: @@ -75838,9 +75854,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *358 - *359 - - *507 + - *360 + - *508 requestBody: required: true content: @@ -75892,18 +75908,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *358 - *359 - - *507 + - *360 + - *508 - *203 responses: '200': description: Response content: application/json: - schema: *399 + schema: *400 examples: - default: *519 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75924,10 +75940,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *358 - *359 + - *360 - *203 - - *507 + - *508 requestBody: required: true content: @@ -75969,10 +75985,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *358 - *359 + - *360 - *203 - - *507 + - *508 responses: '204': description: Response @@ -75994,8 +76010,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -76072,8 +76088,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *358 - *359 + - *360 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -76232,8 +76248,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *358 - *359 + - *360 requestBody: required: false content: @@ -76266,9 +76282,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *373 + default: *374 '400': *14 '422': *15 '403': *27 @@ -76289,8 +76305,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -76350,7 +76366,7 @@ paths: schema: oneOf: - *173 - - *520 + - *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76375,8 +76391,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *358 - *359 + - *360 - name: file_sha in: path required: true @@ -76476,8 +76492,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -76586,7 +76602,7 @@ paths: description: Response content: application/json: - schema: &521 + schema: &522 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -76813,15 +76829,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *358 - *359 - - *477 + - *360 + - *478 responses: '200': description: Response content: application/json: - schema: *521 + schema: *522 examples: default: value: @@ -76877,9 +76893,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *358 - *359 - - &522 + - *360 + - &523 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -76896,7 +76912,7 @@ paths: application/json: schema: type: array - items: &523 + items: &524 title: Git Reference description: Git references within a repository type: object @@ -76972,17 +76988,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *358 - *359 - - *522 + - *360 + - *523 responses: '200': description: Response content: application/json: - schema: *523 + schema: *524 examples: - default: &524 + default: &525 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -77011,8 +77027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -77041,9 +77057,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *524 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -77069,9 +77085,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *358 - *359 - - *522 + - *360 + - *523 requestBody: required: true content: @@ -77100,9 +77116,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *524 examples: - default: *524 + default: *525 '422': *15 '409': *92 x-github: @@ -77120,9 +77136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *358 - *359 - - *522 + - *360 + - *523 responses: '204': description: Response @@ -77175,8 +77191,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -77243,7 +77259,7 @@ paths: description: Response content: application/json: - schema: &526 + schema: &527 title: Git Tag description: Metadata for a Git tag type: object @@ -77299,7 +77315,7 @@ paths: - sha - type - url - verification: *525 + verification: *526 required: - sha - url @@ -77309,7 +77325,7 @@ paths: - tag - message examples: - default: &527 + default: &528 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -77382,8 +77398,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *358 - *359 + - *360 - name: tag_sha in: path required: true @@ -77394,9 +77410,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *527 examples: - default: *527 + default: *528 '404': *6 '409': *92 x-github: @@ -77420,8 +77436,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -77495,7 +77511,7 @@ paths: description: Response content: application/json: - schema: &528 + schema: &529 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -77613,8 +77629,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *358 - *359 + - *360 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -77637,7 +77653,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: default-response: summary: Default response @@ -77696,8 +77712,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -77707,7 +77723,7 @@ paths: application/json: schema: type: array - items: &529 + items: &530 title: Webhook description: Webhooks for repositories. type: object @@ -77770,7 +77786,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &766 + last_response: &767 title: Hook Response type: object properties: @@ -77847,8 +77863,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *358 - *359 + - *360 requestBody: required: false content: @@ -77901,9 +77917,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: - default: &530 + default: &531 value: type: Repository id: 12345678 @@ -77951,17 +77967,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 responses: '200': description: Response content: application/json: - schema: *529 + schema: *530 examples: - default: *530 + default: *531 '404': *6 x-github: githubCloudOnly: false @@ -77981,8 +77997,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 requestBody: required: true @@ -78028,9 +78044,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: - default: *530 + default: *531 '422': *15 '404': *6 x-github: @@ -78051,8 +78067,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 responses: '204': @@ -78077,8 +78093,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *358 - *359 + - *360 - *254 responses: '200': @@ -78106,8 +78122,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *358 - *359 + - *360 - *254 requestBody: required: false @@ -78152,8 +78168,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 - *17 - *255 @@ -78185,8 +78201,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 - *16 responses: @@ -78215,8 +78231,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 - *16 responses: @@ -78240,8 +78256,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 responses: '204': @@ -78267,8 +78283,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *358 - *359 + - *360 - *254 responses: '204': @@ -78327,14 +78343,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: &531 + schema: &532 title: Import description: A repository import from an external source. type: object @@ -78441,7 +78457,7 @@ paths: - html_url - authors_url examples: - default: &534 + default: &535 value: vcs: subversion use_lfs: true @@ -78457,7 +78473,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &532 + '503': &533 description: Unavailable due to service under maintenance. content: application/json: @@ -78486,8 +78502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -78535,7 +78551,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: default: value: @@ -78560,7 +78576,7 @@ paths: type: string '422': *15 '404': *6 - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78588,8 +78604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *358 - *359 + - *360 requestBody: required: false content: @@ -78641,7 +78657,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: example-1: summary: Example 1 @@ -78689,7 +78705,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78712,12 +78728,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *358 - *359 + - *360 responses: '204': description: Response - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78743,9 +78759,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *358 - *359 - - &715 + - *360 + - &716 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -78759,7 +78775,7 @@ paths: application/json: schema: type: array - items: &533 + items: &534 title: Porter Author description: Porter Author type: object @@ -78813,7 +78829,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78838,8 +78854,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *358 - *359 + - *360 - name: author_id in: path required: true @@ -78869,7 +78885,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: default: value: @@ -78882,7 +78898,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78906,8 +78922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -78948,7 +78964,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78976,8 +78992,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -79004,11 +79020,11 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: - default: *534 + default: *535 '422': *15 - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79031,8 +79047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -79040,8 +79056,8 @@ paths: application/json: schema: *20 examples: - default: *535 - '301': *372 + default: *536 + '301': *373 '404': *6 x-github: githubCloudOnly: false @@ -79061,8 +79077,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -79075,7 +79091,7 @@ paths: properties: {} additionalProperties: false examples: - default: &537 + default: &538 value: limit: collaborators_only origin: repository @@ -79100,13 +79116,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: application/json: - schema: *536 + schema: *537 examples: default: summary: Example request body @@ -79120,7 +79136,7 @@ paths: application/json: schema: *272 examples: - default: *537 + default: *538 '409': description: Response x-github: @@ -79142,8 +79158,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -79166,8 +79182,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -79177,9 +79193,9 @@ paths: application/json: schema: type: array - items: *538 + items: *539 examples: - default: &708 + default: &709 value: - id: 1 repository: @@ -79310,8 +79326,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *358 - *359 + - *360 - *276 requestBody: required: false @@ -79341,7 +79357,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -79472,8 +79488,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *358 - *359 + - *360 - *276 responses: '204': @@ -79505,8 +79521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *358 - *359 + - *360 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -79571,7 +79587,7 @@ paths: type: array items: *148 examples: - default: &547 + default: &548 value: - id: 1 node_id: MDU6SXNzdWUx @@ -79719,7 +79735,7 @@ paths: state_reason: completed headers: Link: *37 - '301': *372 + '301': *373 '422': *15 '404': *6 x-github: @@ -79748,8 +79764,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -79832,7 +79848,7 @@ paths: application/json: schema: *148 examples: - default: &542 + default: &543 value: id: 1 node_id: MDU6SXNzdWUx @@ -79988,7 +80004,7 @@ paths: '422': *15 '503': *128 '404': *6 - '410': *369 + '410': *370 x-github: triggersNotification: true githubCloudOnly: false @@ -80016,8 +80032,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *358 - *359 + - *360 - *157 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -80038,9 +80054,9 @@ paths: application/json: schema: type: array - items: *539 + items: *540 examples: - default: &544 + default: &545 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80098,17 +80114,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *358 - *359 + - *360 - *147 responses: '200': description: Response content: application/json: - schema: *539 + schema: *540 examples: - default: &540 + default: &541 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80162,8 +80178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *358 - *359 + - *360 - *147 requestBody: required: true @@ -80186,9 +80202,9 @@ paths: description: Response content: application/json: - schema: *539 + schema: *540 examples: - default: *540 + default: *541 '422': *15 x-github: githubCloudOnly: false @@ -80206,8 +80222,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *358 - *359 + - *360 - *147 responses: '204': @@ -80228,8 +80244,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *358 - *359 + - *360 - *147 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -80256,9 +80272,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 '404': *6 @@ -80279,8 +80295,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *358 - *359 + - *360 - *147 requestBody: required: true @@ -80313,16 +80329,16 @@ paths: description: Reaction exists content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '201': description: Reaction created content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '422': *15 x-github: githubCloudOnly: false @@ -80344,10 +80360,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *358 - *359 + - *360 - *147 - - *350 + - *351 responses: '204': description: Response @@ -80367,8 +80383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -80378,7 +80394,7 @@ paths: application/json: schema: type: array - items: &541 + items: &542 title: Issue Event description: Issue Event type: object @@ -80717,8 +80733,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *358 - *359 + - *360 - name: event_id in: path required: true @@ -80729,7 +80745,7 @@ paths: description: Response content: application/json: - schema: *541 + schema: *542 examples: default: value: @@ -80922,7 +80938,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *369 + '410': *370 '403': *27 x-github: githubCloudOnly: false @@ -80956,9 +80972,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *358 - *359 - - &543 + - *360 + - &544 name: issue_number description: The number that identifies the issue. in: path @@ -80972,10 +80988,10 @@ paths: application/json: schema: *148 examples: - default: *542 - '301': *372 + default: *543 + '301': *373 '404': *6 - '410': *369 + '410': *370 '304': *35 x-github: githubCloudOnly: false @@ -81000,9 +81016,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: false content: @@ -81112,13 +81128,13 @@ paths: application/json: schema: *148 examples: - default: *542 + default: *543 '422': *15 '503': *128 '403': *27 - '301': *372 + '301': *373 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81136,9 +81152,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: false content: @@ -81166,7 +81182,7 @@ paths: application/json: schema: *148 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81182,9 +81198,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: content: application/json: @@ -81211,7 +81227,7 @@ paths: application/json: schema: *148 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81233,9 +81249,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 - name: assignee in: path required: true @@ -81275,9 +81291,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *358 - *359 - - *543 + - *360 + - *544 - *138 - *17 - *19 @@ -81288,13 +81304,13 @@ paths: application/json: schema: type: array - items: *539 + items: *540 examples: - default: *544 + default: *545 headers: Link: *37 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81323,9 +81339,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: true content: @@ -81347,16 +81363,16 @@ paths: description: Response content: application/json: - schema: *539 + schema: *540 examples: - default: *540 + default: *541 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *369 + '410': *370 '422': *15 '404': *6 x-github: @@ -81376,9 +81392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *358 - *359 - - *543 + - *360 + - *544 - *17 - *19 responses: @@ -81392,7 +81408,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &548 + - &549 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -81441,7 +81457,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &549 + - &550 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -81569,7 +81585,7 @@ paths: - performed_via_github_app - assignee - assigner - - &550 + - &551 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -81615,7 +81631,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &551 + - &552 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -81661,7 +81677,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &552 + - &553 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -81710,7 +81726,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &553 + - &554 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -81752,7 +81768,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &554 + - &555 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -81794,7 +81810,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &555 + - &556 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -81850,7 +81866,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &557 title: Locked Issue Event description: Locked Issue Event type: object @@ -81895,7 +81911,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &557 + - &558 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -81956,7 +81972,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &559 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -82017,7 +82033,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &560 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -82078,7 +82094,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &561 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -82171,7 +82187,7 @@ paths: color: red headers: Link: *37 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82188,9 +82204,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 - *17 - *19 responses: @@ -82200,7 +82216,7 @@ paths: application/json: schema: type: array - items: &545 + items: &546 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -82255,7 +82271,7 @@ paths: - color - default examples: - default: &546 + default: &547 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82273,9 +82289,9 @@ paths: default: false headers: Link: *37 - '301': *372 + '301': *373 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82292,9 +82308,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: false content: @@ -82353,12 +82369,12 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: *546 - '301': *372 + default: *547 + '301': *373 '404': *6 - '410': *369 + '410': *370 '422': *15 x-github: githubCloudOnly: false @@ -82375,9 +82391,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: false content: @@ -82437,12 +82453,12 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: *546 - '301': *372 + default: *547 + '301': *373 '404': *6 - '410': *369 + '410': *370 '422': *15 x-github: githubCloudOnly: false @@ -82459,15 +82475,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 responses: '204': description: Response - '301': *372 + '301': *373 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82486,9 +82502,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 - name: name in: path required: true @@ -82501,7 +82517,7 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: default: value: @@ -82512,9 +82528,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *372 + '301': *373 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82534,9 +82550,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: false content: @@ -82565,7 +82581,7 @@ paths: '204': description: Response '403': *27 - '410': *369 + '410': *370 '404': *6 '422': *15 x-github: @@ -82583,9 +82599,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 responses: '204': description: Response @@ -82607,9 +82623,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -82635,13 +82651,13 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82659,9 +82675,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: true content: @@ -82693,16 +82709,16 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '201': description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '422': *15 x-github: githubCloudOnly: false @@ -82724,10 +82740,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *358 - *359 - - *543 - - *350 + - *360 + - *544 + - *351 responses: '204': description: Response @@ -82756,9 +82772,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: true content: @@ -82782,7 +82798,7 @@ paths: application/json: schema: *148 examples: - default: *542 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -82815,9 +82831,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *358 - *359 - - *543 + - *360 + - *544 - *17 - *19 responses: @@ -82829,11 +82845,11 @@ paths: type: array items: *148 examples: - default: *547 + default: *548 headers: Link: *37 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82861,9 +82877,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: true content: @@ -82892,14 +82908,14 @@ paths: application/json: schema: *148 examples: - default: *542 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *369 + '410': *370 '422': *15 '404': *6 x-github: @@ -82919,9 +82935,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: true content: @@ -82954,7 +82970,7 @@ paths: application/json: schema: *148 examples: - default: *542 + default: *543 '403': *27 '404': *6 '422': *7 @@ -82976,9 +82992,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 - *17 - *19 responses: @@ -82993,7 +83009,6 @@ paths: description: Timeline Event type: object anyOf: - - *548 - *549 - *550 - *551 @@ -83006,6 +83021,7 @@ paths: - *558 - *559 - *560 + - *561 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -83329,7 +83345,7 @@ paths: type: string comments: type: array - items: &580 + items: &581 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -83567,7 +83583,7 @@ paths: type: string comments: type: array - items: *475 + items: *476 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -83842,7 +83858,7 @@ paths: headers: Link: *37 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83859,8 +83875,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -83870,7 +83886,7 @@ paths: application/json: schema: type: array - items: &561 + items: &562 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -83937,8 +83953,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -83974,9 +83990,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: &562 + default: &563 value: id: 1 key: ssh-rsa AAA... @@ -84010,9 +84026,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *358 - *359 - - &563 + - *360 + - &564 name: key_id description: The unique identifier of the key. in: path @@ -84024,9 +84040,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 '404': *6 x-github: githubCloudOnly: false @@ -84044,9 +84060,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *358 - *359 - - *563 + - *360 + - *564 responses: '204': description: Response @@ -84066,8 +84082,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -84077,9 +84093,9 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: *546 + default: *547 headers: Link: *37 '404': *6 @@ -84100,8 +84116,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -84137,9 +84153,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: &564 + default: &565 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84171,8 +84187,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *358 - *359 + - *360 - name: name in: path required: true @@ -84183,9 +84199,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: *564 + default: *565 '404': *6 x-github: githubCloudOnly: false @@ -84202,8 +84218,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *358 - *359 + - *360 - name: name in: path required: true @@ -84242,7 +84258,7 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: default: value: @@ -84268,8 +84284,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *358 - *359 + - *360 - name: name in: path required: true @@ -84295,8 +84311,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -84332,8 +84348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *358 - *359 + - *360 responses: '202': *93 '403': @@ -84361,8 +84377,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -84388,9 +84404,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *358 - *359 - - *453 + - *360 + - *454 responses: '200': description: Response @@ -84537,8 +84553,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -84603,8 +84619,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -84638,9 +84654,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *476 + schema: *477 examples: - default: *565 + default: *566 '204': description: Response when already merged '404': @@ -84665,8 +84681,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *358 - *359 + - *360 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -84707,7 +84723,7 @@ paths: application/json: schema: type: array - items: *480 + items: *481 examples: default: value: @@ -84763,8 +84779,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -84804,9 +84820,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: - default: &566 + default: &567 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -84865,9 +84881,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *358 - *359 - - &567 + - *360 + - &568 name: milestone_number description: The number that identifies the milestone. in: path @@ -84879,9 +84895,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: - default: *566 + default: *567 '404': *6 x-github: githubCloudOnly: false @@ -84898,9 +84914,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *358 - *359 - - *567 + - *360 + - *568 requestBody: required: false content: @@ -84938,9 +84954,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: - default: *566 + default: *567 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84956,9 +84972,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *358 - *359 - - *567 + - *360 + - *568 responses: '204': description: Response @@ -84979,9 +84995,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *358 - *359 - - *567 + - *360 + - *568 - *17 - *19 responses: @@ -84991,9 +85007,9 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: *546 + default: *547 headers: Link: *37 x-github: @@ -85012,12 +85028,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *358 - *359 - - *568 + - *360 - *569 - - *138 - *570 + - *138 + - *571 - *17 - *19 responses: @@ -85029,7 +85045,7 @@ paths: type: array items: *160 examples: - default: *571 + default: *572 headers: Link: *37 x-github: @@ -85053,8 +85069,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *358 - *359 + - *360 requestBody: required: false content: @@ -85112,14 +85128,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: &572 + schema: &573 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -85263,7 +85279,7 @@ paths: - custom_404 - public examples: - default: &573 + default: &574 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -85304,8 +85320,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -85360,9 +85376,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: *573 + default: *574 '422': *15 '409': *92 x-github: @@ -85385,8 +85401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -85494,8 +85510,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -85521,8 +85537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -85532,7 +85548,7 @@ paths: application/json: schema: type: array - items: &574 + items: &575 title: Page Build description: Page Build type: object @@ -85624,8 +85640,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *358 - *359 + - *360 responses: '201': description: Response @@ -85672,16 +85688,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *574 + schema: *575 examples: - default: &575 + default: &576 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -85729,8 +85745,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *358 - *359 + - *360 - name: build_id in: path required: true @@ -85741,9 +85757,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: - default: *575 + default: *576 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85763,8 +85779,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -85872,9 +85888,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *358 - *359 - - &576 + - *360 + - &577 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -85932,9 +85948,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *358 - *359 - - *576 + - *360 + - *577 responses: '204': *114 '404': *6 @@ -85961,8 +85977,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -86257,8 +86273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Private vulnerability reporting status @@ -86295,8 +86311,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': *114 '422': *14 @@ -86317,8 +86333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': *114 '422': *14 @@ -86341,8 +86357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-repository-projects parameters: - - *358 - *359 + - *360 - name: state description: Indicates the state of the projects to return. in: query @@ -86363,7 +86379,7 @@ paths: application/json: schema: type: array - items: *307 + items: *308 examples: default: value: @@ -86403,7 +86419,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *369 + '410': *370 '422': *7 x-github: githubCloudOnly: false @@ -86426,8 +86442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-a-repository-project parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -86453,13 +86469,13 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *368 + default: *369 '401': *23 '403': *27 '404': *6 - '410': *369 + '410': *370 '422': *7 x-github: githubCloudOnly: false @@ -86482,8 +86498,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -86491,7 +86507,7 @@ paths: application/json: schema: type: array - items: *309 + items: *310 examples: default: value: @@ -86522,8 +86538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -86535,7 +86551,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *309 + items: *310 required: - properties examples: @@ -86585,8 +86601,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *358 - *359 + - *360 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -86646,9 +86662,9 @@ paths: application/json: schema: type: array - items: *577 + items: *578 examples: - default: *578 + default: *579 headers: Link: *37 '304': *35 @@ -86680,8 +86696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -86748,7 +86764,7 @@ paths: description: Response content: application/json: - schema: &582 + schema: &583 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -86877,7 +86893,7 @@ paths: milestone: anyOf: - type: 'null' - - *480 + - *481 active_lock_reason: type: - string @@ -86970,14 +86986,14 @@ paths: _links: type: object properties: - comments: *481 - commits: *481 - statuses: *481 - html: *481 - issue: *481 - review_comments: *481 - review_comment: *481 - self: *481 + comments: *482 + commits: *482 + statuses: *482 + html: *482 + issue: *482 + review_comments: *482 + review_comment: *482 + self: *482 required: - comments - commits @@ -86988,7 +87004,7 @@ paths: - review_comment - self author_association: *135 - auto_merge: *579 + auto_merge: *580 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -87090,7 +87106,7 @@ paths: - merged_by - review_comments examples: - default: &583 + default: &584 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -87617,8 +87633,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *358 - *359 + - *360 - name: sort in: query required: false @@ -87647,9 +87663,9 @@ paths: application/json: schema: type: array - items: *580 + items: *581 examples: - default: &585 + default: &586 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87726,17 +87742,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *358 - *359 + - *360 - *147 responses: '200': description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: &581 + default: &582 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87811,8 +87827,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *358 - *359 + - *360 - *147 requestBody: required: true @@ -87835,9 +87851,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: *581 + default: *582 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87853,8 +87869,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *358 - *359 + - *360 - *147 responses: '204': @@ -87876,8 +87892,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *358 - *359 + - *360 - *147 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -87904,9 +87920,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 '404': *6 @@ -87927,8 +87943,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *358 - *359 + - *360 - *147 requestBody: required: true @@ -87961,16 +87977,16 @@ paths: description: Reaction exists content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '201': description: Reaction created content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '422': *15 x-github: githubCloudOnly: false @@ -87992,10 +88008,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *358 - *359 + - *360 - *147 - - *350 + - *351 responses: '204': description: Response @@ -88038,9 +88054,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *358 - *359 - - &584 + - *360 + - &585 name: pull_number description: The number that identifies the pull request. in: path @@ -88053,9 +88069,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *582 + schema: *583 examples: - default: *583 + default: *584 '304': *35 '404': *6 '406': @@ -88090,9 +88106,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: false content: @@ -88134,9 +88150,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: *583 + default: *584 '422': *15 '403': *27 x-github: @@ -88158,9 +88174,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: true content: @@ -88223,7 +88239,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '202': description: Response when the codespace creation partially failed but is being retried in the background @@ -88231,7 +88247,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '401': *23 '403': *27 '404': *6 @@ -88261,9 +88277,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 - *157 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -88284,9 +88300,9 @@ paths: application/json: schema: type: array - items: *580 + items: *581 examples: - default: *585 + default: *586 headers: Link: *37 x-github: @@ -88319,9 +88335,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: true content: @@ -88427,7 +88443,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: example-for-a-multi-line-comment: value: @@ -88515,9 +88531,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *358 - *359 - - *584 + - *360 + - *585 - *147 requestBody: required: true @@ -88540,7 +88556,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: default: value: @@ -88626,9 +88642,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 - *17 - *19 responses: @@ -88638,9 +88654,9 @@ paths: application/json: schema: type: array - items: *476 + items: *477 examples: - default: *586 + default: *587 headers: Link: *37 x-github: @@ -88670,9 +88686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *358 - *359 - - *584 + - *360 + - *585 - *17 - *19 responses: @@ -88682,7 +88698,7 @@ paths: application/json: schema: type: array - items: *488 + items: *489 examples: default: value: @@ -88720,9 +88736,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *358 - *359 - - *584 + - *360 + - *585 responses: '204': description: Response if pull request has been merged @@ -88745,9 +88761,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: false content: @@ -88859,9 +88875,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 responses: '200': description: Response @@ -88936,9 +88952,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: false content: @@ -88975,7 +88991,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *578 examples: default: value: @@ -89511,9 +89527,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: true content: @@ -89547,7 +89563,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *578 examples: default: value: @@ -90052,9 +90068,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 - *17 - *19 responses: @@ -90064,7 +90080,7 @@ paths: application/json: schema: type: array - items: &587 + items: &588 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -90220,9 +90236,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: false content: @@ -90312,9 +90328,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: &589 + default: &590 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90377,10 +90393,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *358 - *359 - - *584 - - &588 + - *360 + - *585 + - &589 name: review_id description: The unique identifier of the review. in: path @@ -90392,9 +90408,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: &590 + default: &591 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90453,10 +90469,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *358 - *359 - - *584 - - *588 + - *360 + - *585 + - *589 requestBody: required: true content: @@ -90479,7 +90495,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: default: value: @@ -90541,18 +90557,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *358 - *359 - - *584 - - *588 + - *360 + - *585 + - *589 responses: '200': description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: *589 + default: *590 '422': *7 '404': *6 x-github: @@ -90579,10 +90595,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *358 - *359 - - *584 - - *588 + - *360 + - *585 + - *589 - *17 - *19 responses: @@ -90680,9 +90696,9 @@ paths: _links: type: object properties: - self: *481 - html: *481 - pull_request: *481 + self: *482 + html: *482 + pull_request: *482 required: - self - html @@ -90833,10 +90849,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *358 - *359 - - *584 - - *588 + - *360 + - *585 + - *589 requestBody: required: true content: @@ -90865,7 +90881,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: default: value: @@ -90928,10 +90944,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *358 - *359 - - *584 - - *588 + - *360 + - *585 + - *589 requestBody: required: true content: @@ -90966,9 +90982,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: *590 + default: *591 '404': *6 '422': *7 '403': *27 @@ -90990,9 +91006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: false content: @@ -91056,8 +91072,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *358 - *359 + - *360 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -91070,9 +91086,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: - default: &592 + default: &593 value: type: file encoding: base64 @@ -91114,8 +91130,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *358 - *359 + - *360 - name: dir description: The alternate path to look for a README file in: path @@ -91135,9 +91151,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: - default: *592 + default: *593 '404': *6 '422': *15 x-github: @@ -91159,8 +91175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -91170,7 +91186,7 @@ paths: application/json: schema: type: array - items: &593 + items: &594 title: Release description: A release. type: object @@ -91242,7 +91258,7 @@ paths: author: *4 assets: type: array - items: &594 + items: &595 title: Release Asset description: Data related to a release. type: object @@ -91422,8 +91438,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -91499,9 +91515,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *594 examples: - default: &597 + default: &598 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -91604,9 +91620,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *358 - *359 - - &595 + - *360 + - &596 name: asset_id description: The unique identifier of the asset. in: path @@ -91618,9 +91634,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: &596 + default: &597 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -91654,7 +91670,7 @@ paths: type: User site_admin: false '404': *6 - '302': *490 + '302': *491 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91670,9 +91686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *358 - *359 - - *595 + - *360 + - *596 requestBody: required: false content: @@ -91701,9 +91717,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: *596 + default: *597 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91719,9 +91735,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *358 - *359 - - *595 + - *360 + - *596 responses: '204': description: Response @@ -91745,8 +91761,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -91832,16 +91848,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *593 + schema: *594 examples: - default: *597 + default: *598 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91858,8 +91874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *358 - *359 + - *360 - name: tag description: tag parameter in: path @@ -91872,9 +91888,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *594 examples: - default: *597 + default: *598 '404': *6 x-github: githubCloudOnly: false @@ -91896,9 +91912,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *358 - *359 - - &598 + - *360 + - &599 name: release_id description: The unique identifier of the release. in: path @@ -91912,9 +91928,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *593 + schema: *594 examples: - default: *597 + default: *598 '401': description: Unauthorized x-github: @@ -91932,9 +91948,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *358 - *359 - - *598 + - *360 + - *599 requestBody: required: false content: @@ -91998,9 +92014,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *594 examples: - default: *597 + default: *598 '404': description: Not Found if the discussion category name is invalid content: @@ -92021,9 +92037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *358 - *359 - - *598 + - *360 + - *599 responses: '204': description: Response @@ -92043,9 +92059,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *358 - *359 - - *598 + - *360 + - *599 - *17 - *19 responses: @@ -92055,7 +92071,7 @@ paths: application/json: schema: type: array - items: *594 + items: *595 examples: default: value: @@ -92136,9 +92152,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *358 - *359 - - *598 + - *360 + - *599 - name: name in: query required: true @@ -92164,7 +92180,7 @@ paths: description: Response for successful upload content: application/json: - schema: *594 + schema: *595 examples: response-for-successful-upload: value: @@ -92218,9 +92234,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *358 - *359 - - *598 + - *360 + - *599 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -92244,9 +92260,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 '404': *6 @@ -92267,9 +92283,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *358 - *359 - - *598 + - *360 + - *599 requestBody: required: true content: @@ -92299,16 +92315,16 @@ paths: description: Reaction exists content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '201': description: Reaction created content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '422': *15 x-github: githubCloudOnly: false @@ -92330,10 +92346,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *358 - *359 - - *598 - - *350 + - *360 + - *599 + - *351 responses: '204': description: Response @@ -92357,9 +92373,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *358 - *359 - - *417 + - *360 + - *418 - *17 - *19 responses: @@ -92375,8 +92391,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *599 - - &601 + - *600 + - &602 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -92396,53 +92412,53 @@ paths: type: integer description: The ID of the ruleset that includes this rule. - allOf: - - *600 - *601 - - allOf: - *602 - - *601 - allOf: - *603 - - *601 + - *602 - allOf: - *604 - - *601 + - *602 - allOf: - *605 - - *601 + - *602 - allOf: - *606 - - *601 + - *602 - allOf: - *607 - - *601 + - *602 - allOf: - *608 - - *601 + - *602 - allOf: - *609 - - *601 + - *602 - allOf: - *610 - - *601 + - *602 - allOf: - *611 - - *601 + - *602 - allOf: - *612 - - *601 + - *602 - allOf: - *613 - - *601 + - *602 - allOf: - *614 - - *601 + - *602 - allOf: - *615 - - *601 + - *602 - allOf: - *616 - - *601 + - *602 + - allOf: + - *617 + - *602 examples: default: value: @@ -92481,8 +92497,8 @@ paths: category: repos subcategory: rules parameters: - - *358 - *359 + - *360 - *17 - *19 - name: includes_parents @@ -92493,7 +92509,7 @@ paths: schema: type: boolean default: true - - *617 + - *618 responses: '200': description: Response @@ -92548,8 +92564,8 @@ paths: category: repos subcategory: rules parameters: - - *358 - *359 + - *360 requestBody: description: Request body required: true @@ -92611,7 +92627,7 @@ paths: application/json: schema: *124 examples: - default: &626 + default: &627 value: id: 42 name: super cool ruleset @@ -92658,12 +92674,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *358 - *359 - - *618 - - *215 + - *360 - *619 + - *215 - *620 + - *621 - *17 - *19 responses: @@ -92671,9 +92687,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *622 examples: - default: *622 + default: *623 '404': *6 '500': *95 x-github: @@ -92694,17 +92710,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *358 - *359 - - *623 + - *360 + - *624 responses: '200': description: Response content: application/json: - schema: *624 + schema: *625 examples: - default: *625 + default: *626 '404': *6 '500': *95 x-github: @@ -92732,8 +92748,8 @@ paths: category: repos subcategory: rules parameters: - - *358 - *359 + - *360 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92755,7 +92771,7 @@ paths: application/json: schema: *124 examples: - default: *626 + default: *627 '404': *6 '500': *95 put: @@ -92773,8 +92789,8 @@ paths: category: repos subcategory: rules parameters: - - *358 - *359 + - *360 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92838,7 +92854,7 @@ paths: application/json: schema: *124 examples: - default: *626 + default: *627 '404': *6 '500': *95 delete: @@ -92856,8 +92872,8 @@ paths: category: repos subcategory: rules parameters: - - *358 - *359 + - *360 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92880,8 +92896,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *358 - *359 + - *360 - *17 - *19 - name: ruleset_id @@ -92899,7 +92915,7 @@ paths: type: array items: *127 examples: - default: *315 + default: *316 '404': *6 '500': *95 x-github: @@ -92918,8 +92934,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *358 - *359 + - *360 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92937,7 +92953,7 @@ paths: description: Response content: application/json: - schema: *316 + schema: *317 examples: default: value: @@ -92992,20 +93008,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *358 - *359 - - *317 + - *360 - *318 - *319 - *320 + - *321 - *84 - *19 - *17 - - *627 - *628 - - *321 + - *629 - *322 - *323 + - *324 responses: '200': description: Response @@ -93013,7 +93029,7 @@ paths: application/json: schema: type: array - items: &631 + items: &632 type: object properties: number: *96 @@ -93029,8 +93045,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *629 - resolution: *630 + state: *630 + resolution: *631 resolved_at: type: - string @@ -93249,15 +93265,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 responses: '200': description: Response content: application/json: - schema: *631 + schema: *632 examples: default: value: @@ -93309,9 +93325,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 requestBody: required: true content: @@ -93319,8 +93335,8 @@ paths: schema: type: object properties: - state: *629 - resolution: *630 + state: *630 + resolution: *631 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -93339,7 +93355,7 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: default: value: @@ -93414,9 +93430,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 - *19 - *17 responses: @@ -93427,7 +93443,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &787 + items: &788 type: object properties: type: @@ -93806,8 +93822,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -93815,14 +93831,14 @@ paths: schema: type: object properties: - reason: &633 + reason: &634 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *632 + placeholder_id: *633 required: - reason - placeholder_id @@ -93839,7 +93855,7 @@ paths: schema: type: object properties: - reason: *633 + reason: *634 expire_at: type: - string @@ -93883,8 +93899,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *358 - *359 + - *360 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -93899,7 +93915,7 @@ paths: properties: incremental_scans: type: array - items: &634 + items: &635 description: Information on a single scan performed by secret scanning on the repository type: object @@ -93927,15 +93943,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *634 + items: *635 backfill_scans: type: array - items: *634 + items: *635 custom_pattern_backfill_scans: type: array items: allOf: - - *634 + - *635 - type: object properties: pattern_name: @@ -94005,8 +94021,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *358 - *359 + - *360 - *84 - name: sort description: The property to sort the results by. @@ -94050,9 +94066,9 @@ paths: application/json: schema: type: array - items: *635 + items: *636 examples: - default: *636 + default: *637 '400': *14 '404': *6 x-github: @@ -94075,8 +94091,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -94156,7 +94172,7 @@ paths: login: type: string description: The username of the user credited. - type: *326 + type: *327 required: - login - type @@ -94246,9 +94262,9 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: - default: &638 + default: &639 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -94481,8 +94497,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -94595,7 +94611,7 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: default: value: @@ -94742,17 +94758,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *358 - *359 - - *637 + - *360 + - *638 responses: '200': description: Response content: application/json: - schema: *635 + schema: *636 examples: - default: *638 + default: *639 '403': *27 '404': *6 x-github: @@ -94776,9 +94792,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *358 - *359 - - *637 + - *360 + - *638 requestBody: required: true content: @@ -94858,7 +94874,7 @@ paths: login: type: string description: The username of the user credited. - type: *326 + type: *327 required: - login - type @@ -94949,10 +94965,10 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: - default: *638 - add_credit: *638 + default: *639 + add_credit: *639 '403': *27 '404': *6 '422': @@ -94990,9 +95006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *358 - *359 - - *637 + - *360 + - *638 responses: '202': *93 '400': *14 @@ -95019,17 +95035,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *358 - *359 - - *637 + - *360 + - *638 responses: '202': description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *373 + default: *374 '400': *14 '422': *15 '403': *27 @@ -95055,8 +95071,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -95152,8 +95168,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *358 - *359 + - *360 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -95162,7 +95178,7 @@ paths: application/json: schema: type: array - items: &639 + items: &640 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -95195,8 +95211,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -95274,8 +95290,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -95369,8 +95385,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *358 - *359 + - *360 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -95524,8 +95540,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *358 - *359 + - *360 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -95535,7 +95551,7 @@ paths: application/json: schema: type: array - items: *639 + items: *640 examples: default: value: @@ -95568,8 +95584,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *358 - *359 + - *360 - name: sha in: path required: true @@ -95625,7 +95641,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *641 examples: default: value: @@ -95679,8 +95695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -95712,14 +95728,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *358 - *359 + - *360 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &641 + schema: &642 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -95792,8 +95808,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *358 - *359 + - *360 requestBody: required: false content: @@ -95819,7 +95835,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: default: value: @@ -95846,8 +95862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -95867,8 +95883,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -95950,8 +95966,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -95959,7 +95975,7 @@ paths: application/json: schema: type: array - items: &642 + items: &643 title: Tag protection description: Tag protection type: object @@ -96016,8 +96032,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -96040,7 +96056,7 @@ paths: description: Response content: application/json: - schema: *642 + schema: *643 examples: default: value: @@ -96071,8 +96087,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *358 - *359 + - *360 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -96109,8 +96125,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *358 - *359 + - *360 - name: ref in: path required: true @@ -96146,8 +96162,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -96179,8 +96195,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *358 - *359 + - *360 - *19 - *17 responses: @@ -96188,7 +96204,7 @@ paths: description: Response content: application/json: - schema: &643 + schema: &644 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -96200,7 +96216,7 @@ paths: required: - names examples: - default: &644 + default: &645 value: names: - octocat @@ -96223,8 +96239,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -96255,9 +96271,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: *644 + default: *645 '404': *6 '422': *7 x-github: @@ -96278,9 +96294,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *358 - *359 - - &645 + - *360 + - &646 name: per description: The time frame to display results for. in: query @@ -96311,7 +96327,7 @@ paths: - 128 clones: type: array - items: &646 + items: &647 title: Traffic type: object properties: @@ -96398,8 +96414,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -96493,8 +96509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -96557,9 +96573,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *358 - *359 - - *645 + - *360 + - *646 responses: '200': description: Response @@ -96580,7 +96596,7 @@ paths: - 3782 views: type: array - items: *646 + items: *647 required: - uniques - count @@ -96657,8 +96673,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -96932,8 +96948,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -96956,8 +96972,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -96979,8 +96995,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -97006,8 +97022,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *358 - *359 + - *360 - name: ref in: path required: true @@ -97099,9 +97115,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *373 + default: *374 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -97252,7 +97268,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &654 + - &655 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -97262,7 +97278,7 @@ paths: type: string examples: - members - - &659 + - &660 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -97274,7 +97290,7 @@ paths: format: int32 examples: - 1 - - &660 + - &661 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -97318,7 +97334,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &648 + items: &649 allOf: - type: object required: @@ -97400,7 +97416,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &661 + meta: &662 type: object description: The metadata associated with the creation/updates to the user. @@ -97465,31 +97481,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &649 + '400': &650 description: Bad request content: application/json: - schema: *647 + schema: *648 application/scim+json: - schema: *647 - '401': &650 + schema: *648 + '401': &651 description: Authorization failure - '403': &651 + '403': &652 description: Permission denied - '429': &652 + '429': &653 description: Too many requests content: application/json: - schema: *647 + schema: *648 application/scim+json: - schema: *647 - '500': &653 + schema: *648 + '500': &654 description: Internal server error content: application/json: - schema: *647 + schema: *648 application/scim+json: - schema: *647 + schema: *648 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97513,7 +97529,7 @@ paths: required: true content: application/json: - schema: &657 + schema: &658 type: object required: - schemas @@ -97573,9 +97589,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *648 + schema: *649 examples: - group: &655 + group: &656 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -97594,13 +97610,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *649 - '401': *650 - '403': *651 - '409': &658 + '400': *650 + '401': *651 + '403': *652 + '409': &659 description: Duplicate record detected - '429': *652 - '500': *653 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97617,7 +97633,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &656 + - &657 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -97626,22 +97642,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *654 + - *655 - *38 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *648 + schema: *649 examples: - default: *655 - '400': *649 - '401': *650 - '403': *651 + default: *656 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '429': *652 - '500': *653 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97660,13 +97676,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *656 + - *657 - *38 requestBody: required: true content: application/json: - schema: *657 + schema: *658 examples: group: summary: Group @@ -97692,17 +97708,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *648 + schema: *649 examples: - group: *655 - groupWithMembers: *655 - '400': *649 - '401': *650 - '403': *651 + group: *656 + groupWithMembers: *656 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '409': *658 - '429': *652 - '500': *653 + '409': *659 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97726,13 +97742,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *656 + - *657 - *38 requestBody: required: true content: application/json: - schema: &668 + schema: &669 type: object required: - Operations @@ -97792,17 +97808,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *648 + schema: *649 examples: - updateGroup: *655 - addMembers: *655 - '400': *649 - '401': *650 - '403': *651 + updateGroup: *656 + addMembers: *656 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '409': *658 - '429': *652 - '500': *653 + '409': *659 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97818,17 +97834,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *656 + - *657 - *38 responses: '204': description: Group was deleted, no content - '400': *649 - '401': *650 - '403': *651 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '429': *652 - '500': *653 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97862,8 +97878,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *659 - *660 + - *661 - *38 responses: '200': @@ -97897,7 +97913,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &663 + items: &664 allOf: - type: object required: @@ -97989,7 +98005,7 @@ paths: address. examples: - true - roles: &662 + roles: &663 type: array description: The roles assigned to the user. items: @@ -98048,7 +98064,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *661 + meta: *662 startIndex: type: integer description: A starting index for the returned page @@ -98087,11 +98103,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *649 - '401': *650 - '403': *651 - '429': *652 - '500': *653 + '400': *650 + '401': *651 + '403': *652 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98115,7 +98131,7 @@ paths: required: true content: application/json: - schema: &666 + schema: &667 type: object required: - schemas @@ -98208,9 +98224,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *662 + roles: *663 examples: - user: &667 + user: &668 summary: User value: schemas: @@ -98257,9 +98273,9 @@ paths: description: User has been created content: application/scim+json: - schema: *663 + schema: *664 examples: - user: &664 + user: &665 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -98285,13 +98301,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *664 - '400': *649 - '401': *650 - '403': *651 - '409': *658 - '429': *652 - '500': *653 + enterpriseOwner: *665 + '400': *650 + '401': *651 + '403': *652 + '409': *659 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98308,7 +98324,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &665 + - &666 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -98321,15 +98337,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *663 + schema: *664 examples: - default: *664 - '400': *649 - '401': *650 - '403': *651 + default: *665 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '429': *652 - '500': *653 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98351,30 +98367,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *665 + - *666 - *38 requestBody: required: true content: application/json: - schema: *666 + schema: *667 examples: - user: *667 + user: *668 responses: '200': description: User was updated content: application/scim+json: - schema: *663 + schema: *664 examples: - user: *664 - '400': *649 - '401': *650 - '403': *651 + user: *665 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '409': *658 - '429': *652 - '500': *653 + '409': *659 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98409,13 +98425,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *665 + - *666 - *38 requestBody: required: true content: application/json: - schema: *668 + schema: *669 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -98455,18 +98471,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *663 - examples: - userMultiValuedProperties: *664 - userSingleValuedProperties: *664 - disableUser: *664 - '400': *649 - '401': *650 - '403': *651 + schema: *664 + examples: + userMultiValuedProperties: *665 + userSingleValuedProperties: *665 + disableUser: *665 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '409': *658 - '429': *652 - '500': *653 + '409': *659 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98486,17 +98502,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *665 + - *666 - *38 responses: '204': description: User was deleted, no content - '400': *649 - '401': *650 - '403': *651 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '429': *652 - '500': *653 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98587,7 +98603,7 @@ paths: - 1 Resources: type: array - items: &669 + items: &670 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -98834,22 +98850,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &670 + '404': &671 description: Resource not found content: application/json: - schema: *647 + schema: *648 application/scim+json: - schema: *647 - '403': &671 + schema: *648 + '403': &672 description: Forbidden content: application/json: - schema: *647 + schema: *648 application/scim+json: - schema: *647 - '400': *649 - '429': *652 + schema: *648 + '400': *650 + '429': *653 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -98875,9 +98891,9 @@ paths: description: Response content: application/scim+json: - schema: *669 + schema: *670 examples: - default: &672 + default: &673 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -98900,17 +98916,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *670 - '403': *671 - '500': *653 + '404': *671 + '403': *672 + '500': *654 '409': description: Conflict content: application/json: - schema: *647 + schema: *648 application/scim+json: - schema: *647 - '400': *649 + schema: *648 + '400': *650 requestBody: required: true content: @@ -99005,17 +99021,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *164 - - *665 + - *666 responses: '200': description: Response content: application/scim+json: - schema: *669 + schema: *670 examples: - default: *672 - '404': *670 - '403': *671 + default: *673 + '404': *671 + '403': *672 '304': *35 x-github: githubCloudOnly: true @@ -99039,18 +99055,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *164 - - *665 + - *666 responses: '200': description: Response content: application/scim+json: - schema: *669 + schema: *670 examples: - default: *672 + default: *673 '304': *35 - '404': *670 - '403': *671 + '404': *671 + '403': *672 requestBody: required: true content: @@ -99161,19 +99177,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *164 - - *665 + - *666 responses: '200': description: Response content: application/scim+json: - schema: *669 + schema: *670 examples: - default: *672 + default: *673 '304': *35 - '404': *670 - '403': *671 - '400': *649 + '404': *671 + '403': *672 + '400': *650 '429': description: Response content: @@ -99269,12 +99285,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *164 - - *665 + - *666 responses: '204': description: Response - '404': *670 - '403': *671 + '404': *671 + '403': *672 '304': *35 x-github: githubCloudOnly: true @@ -99408,7 +99424,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &673 + text_matches: &674 title: Search Result Text Matches type: array items: @@ -99572,7 +99588,7 @@ paths: enum: - author-date - committer-date - - &674 + - &675 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 @@ -99641,7 +99657,7 @@ paths: committer: anyOf: - type: 'null' - - *415 + - *416 comment_count: type: integer message: @@ -99660,7 +99676,7 @@ paths: url: type: string format: uri - verification: *525 + verification: *526 required: - author - committer @@ -99675,7 +99691,7 @@ paths: committer: anyOf: - type: 'null' - - *415 + - *416 parents: type: array items: @@ -99692,7 +99708,7 @@ paths: type: number node_id: type: string - text_matches: *673 + text_matches: *674 required: - sha - node_id @@ -99874,7 +99890,7 @@ paths: - interactions - created - updated - - *674 + - *675 - *17 - *19 - name: advanced_search @@ -99998,7 +100014,7 @@ paths: milestone: anyOf: - type: 'null' - - *480 + - *481 comments: type: integer created_at: @@ -100012,7 +100028,7 @@ paths: - string - 'null' format: date-time - text_matches: *673 + text_matches: *674 pull_request: type: object properties: @@ -100237,7 +100253,7 @@ paths: enum: - created - updated - - *674 + - *675 - *17 - *19 responses: @@ -100282,7 +100298,7 @@ paths: - 'null' score: type: number - text_matches: *673 + text_matches: *674 required: - id - node_id @@ -100368,7 +100384,7 @@ paths: - forks - help-wanted-issues - updated - - *674 + - *675 - *17 - *19 responses: @@ -100605,7 +100621,7 @@ paths: - admin - pull - push - text_matches: *673 + text_matches: *674 temp_clone_token: type: string allow_merge_commit: @@ -100914,7 +100930,7 @@ paths: - string - 'null' format: uri - text_matches: *673 + text_matches: *674 related: type: - array @@ -101109,7 +101125,7 @@ paths: - followers - repositories - joined - - *674 + - *675 - *17 - *19 responses: @@ -101219,7 +101235,7 @@ paths: type: - boolean - 'null' - text_matches: *673 + text_matches: *674 blog: type: - string @@ -101301,7 +101317,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &675 + - &676 name: team_id description: The unique identifier of the team. in: path @@ -101313,9 +101329,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '404': *6 x-github: githubCloudOnly: false @@ -101342,7 +101358,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *675 + - *676 requestBody: required: true content: @@ -101406,16 +101422,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '201': description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '404': *6 '422': *15 '403': *27 @@ -101443,7 +101459,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *675 + - *676 responses: '204': description: Response @@ -101474,7 +101490,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *675 + - *676 - *84 - *17 - *19 @@ -101485,9 +101501,9 @@ paths: application/json: schema: type: array - items: *341 + items: *342 examples: - default: *676 + default: *677 headers: Link: *37 x-github: @@ -101516,7 +101532,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *675 + - *676 requestBody: required: true content: @@ -101550,9 +101566,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: *342 + default: *343 x-github: triggersNotification: true githubCloudOnly: false @@ -101579,16 +101595,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *675 - - *343 + - *676 + - *344 responses: '200': description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: *342 + default: *343 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101613,8 +101629,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *675 - - *343 + - *676 + - *344 requestBody: required: false content: @@ -101637,9 +101653,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: *677 + default: *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101664,8 +101680,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *675 - - *343 + - *676 + - *344 responses: '204': description: Response @@ -101694,8 +101710,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *675 - - *343 + - *676 + - *344 - *84 - *17 - *19 @@ -101706,9 +101722,9 @@ paths: application/json: schema: type: array - items: *344 + items: *345 examples: - default: *678 + default: *679 headers: Link: *37 x-github: @@ -101737,8 +101753,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *675 - - *343 + - *676 + - *344 requestBody: required: true content: @@ -101760,9 +101776,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *345 + default: *346 x-github: triggersNotification: true githubCloudOnly: false @@ -101789,17 +101805,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *675 - - *343 - - *346 + - *676 + - *344 + - *347 responses: '200': description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *345 + default: *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101824,9 +101840,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *675 - - *343 - - *346 + - *676 + - *344 + - *347 requestBody: required: true content: @@ -101848,9 +101864,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *679 + default: *680 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101875,9 +101891,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *675 - - *343 - - *346 + - *676 + - *344 + - *347 responses: '204': description: Response @@ -101906,9 +101922,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *675 - - *343 - - *346 + - *676 + - *344 + - *347 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -101934,9 +101950,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 x-github: @@ -101965,9 +101981,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *675 - - *343 - - *346 + - *676 + - *344 + - *347 requestBody: required: true content: @@ -101999,9 +102015,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102027,8 +102043,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *675 - - *343 + - *676 + - *344 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -102054,9 +102070,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 x-github: @@ -102085,8 +102101,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *675 - - *343 + - *676 + - *344 requestBody: required: true content: @@ -102118,9 +102134,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102144,7 +102160,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *675 + - *676 - *17 - *19 responses: @@ -102182,7 +102198,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *675 + - *676 - name: role description: Filters members returned by their role in the team. in: query @@ -102233,7 +102249,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *675 + - *676 - *212 responses: '204': @@ -102270,7 +102286,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *675 + - *676 - *212 responses: '204': @@ -102310,7 +102326,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *675 + - *676 - *212 responses: '204': @@ -102347,16 +102363,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *675 + - *676 - *212 responses: '200': description: Response content: application/json: - schema: *355 + schema: *356 examples: - response-if-user-is-a-team-maintainer: *680 + response-if-user-is-a-team-maintainer: *681 '404': *6 x-github: githubCloudOnly: false @@ -102389,7 +102405,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *675 + - *676 - *212 requestBody: required: false @@ -102415,9 +102431,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *356 examples: - response-if-users-membership-with-team-is-now-pending: *681 + response-if-users-membership-with-team-is-now-pending: *682 '403': description: Forbidden if team synchronization is set up '422': @@ -102451,7 +102467,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *675 + - *676 - *212 responses: '204': @@ -102480,7 +102496,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *675 + - *676 - *17 - *19 responses: @@ -102490,9 +102506,9 @@ paths: application/json: schema: type: array - items: *356 + items: *357 examples: - default: *682 + default: *683 headers: Link: *37 '404': *6 @@ -102518,16 +102534,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *675 - - *357 + - *676 + - *358 responses: '200': description: Response content: application/json: - schema: *356 + schema: *357 examples: - default: *683 + default: *684 '404': description: Not Found if project is not managed by this team x-github: @@ -102551,8 +102567,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *675 - - *357 + - *676 + - *358 requestBody: required: false content: @@ -102619,8 +102635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *675 - - *357 + - *676 + - *358 responses: '204': description: Response @@ -102647,7 +102663,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *675 + - *676 - *17 - *19 responses: @@ -102689,15 +102705,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *675 - - *358 + - *676 - *359 + - *360 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *684 + schema: *685 examples: alternative-response-with-extra-repository-information: value: @@ -102848,9 +102864,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *675 - - *358 + - *676 - *359 + - *360 requestBody: required: false content: @@ -102900,9 +102916,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *675 - - *358 + - *676 - *359 + - *360 responses: '204': description: Response @@ -102931,15 +102947,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *675 + - *676 responses: '200': description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *361 + default: *362 '403': *27 '404': *6 x-github: @@ -102966,7 +102982,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *675 + - *676 requestBody: required: true content: @@ -103027,7 +103043,7 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: default: value: @@ -103058,7 +103074,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *675 + - *676 - *17 - *19 responses: @@ -103070,7 +103086,7 @@ paths: type: array items: *277 examples: - response-if-child-teams-exist: *685 + response-if-child-teams-exist: *686 headers: Link: *37 '404': *6 @@ -103103,7 +103119,7 @@ paths: application/json: schema: oneOf: - - &687 + - &688 title: Private User description: Private User type: object @@ -103353,7 +103369,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *686 + - *687 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -103513,7 +103529,7 @@ paths: description: Response content: application/json: - schema: *687 + schema: *688 examples: default: value: @@ -103859,7 +103875,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '202': description: Response when the codespace creation partially failed but is being retried in the background @@ -103867,7 +103883,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '401': *23 '403': *27 '404': *6 @@ -103911,7 +103927,7 @@ paths: type: integer secrets: type: array - items: &688 + items: &689 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -103953,7 +103969,7 @@ paths: - visibility - selected_repositories_url examples: - default: *469 + default: *470 headers: Link: *37 x-github: @@ -104031,7 +104047,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: default: value: @@ -104177,7 +104193,7 @@ paths: type: array items: *190 examples: - default: *689 + default: *690 '401': *23 '403': *27 '404': *6 @@ -104329,7 +104345,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '304': *35 '500': *95 '401': *23 @@ -104387,7 +104403,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '401': *23 '403': *27 '404': *6 @@ -104444,7 +104460,7 @@ paths: description: Response content: application/json: - schema: &690 + schema: &691 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -104497,7 +104513,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &691 + default: &692 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -104542,9 +104558,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *691 examples: - default: *691 + default: *692 '404': *6 x-github: githubCloudOnly: false @@ -104581,9 +104597,9 @@ paths: type: integer machines: type: array - items: *468 + items: *469 examples: - default: *692 + default: *693 '304': *35 '500': *95 '401': *23 @@ -104668,11 +104684,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *371 + repository: *372 machine: anyOf: - type: 'null' - - *468 + - *469 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -105477,7 +105493,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '304': *35 '500': *95 '400': *14 @@ -105517,7 +105533,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '500': *95 '401': *23 '403': *27 @@ -105549,7 +105565,7 @@ paths: type: array items: *292 examples: - default: &705 + default: &706 value: - id: 197 name: hello_docker @@ -105650,7 +105666,7 @@ paths: application/json: schema: type: array - items: &693 + items: &694 title: Email description: Email type: object @@ -105720,9 +105736,9 @@ paths: application/json: schema: type: array - items: *693 + items: *694 examples: - default: &707 + default: &708 value: - email: octocat@github.com verified: true @@ -105799,7 +105815,7 @@ paths: application/json: schema: type: array - items: *693 + items: *694 examples: default: value: @@ -106057,7 +106073,7 @@ paths: application/json: schema: type: array - items: &694 + items: &695 title: GPG Key description: A unique encryption key type: object @@ -106202,7 +106218,7 @@ paths: - subkeys - revoked examples: - default: &718 + default: &719 value: - id: 3 name: Octocat's GPG Key @@ -106287,9 +106303,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *695 examples: - default: &695 + default: &696 value: id: 3 name: Octocat's GPG Key @@ -106346,7 +106362,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &696 + - &697 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -106358,9 +106374,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *695 examples: - default: *695 + default: *696 '404': *6 '304': *35 '403': *27 @@ -106383,7 +106399,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *696 + - *697 responses: '204': description: Response @@ -106574,7 +106590,7 @@ paths: type: array items: *61 examples: - default: *697 + default: *698 headers: Link: *37 '404': *6 @@ -106688,7 +106704,7 @@ paths: required: true content: application/json: - schema: *536 + schema: *537 examples: default: value: @@ -106838,7 +106854,7 @@ paths: application/json: schema: type: array - items: &698 + items: &699 title: Key description: Key type: object @@ -106936,9 +106952,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: - default: &699 + default: &700 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -106971,15 +106987,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *563 + - *564 responses: '200': description: Response content: application/json: - schema: *698 + schema: *699 examples: - default: *699 + default: *700 '404': *6 '304': *35 '403': *27 @@ -107002,7 +107018,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *563 + - *564 responses: '204': description: Response @@ -107035,7 +107051,7 @@ paths: application/json: schema: type: array - items: &700 + items: &701 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -107114,7 +107130,7 @@ paths: - account - plan examples: - default: &701 + default: &702 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -107176,9 +107192,9 @@ paths: application/json: schema: type: array - items: *700 + items: *701 examples: - default: *701 + default: *702 headers: Link: *37 '304': *35 @@ -108182,7 +108198,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - *287 - - *702 + - *703 responses: '204': description: Response @@ -108255,7 +108271,7 @@ paths: type: array items: *56 examples: - default: *703 + default: *704 headers: Link: *37 '304': *35 @@ -108297,7 +108313,7 @@ paths: - docker - nuget - container - - *704 + - *705 - *19 - *17 responses: @@ -108309,8 +108325,8 @@ paths: type: array items: *292 examples: - default: *705 - '400': *706 + default: *706 + '400': *707 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108339,7 +108355,7 @@ paths: application/json: schema: *292 examples: - default: &719 + default: &720 value: id: 40201 name: octo-name @@ -108722,7 +108738,7 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: default: value: @@ -108794,9 +108810,9 @@ paths: application/json: schema: type: array - items: *693 + items: *694 examples: - default: *707 + default: *708 headers: Link: *37 '304': *35 @@ -108909,7 +108925,7 @@ paths: type: array items: *61 examples: - default: &714 + default: &715 summary: Default response value: - id: 1296269 @@ -109225,9 +109241,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *373 + default: *374 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -109265,9 +109281,9 @@ paths: application/json: schema: type: array - items: *538 + items: *539 examples: - default: *708 + default: *709 headers: Link: *37 '304': *35 @@ -109346,7 +109362,7 @@ paths: application/json: schema: type: array - items: &709 + items: &710 title: Social account description: Social media account type: object @@ -109363,7 +109379,7 @@ paths: - provider - url examples: - default: &710 + default: &711 value: - provider: twitter url: https://twitter.com/github @@ -109426,9 +109442,9 @@ paths: application/json: schema: type: array - items: *709 + items: *710 examples: - default: *710 + default: *711 '422': *15 '304': *35 '404': *6 @@ -109516,7 +109532,7 @@ paths: application/json: schema: type: array - items: &711 + items: &712 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -109536,7 +109552,7 @@ paths: - title - created_at examples: - default: &720 + default: &721 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -109603,9 +109619,9 @@ paths: description: Response content: application/json: - schema: *711 + schema: *712 examples: - default: &712 + default: &713 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -109636,7 +109652,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &713 + - &714 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -109648,9 +109664,9 @@ paths: description: Response content: application/json: - schema: *711 + schema: *712 examples: - default: *712 + default: *713 '404': *6 '304': *35 '403': *27 @@ -109673,7 +109689,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *713 + - *714 responses: '204': description: Response @@ -109702,7 +109718,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &721 + - &722 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 @@ -109727,11 +109743,11 @@ paths: type: array items: *61 examples: - default-response: *714 + default-response: *715 application/vnd.github.v3.star+json: schema: type: array - items: &722 + items: &723 title: Starred Repository description: Starred Repository type: object @@ -109887,8 +109903,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *358 - *359 + - *360 responses: '204': description: Response if this repository is starred by you @@ -109916,8 +109932,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -109941,8 +109957,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -110014,7 +110030,7 @@ paths: application/json: schema: type: array - items: *339 + items: *340 examples: default: value: @@ -110100,10 +110116,10 @@ paths: application/json: schema: oneOf: + - *688 - *687 - - *686 examples: - default-response: &716 + default-response: &717 summary: Default response value: login: octocat @@ -110138,7 +110154,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &717 + response-with-git-hub-plan-information: &718 summary: Response with GitHub plan information value: login: octocat @@ -110198,7 +110214,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *715 + - *716 - *17 responses: '200': @@ -110247,11 +110263,11 @@ paths: application/json: schema: oneOf: + - *688 - *687 - - *686 examples: - default-response: *716 - response-with-git-hub-plan-information: *717 + default-response: *717 + response-with-git-hub-plan-information: *718 '404': *6 x-github: githubCloudOnly: false @@ -110327,7 +110343,7 @@ paths: bundle_url: type: string examples: - default: *411 + default: *412 '201': description: Response content: @@ -110368,7 +110384,7 @@ paths: type: array items: *292 examples: - default: *705 + default: *706 '403': *27 '401': *23 x-github: @@ -110772,9 +110788,9 @@ paths: application/json: schema: type: array - items: *694 + items: *695 examples: - default: *718 + default: *719 headers: Link: *37 x-github: @@ -110878,7 +110894,7 @@ paths: application/json: schema: *20 examples: - default: *535 + default: *536 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -110956,7 +110972,7 @@ paths: type: array items: *56 examples: - default: *703 + default: *704 headers: Link: *37 x-github: @@ -110995,7 +111011,7 @@ paths: - docker - nuget - container - - *704 + - *705 - *212 - *19 - *17 @@ -111008,10 +111024,10 @@ paths: type: array items: *292 examples: - default: *705 + default: *706 '403': *27 '401': *23 - '400': *706 + '400': *707 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111041,7 +111057,7 @@ paths: application/json: schema: *292 examples: - default: *719 + default: *720 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111327,7 +111343,7 @@ paths: application/json: schema: type: array - items: *307 + items: *308 examples: default: value: @@ -111640,9 +111656,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *328 + default: *329 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111670,9 +111686,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: *332 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111700,9 +111716,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111730,9 +111746,9 @@ paths: application/json: schema: type: array - items: *709 + items: *710 examples: - default: *710 + default: *711 headers: Link: *37 x-github: @@ -111762,9 +111778,9 @@ paths: application/json: schema: type: array - items: *711 + items: *712 examples: - default: *720 + default: *721 headers: Link: *37 x-github: @@ -111789,7 +111805,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *212 - - *721 + - *722 - *84 - *17 - *19 @@ -111801,11 +111817,11 @@ paths: schema: anyOf: - type: array - items: *722 + items: *723 - type: array items: *61 examples: - default-response: *714 + default-response: *715 headers: Link: *37 x-github: @@ -111965,7 +111981,7 @@ webhooks: type: string enum: - disabled - enterprise: &723 + enterprise: &724 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -112034,7 +112050,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &724 + installation: &725 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -112055,7 +112071,7 @@ webhooks: required: - id - node_id - organization: &725 + organization: &726 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -112128,7 +112144,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &726 + repository: &727 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -113041,10 +113057,10 @@ webhooks: type: string enum: - enabled - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -113120,11 +113136,11 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - rule: &727 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + rule: &728 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest//github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -113347,11 +113363,11 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - rule: *727 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + rule: *728 sender: *4 required: - action @@ -113539,11 +113555,11 @@ webhooks: - everyone required: - from - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - rule: *727 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + rule: *728 sender: *4 required: - action @@ -113616,7 +113632,7 @@ webhooks: required: true content: application/json: - schema: &730 + schema: &731 title: Exemption request cancellation event type: object properties: @@ -113624,11 +113640,11 @@ webhooks: type: string enum: - cancelled - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - exemption_request: &728 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + exemption_request: &729 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -113823,7 +113839,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &729 + items: &730 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -113935,7 +113951,7 @@ webhooks: required: true content: application/json: - schema: &731 + schema: &732 title: Exemption request completed event type: object properties: @@ -113943,11 +113959,11 @@ webhooks: type: string enum: - completed - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - exemption_request: *728 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + exemption_request: *729 sender: *4 required: - action @@ -114019,7 +114035,7 @@ webhooks: required: true content: application/json: - schema: &732 + schema: &733 title: Exemption request created event type: object properties: @@ -114027,11 +114043,11 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - exemption_request: *728 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + exemption_request: *729 sender: *4 required: - action @@ -114103,7 +114119,7 @@ webhooks: required: true content: application/json: - schema: &733 + schema: &734 title: Exemption response dismissed event type: object properties: @@ -114111,12 +114127,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - exemption_request: *728 - exemption_response: *729 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + exemption_request: *729 + exemption_response: *730 sender: *4 required: - action @@ -114190,7 +114206,7 @@ webhooks: required: true content: application/json: - schema: &734 + schema: &735 title: Exemption response submitted event type: object properties: @@ -114198,12 +114214,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - exemption_request: *728 - exemption_response: *729 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + exemption_request: *729 + exemption_response: *730 sender: *4 required: - action @@ -114276,7 +114292,7 @@ webhooks: required: true content: application/json: - schema: *730 + schema: *731 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114343,7 +114359,7 @@ webhooks: required: true content: application/json: - schema: *731 + schema: *732 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114410,7 +114426,7 @@ webhooks: required: true content: application/json: - schema: *732 + schema: *733 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114477,7 +114493,7 @@ webhooks: required: true content: application/json: - schema: *733 + schema: *734 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114545,7 +114561,7 @@ webhooks: required: true content: application/json: - schema: *734 + schema: *735 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114623,7 +114639,7 @@ webhooks: type: string enum: - completed - check_run: &736 + check_run: &737 title: CheckRun description: A check performed on the code of a given code change type: object @@ -114691,7 +114707,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *430 + items: *431 repository: *190 status: type: string @@ -114736,7 +114752,7 @@ webhooks: - examples: - neutral - deployment: *735 + deployment: *736 details_url: type: string examples: @@ -114796,7 +114812,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *430 + items: *431 started_at: type: string format: date-time @@ -114834,9 +114850,9 @@ webhooks: - output - app - pull_requests - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - check_run @@ -115229,10 +115245,10 @@ webhooks: type: string enum: - created - check_run: *736 - installation: *724 - organization: *725 - repository: *726 + check_run: *737 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - check_run @@ -115628,10 +115644,10 @@ webhooks: type: string enum: - requested_action - check_run: *736 - installation: *724 - organization: *725 - repository: *726 + check_run: *737 + installation: *725 + organization: *726 + repository: *727 requested_action: description: The action requested by the user. type: object @@ -116036,10 +116052,10 @@ webhooks: type: string enum: - rerequested - check_run: *736 - installation: *724 - organization: *725 - repository: *726 + check_run: *737 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - check_run @@ -117031,10 +117047,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -117719,10 +117735,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -118401,10 +118417,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -118570,7 +118586,7 @@ webhooks: required: - login - id - dismissed_comment: *442 + dismissed_comment: *443 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -118722,20 +118738,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &737 + commit_oid: &738 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: *723 - installation: *724 - organization: *725 - ref: &738 + enterprise: *724 + installation: *725 + organization: *726 + ref: &739 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: *726 + repository: *727 sender: *4 required: - action @@ -118899,7 +118915,7 @@ webhooks: required: - login - id - dismissed_comment: *442 + dismissed_comment: *443 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119140,12 +119156,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *737 - enterprise: *723 - installation: *724 - organization: *725 - ref: *738 - repository: *726 + commit_oid: *738 + enterprise: *724 + installation: *725 + organization: *726 + ref: *739 + repository: *727 sender: *4 required: - action @@ -119243,7 +119259,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *442 + dismissed_comment: *443 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -119425,12 +119441,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *737 - enterprise: *723 - installation: *724 - organization: *725 - ref: *738 - repository: *726 + commit_oid: *738 + enterprise: *724 + installation: *725 + organization: *726 + ref: *739 + repository: *727 sender: *4 required: - action @@ -119596,7 +119612,7 @@ webhooks: required: - login - id - dismissed_comment: *442 + dismissed_comment: *443 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119773,12 +119789,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *737 - enterprise: *723 - installation: *724 - organization: *725 - ref: *738 - repository: *726 + commit_oid: *738 + enterprise: *724 + installation: *725 + organization: *726 + ref: *739 + repository: *727 sender: *4 required: - action @@ -119878,7 +119894,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *442 + dismissed_comment: *443 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120058,9 +120074,9 @@ webhooks: type: - string - 'null' - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -120068,7 +120084,7 @@ webhooks: type: - string - 'null' - repository: *726 + repository: *727 sender: *4 required: - action @@ -120164,7 +120180,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *442 + dismissed_comment: *443 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120311,12 +120327,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *737 - enterprise: *723 - installation: *724 - organization: *725 - ref: *738 - repository: *726 + commit_oid: *738 + enterprise: *724 + installation: *725 + organization: *726 + ref: *739 + repository: *727 sender: *4 required: - action @@ -120578,10 +120594,10 @@ webhooks: - updated_at - author_association - body - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -120662,18 +120678,18 @@ webhooks: type: - string - 'null' - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *725 - pusher_type: &739 + organization: *726 + pusher_type: &740 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &740 + ref: &741 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -120683,7 +120699,7 @@ webhooks: enum: - tag - branch - repository: *726 + repository: *727 sender: *4 required: - ref @@ -120766,9 +120782,9 @@ webhooks: enum: - created definition: *110 - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 sender: *4 required: - action @@ -120853,9 +120869,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 sender: *4 required: - action @@ -120933,9 +120949,9 @@ webhooks: enum: - updated definition: *110 - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 sender: *4 required: - action @@ -121012,19 +121028,19 @@ webhooks: type: string enum: - updated - enterprise: *723 - installation: *724 - repository: *726 - organization: *725 + enterprise: *724 + installation: *725 + repository: *727 + organization: *726 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *309 + items: *310 old_property_values: type: array description: The old custom property values for the repository. - items: *309 + items: *310 required: - action - repository @@ -121100,18 +121116,18 @@ webhooks: title: delete event type: object properties: - enterprise: *723 - installation: *724 - organization: *725 - pusher_type: *739 - ref: *740 + enterprise: *724 + installation: *725 + organization: *726 + pusher_type: *740 + ref: *741 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *726 + repository: *727 sender: *4 required: - ref @@ -121195,11 +121211,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121283,11 +121299,11 @@ webhooks: type: string enum: - auto_reopened - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121371,11 +121387,11 @@ webhooks: type: string enum: - created - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121457,11 +121473,11 @@ webhooks: type: string enum: - dismissed - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121543,11 +121559,11 @@ webhooks: type: string enum: - fixed - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121630,11 +121646,11 @@ webhooks: type: string enum: - reintroduced - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121716,11 +121732,11 @@ webhooks: type: string enum: - reopened - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121797,9 +121813,9 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - key: &741 + enterprise: *724 + installation: *725 + key: &742 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -121837,8 +121853,8 @@ webhooks: - verified - created_at - read_only - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -121915,11 +121931,11 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - key: *741 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + key: *742 + organization: *726 + repository: *727 sender: *4 required: - action @@ -122491,12 +122507,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - workflow: &745 + workflow: &746 title: Workflow type: - object @@ -123234,13 +123250,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *500 + deployment: *501 pull_requests: type: array - items: *582 - repository: *726 - organization: *725 - installation: *724 + items: *583 + repository: *727 + organization: *726 + installation: *725 sender: *4 responses: '200': @@ -123311,7 +123327,7 @@ webhooks: type: string enum: - approved - approver: &742 + approver: &743 type: object properties: avatar_url: @@ -123354,11 +123370,11 @@ webhooks: type: string comment: type: string - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - reviewers: &743 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + reviewers: &744 type: array items: type: object @@ -123439,7 +123455,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &744 + workflow_job_run: &745 type: object properties: conclusion: @@ -124185,18 +124201,18 @@ webhooks: type: string enum: - rejected - approver: *742 + approver: *743 comment: type: string - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - reviewers: *743 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + reviewers: *744 sender: *4 since: type: string - workflow_job_run: *744 + workflow_job_run: *745 workflow_job_runs: type: array items: @@ -124913,13 +124929,13 @@ webhooks: type: string enum: - requested - enterprise: *723 + enterprise: *724 environment: type: string - installation: *724 - organization: *725 - repository: *726 - requestor: &750 + installation: *725 + organization: *726 + repository: *727 + requestor: &751 title: User type: - object @@ -126862,12 +126878,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - workflow: *745 + workflow: *746 workflow_run: title: Deployment Workflow Run type: @@ -127558,7 +127574,7 @@ webhooks: type: string enum: - answered - answer: &748 + answer: &749 type: object properties: author_association: @@ -127718,7 +127734,7 @@ webhooks: - created_at - updated_at - body - discussion: &746 + discussion: &747 title: Discussion description: A Discussion in a repository. type: object @@ -128014,7 +128030,7 @@ webhooks: - id labels: type: array - items: *545 + items: *546 required: - repository_url - category @@ -128036,10 +128052,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128166,11 +128182,11 @@ webhooks: - from required: - category - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128253,11 +128269,11 @@ webhooks: type: string enum: - closed - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128339,7 +128355,7 @@ webhooks: type: string enum: - created - comment: &747 + comment: &748 type: object properties: author_association: @@ -128499,11 +128515,11 @@ webhooks: - updated_at - body - reactions - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128586,12 +128602,12 @@ webhooks: type: string enum: - deleted - comment: *747 - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + comment: *748 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128686,12 +128702,12 @@ webhooks: - from required: - body - comment: *747 - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + comment: *748 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128775,11 +128791,11 @@ webhooks: type: string enum: - created - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128861,11 +128877,11 @@ webhooks: type: string enum: - deleted - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128965,11 +128981,11 @@ webhooks: type: string required: - from - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129051,10 +129067,10 @@ webhooks: type: string enum: - labeled - discussion: *746 - enterprise: *723 - installation: *724 - label: &749 + discussion: *747 + enterprise: *724 + installation: *725 + label: &750 title: Label type: object properties: @@ -129087,8 +129103,8 @@ webhooks: - color - default - description - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129171,11 +129187,11 @@ webhooks: type: string enum: - locked - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129257,11 +129273,11 @@ webhooks: type: string enum: - pinned - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129343,11 +129359,11 @@ webhooks: type: string enum: - reopened - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129432,16 +129448,16 @@ webhooks: changes: type: object properties: - new_discussion: *746 - new_repository: *726 + new_discussion: *747 + new_repository: *727 required: - new_discussion - new_repository - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129524,10 +129540,10 @@ webhooks: type: string enum: - unanswered - discussion: *746 - old_answer: *748 - organization: *725 - repository: *726 + discussion: *747 + old_answer: *749 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129609,12 +129625,12 @@ webhooks: type: string enum: - unlabeled - discussion: *746 - enterprise: *723 - installation: *724 - label: *749 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129697,11 +129713,11 @@ webhooks: type: string enum: - unlocked - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129783,11 +129799,11 @@ webhooks: type: string enum: - unpinned - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129859,7 +129875,7 @@ webhooks: required: true content: application/json: - schema: *730 + schema: *731 responses: '200': description: Return a 200 status to indicate that the data was received @@ -129925,7 +129941,7 @@ webhooks: required: true content: application/json: - schema: *731 + schema: *732 responses: '200': description: Return a 200 status to indicate that the data was received @@ -129991,7 +130007,7 @@ webhooks: required: true content: application/json: - schema: *732 + schema: *733 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130057,7 +130073,7 @@ webhooks: required: true content: application/json: - schema: *733 + schema: *734 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130123,7 +130139,7 @@ webhooks: required: true content: application/json: - schema: *734 + schema: *735 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130190,7 +130206,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *723 + enterprise: *724 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -130868,9 +130884,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - forkee @@ -131016,9 +131032,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pages: description: The pages that were updated. type: array @@ -131056,7 +131072,7 @@ webhooks: - action - sha - html_url - repository: *726 + repository: *727 sender: *4 required: - pages @@ -131132,10 +131148,10 @@ webhooks: type: string enum: - created - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories: &751 + organization: *726 + repositories: &752 description: An array of repository objects that the installation can access. type: array @@ -131161,8 +131177,8 @@ webhooks: - name - full_name - private - repository: *726 - requester: *750 + repository: *727 + requester: *751 sender: *4 required: - action @@ -131237,11 +131253,11 @@ webhooks: type: string enum: - deleted - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories: *751 - repository: *726 + organization: *726 + repositories: *752 + repository: *727 requester: type: - 'null' @@ -131318,11 +131334,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories: *751 - repository: *726 + organization: *726 + repositories: *752 + repository: *727 requester: type: - 'null' @@ -131399,10 +131415,10 @@ webhooks: type: string enum: - added - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories_added: &752 + organization: *726 + repositories_added: &753 description: An array of repository objects, which were added to the installation. type: array @@ -131448,15 +131464,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *726 - repository_selection: &753 + repository: *727 + repository_selection: &754 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *750 + requester: *751 sender: *4 required: - action @@ -131535,10 +131551,10 @@ webhooks: type: string enum: - removed - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories_added: *752 + organization: *726 + repositories_added: *753 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -131565,9 +131581,9 @@ webhooks: - name - full_name - private - repository: *726 - repository_selection: *753 - requester: *750 + repository: *727 + repository_selection: *754 + requester: *751 sender: *4 required: - action @@ -131646,11 +131662,11 @@ webhooks: type: string enum: - suspend - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories: *751 - repository: *726 + organization: *726 + repositories: *752 + repository: *727 requester: type: - 'null' @@ -131833,10 +131849,10 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 target_type: type: string @@ -131915,11 +131931,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories: *751 - repository: *726 + organization: *726 + repositories: *752 + repository: *727 requester: type: - 'null' @@ -132167,8 +132183,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -133358,8 +133374,8 @@ webhooks: - state - locked - assignee - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -133439,7 +133455,7 @@ webhooks: type: string enum: - deleted - comment: &754 + comment: &755 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -133606,8 +133622,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -134795,8 +134811,8 @@ webhooks: - state - locked - assignee - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -134876,7 +134892,7 @@ webhooks: type: string enum: - edited - changes: &779 + changes: &780 description: The changes to the comment. type: object properties: @@ -134888,9 +134904,9 @@ webhooks: type: string required: - from - comment: *754 - enterprise: *723 - installation: *724 + comment: *755 + enterprise: *724 + installation: *725 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -136079,8 +136095,8 @@ webhooks: - state - locked - assignee - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -136162,10 +136178,10 @@ webhooks: type: string enum: - assigned - assignee: *750 - enterprise: *723 - installation: *724 - issue: &757 + assignee: *751 + enterprise: *724 + installation: *725 + issue: &758 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -137109,8 +137125,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -137190,8 +137206,8 @@ webhooks: type: string enum: - closed - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -138283,8 +138299,8 @@ webhooks: required: - state - closed_at - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -138363,8 +138379,8 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -139301,8 +139317,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -139381,8 +139397,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -140323,7 +140339,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &755 + milestone: &756 title: Milestone description: A collection of related issues and pull requests. type: object @@ -140466,8 +140482,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -140566,8 +140582,8 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -141511,9 +141527,9 @@ webhooks: - active_lock_reason - body - reactions - label: *749 - organization: *725 - repository: *726 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -141593,8 +141609,8 @@ webhooks: type: string enum: - labeled - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -142537,9 +142553,9 @@ webhooks: - active_lock_reason - body - reactions - label: *749 - organization: *725 - repository: *726 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -142619,8 +142635,8 @@ webhooks: type: string enum: - locked - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -143565,8 +143581,8 @@ webhooks: format: uri user_view_type: type: string - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -143645,8 +143661,8 @@ webhooks: type: string enum: - milestoned - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -144585,9 +144601,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *755 - organization: *725 - repository: *726 + milestone: *756 + organization: *726 + repository: *727 sender: *4 required: - action @@ -146087,8 +146103,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -147031,8 +147047,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -147112,9 +147128,9 @@ webhooks: type: string enum: - pinned - enterprise: *723 - installation: *724 - issue: &756 + enterprise: *724 + installation: *725 + issue: &757 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -148051,8 +148067,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -148131,8 +148147,8 @@ webhooks: type: string enum: - reopened - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -149076,8 +149092,8 @@ webhooks: format: uri user_view_type: type: string - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -150577,11 +150593,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *723 - installation: *724 - issue: *756 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + issue: *757 + organization: *726 + repository: *727 sender: *4 required: - action @@ -150662,7 +150678,7 @@ webhooks: type: string enum: - unassigned - assignee: &782 + assignee: &783 title: User type: - object @@ -150734,11 +150750,11 @@ webhooks: required: - login - id - enterprise: *723 - installation: *724 - issue: *757 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + issue: *758 + organization: *726 + repository: *727 sender: *4 required: - action @@ -150817,12 +150833,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *723 - installation: *724 - issue: *757 - label: *749 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + issue: *758 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -150902,8 +150918,8 @@ webhooks: type: string enum: - unlocked - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -151846,8 +151862,8 @@ webhooks: format: uri user_view_type: type: string - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -151927,11 +151943,11 @@ webhooks: type: string enum: - unpinned - enterprise: *723 - installation: *724 - issue: *756 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + issue: *757 + organization: *726 + repository: *727 sender: *4 required: - action @@ -152010,11 +152026,11 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - label: *749 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -152092,11 +152108,11 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - label: *749 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -152206,11 +152222,11 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - label: *749 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -152292,9 +152308,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *723 - installation: *724 - marketplace_purchase: &758 + enterprise: *724 + installation: *725 + marketplace_purchase: &759 title: Marketplace Purchase type: object required: @@ -152382,8 +152398,8 @@ webhooks: type: integer unit_count: type: integer - organization: *725 - previous_marketplace_purchase: &759 + organization: *726 + previous_marketplace_purchase: &760 title: Marketplace Purchase type: object properties: @@ -152467,7 +152483,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *726 + repository: *727 sender: *4 required: - action @@ -152547,10 +152563,10 @@ webhooks: - changed effective_date: type: string - enterprise: *723 - installation: *724 - marketplace_purchase: *758 - organization: *725 + enterprise: *724 + installation: *725 + marketplace_purchase: *759 + organization: *726 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152638,7 +152654,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *726 + repository: *727 sender: *4 required: - action @@ -152720,10 +152736,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *723 - installation: *724 - marketplace_purchase: *758 - organization: *725 + enterprise: *724 + installation: *725 + marketplace_purchase: *759 + organization: *726 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152809,7 +152825,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *726 + repository: *727 sender: *4 required: - action @@ -152890,8 +152906,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 marketplace_purchase: title: Marketplace Purchase type: object @@ -152977,9 +152993,9 @@ webhooks: type: integer unit_count: type: integer - organization: *725 - previous_marketplace_purchase: *759 - repository: *726 + organization: *726 + previous_marketplace_purchase: *760 + repository: *727 sender: *4 required: - action @@ -153059,12 +153075,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *723 - installation: *724 - marketplace_purchase: *758 - organization: *725 - previous_marketplace_purchase: *759 - repository: *726 + enterprise: *724 + installation: *725 + marketplace_purchase: *759 + organization: *726 + previous_marketplace_purchase: *760 + repository: *727 sender: *4 required: - action @@ -153166,11 +153182,11 @@ webhooks: type: string required: - to - enterprise: *723 - installation: *724 - member: *750 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + member: *751 + organization: *726 + repository: *727 sender: *4 required: - action @@ -153272,11 +153288,11 @@ webhooks: type: - string - 'null' - enterprise: *723 - installation: *724 - member: *750 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + member: *751 + organization: *726 + repository: *727 sender: *4 required: - action @@ -153355,11 +153371,11 @@ webhooks: type: string enum: - removed - enterprise: *723 - installation: *724 - member: *750 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + member: *751 + organization: *726 + repository: *727 sender: *4 required: - action @@ -153437,11 +153453,11 @@ webhooks: type: string enum: - added - enterprise: *723 - installation: *724 - member: *750 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + member: *751 + organization: *726 + repository: *727 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153519,7 +153535,7 @@ webhooks: required: - login - id - team: &760 + team: &761 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -153712,11 +153728,11 @@ webhooks: type: string enum: - removed - enterprise: *723 - installation: *724 - member: *750 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + member: *751 + organization: *726 + repository: *727 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153795,7 +153811,7 @@ webhooks: required: - login - id - team: *760 + team: *761 required: - action - scope @@ -153877,8 +153893,8 @@ webhooks: type: string enum: - checks_requested - installation: *724 - merge_group: &761 + installation: *725 + merge_group: &762 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -153897,15 +153913,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *434 + head_commit: *435 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -153991,10 +154007,10 @@ webhooks: - merged - invalidated - dequeued - installation: *724 - merge_group: *761 - organization: *725 - repository: *726 + installation: *725 + merge_group: *762 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154067,7 +154083,7 @@ webhooks: type: string enum: - deleted - enterprise: *723 + enterprise: *724 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -154175,12 +154191,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *724 - organization: *725 + installation: *725 + organization: *726 repository: anyOf: - type: 'null' - - *726 + - *727 sender: *4 required: - action @@ -154260,11 +154276,11 @@ webhooks: type: string enum: - closed - enterprise: *723 - installation: *724 - milestone: *755 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + milestone: *756 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154343,9 +154359,9 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - milestone: &762 + enterprise: *724 + installation: *725 + milestone: &763 title: Milestone description: A collection of related issues and pull requests. type: object @@ -154487,8 +154503,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154567,11 +154583,11 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - milestone: *755 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + milestone: *756 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154681,11 +154697,11 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - milestone: *755 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + milestone: *756 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154765,11 +154781,11 @@ webhooks: type: string enum: - opened - enterprise: *723 - installation: *724 - milestone: *762 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + milestone: *763 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154848,11 +154864,11 @@ webhooks: type: string enum: - blocked - blocked_user: *750 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + blocked_user: *751 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154931,11 +154947,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *750 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + blocked_user: *751 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -155014,9 +155030,9 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - membership: &763 + enterprise: *724 + installation: *725 + membership: &764 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -155110,8 +155126,8 @@ webhooks: - role - organization_url - user - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -155189,11 +155205,11 @@ webhooks: type: string enum: - member_added - enterprise: *723 - installation: *724 - membership: *763 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + membership: *764 + organization: *726 + repository: *727 sender: *4 required: - action @@ -155272,8 +155288,8 @@ webhooks: type: string enum: - member_invited - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -155395,10 +155411,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 - user: *750 + user: *751 required: - action - invitation @@ -155476,11 +155492,11 @@ webhooks: type: string enum: - member_removed - enterprise: *723 - installation: *724 - membership: *763 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + membership: *764 + organization: *726 + repository: *727 sender: *4 required: - action @@ -155567,11 +155583,11 @@ webhooks: properties: from: type: string - enterprise: *723 - installation: *724 - membership: *763 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + membership: *764 + organization: *726 + repository: *727 sender: *4 required: - action @@ -155647,9 +155663,9 @@ webhooks: type: string enum: - published - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 package: description: Information about the package. type: object @@ -156172,7 +156188,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &764 + items: &765 title: Ruby Gems metadata type: object properties: @@ -156269,7 +156285,7 @@ webhooks: - owner - package_version - registry - repository: *726 + repository: *727 sender: *4 required: - action @@ -156345,9 +156361,9 @@ webhooks: type: string enum: - updated - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 package: description: Information about the package. type: object @@ -156709,7 +156725,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *764 + items: *765 source_url: type: string format: uri @@ -156780,7 +156796,7 @@ webhooks: - owner - package_version - registry - repository: *726 + repository: *727 sender: *4 required: - action @@ -156961,12 +156977,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *723 + enterprise: *724 id: type: integer - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - id @@ -157046,7 +157062,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &765 + personal_access_token_request: &766 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -157196,10 +157212,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *723 - organization: *725 + enterprise: *724 + organization: *726 sender: *4 - installation: *724 + installation: *725 required: - action - personal_access_token_request @@ -157278,11 +157294,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *765 - enterprise: *723 - organization: *725 + personal_access_token_request: *766 + enterprise: *724 + organization: *726 sender: *4 - installation: *724 + installation: *725 required: - action - personal_access_token_request @@ -157360,11 +157376,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *765 - enterprise: *723 - organization: *725 + personal_access_token_request: *766 + enterprise: *724 + organization: *726 sender: *4 - installation: *724 + installation: *725 required: - action - personal_access_token_request @@ -157441,11 +157457,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *765 - organization: *725 - enterprise: *723 + personal_access_token_request: *766 + organization: *726 + enterprise: *724 sender: *4 - installation: *724 + installation: *725 required: - action - personal_access_token_request @@ -157549,7 +157565,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *766 + last_response: *767 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -157581,8 +157597,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 zen: description: Random string of GitHub zen. @@ -157827,10 +157843,10 @@ webhooks: - from required: - note - enterprise: *723 - installation: *724 - organization: *725 - project_card: &767 + enterprise: *724 + installation: *725 + organization: *726 + project_card: &768 title: Project Card type: object properties: @@ -157953,7 +157969,7 @@ webhooks: - creator - created_at - updated_at - repository: *726 + repository: *727 sender: *4 required: - action @@ -158034,11 +158050,11 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - project_card: *767 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project_card: *768 + repository: *727 sender: *4 required: - action @@ -158118,9 +158134,9 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 project_card: title: Project Card type: object @@ -158250,7 +158266,7 @@ webhooks: repository: anyOf: - type: 'null' - - *726 + - *727 sender: *4 required: - action @@ -158344,11 +158360,11 @@ webhooks: - from required: - note - enterprise: *723 - installation: *724 - organization: *725 - project_card: *767 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project_card: *768 + repository: *727 sender: *4 required: - action @@ -158442,9 +158458,9 @@ webhooks: - from required: - column_id - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 project_card: allOf: - title: Project Card @@ -158641,7 +158657,7 @@ webhooks: type: string required: - after_id - repository: *726 + repository: *727 sender: *4 required: - action @@ -158721,10 +158737,10 @@ webhooks: type: string enum: - closed - enterprise: *723 - installation: *724 - organization: *725 - project: &769 + enterprise: *724 + installation: *725 + organization: *726 + project: &770 title: Project type: object properties: @@ -158851,7 +158867,7 @@ webhooks: - creator - created_at - updated_at - repository: *726 + repository: *727 sender: *4 required: - action @@ -158931,10 +158947,10 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - project_column: &768 + enterprise: *724 + installation: *725 + organization: *726 + project_column: &769 title: Project Column type: object properties: @@ -158974,7 +158990,7 @@ webhooks: - name - created_at - updated_at - repository: *726 + repository: *727 sender: *4 required: - action @@ -159053,14 +159069,14 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - project_column: *768 + enterprise: *724 + installation: *725 + organization: *726 + project_column: *769 repository: anyOf: - type: 'null' - - *726 + - *727 sender: *4 required: - action @@ -159149,11 +159165,11 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - organization: *725 - project_column: *768 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project_column: *769 + repository: *727 sender: *4 required: - action @@ -159233,11 +159249,11 @@ webhooks: type: string enum: - moved - enterprise: *723 - installation: *724 - organization: *725 - project_column: *768 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project_column: *769 + repository: *727 sender: *4 required: - action @@ -159317,11 +159333,11 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - project: *769 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project: *770 + repository: *727 sender: *4 required: - action @@ -159401,14 +159417,14 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - project: *769 + enterprise: *724 + installation: *725 + organization: *726 + project: *770 repository: anyOf: - type: 'null' - - *726 + - *727 sender: *4 required: - action @@ -159509,11 +159525,11 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - organization: *725 - project: *769 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project: *770 + repository: *727 sender: *4 required: - action @@ -159592,11 +159608,11 @@ webhooks: type: string enum: - reopened - enterprise: *723 - installation: *724 - organization: *725 - project: *769 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project: *770 + repository: *727 sender: *4 required: - action @@ -159677,9 +159693,9 @@ webhooks: type: string enum: - closed - installation: *724 - organization: *725 - projects_v2: &770 + installation: *725 + organization: *726 + projects_v2: &771 title: Projects v2 Project description: A projects v2 project type: object @@ -159827,9 +159843,9 @@ webhooks: type: string enum: - created - installation: *724 - organization: *725 - projects_v2: *770 + installation: *725 + organization: *726 + projects_v2: *771 sender: *4 required: - action @@ -159910,9 +159926,9 @@ webhooks: type: string enum: - deleted - installation: *724 - organization: *725 - projects_v2: *770 + installation: *725 + organization: *726 + projects_v2: *771 sender: *4 required: - action @@ -160033,9 +160049,9 @@ webhooks: type: string to: type: string - installation: *724 - organization: *725 - projects_v2: *770 + installation: *725 + organization: *726 + projects_v2: *771 sender: *4 required: - action @@ -160118,7 +160134,7 @@ webhooks: type: string enum: - archived - changes: &774 + changes: &775 type: object properties: archived_at: @@ -160134,9 +160150,9 @@ webhooks: - string - 'null' format: date-time - installation: *724 - organization: *725 - projects_v2_item: &771 + installation: *725 + organization: *726 + projects_v2_item: &772 title: Projects v2 Item description: An item belonging to a project type: object @@ -160275,9 +160291,9 @@ webhooks: - 'null' to: type: string - installation: *724 - organization: *725 - projects_v2_item: *771 + installation: *725 + organization: *726 + projects_v2_item: *772 sender: *4 required: - action @@ -160359,9 +160375,9 @@ webhooks: type: string enum: - created - installation: *724 - organization: *725 - projects_v2_item: *771 + installation: *725 + organization: *726 + projects_v2_item: *772 sender: *4 required: - action @@ -160442,9 +160458,9 @@ webhooks: type: string enum: - deleted - installation: *724 - organization: *725 - projects_v2_item: *771 + installation: *725 + organization: *726 + projects_v2_item: *772 sender: *4 required: - action @@ -160549,7 +160565,7 @@ webhooks: oneOf: - type: string - type: integer - - &772 + - &773 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -160569,7 +160585,7 @@ webhooks: required: - id - name - - &773 + - &774 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -160598,8 +160614,8 @@ webhooks: oneOf: - type: string - type: integer - - *772 - *773 + - *774 type: - 'null' - string @@ -160622,9 +160638,9 @@ webhooks: - 'null' required: - body - installation: *724 - organization: *725 - projects_v2_item: *771 + installation: *725 + organization: *726 + projects_v2_item: *772 sender: *4 required: - action @@ -160721,9 +160737,9 @@ webhooks: type: - string - 'null' - installation: *724 - organization: *725 - projects_v2_item: *771 + installation: *725 + organization: *726 + projects_v2_item: *772 sender: *4 required: - action @@ -160806,10 +160822,10 @@ webhooks: type: string enum: - restored - changes: *774 - installation: *724 - organization: *725 - projects_v2_item: *771 + changes: *775 + installation: *725 + organization: *726 + projects_v2_item: *772 sender: *4 required: - action @@ -160891,9 +160907,9 @@ webhooks: type: string enum: - reopened - installation: *724 - organization: *725 - projects_v2: *770 + installation: *725 + organization: *726 + projects_v2: *771 sender: *4 required: - action @@ -160974,9 +160990,9 @@ webhooks: type: string enum: - created - installation: *724 - organization: *725 - projects_v2_status_update: &775 + installation: *725 + organization: *726 + projects_v2_status_update: &776 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -161111,9 +161127,9 @@ webhooks: type: string enum: - deleted - installation: *724 - organization: *725 - projects_v2_status_update: *775 + installation: *725 + organization: *726 + projects_v2_status_update: *776 sender: *4 required: - action @@ -161259,9 +161275,9 @@ webhooks: - string - 'null' format: date - installation: *724 - organization: *725 - projects_v2_status_update: *775 + installation: *725 + organization: *726 + projects_v2_status_update: *776 sender: *4 required: - action @@ -161332,10 +161348,10 @@ webhooks: title: public event type: object properties: - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - repository @@ -161412,13 +161428,13 @@ webhooks: type: string enum: - assigned - assignee: *750 - enterprise: *723 - installation: *724 - number: &776 + assignee: *751 + enterprise: *724 + installation: *725 + number: &777 description: The pull request number. type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -163767,7 +163783,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -163849,11 +163865,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -166195,7 +166211,7 @@ webhooks: - draft reason: type: string - repository: *726 + repository: *727 sender: *4 required: - action @@ -166277,11 +166293,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -168623,7 +168639,7 @@ webhooks: - draft reason: type: string - repository: *726 + repository: *727 sender: *4 required: - action @@ -168705,13 +168721,13 @@ webhooks: type: string enum: - closed - enterprise: *723 - installation: *724 - number: *776 - organization: *725 - pull_request: &777 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 + pull_request: &778 allOf: - - *582 + - *583 - type: object properties: allow_auto_merge: @@ -168773,7 +168789,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *726 + repository: *727 sender: *4 required: - action @@ -168854,12 +168870,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *723 - installation: *724 - number: *776 - organization: *725 - pull_request: *777 - repository: *726 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 + pull_request: *778 + repository: *727 sender: *4 required: - action @@ -168939,11 +168955,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *723 - milestone: *480 - number: *776 - organization: *725 - pull_request: &778 + enterprise: *724 + milestone: *481 + number: *777 + organization: *726 + pull_request: &779 title: Pull Request type: object properties: @@ -171270,7 +171286,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -171349,11 +171365,11 @@ webhooks: type: string enum: - dequeued - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -173699,7 +173715,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *726 + repository: *727 sender: *4 required: - action @@ -173823,12 +173839,12 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - number: *776 - organization: *725 - pull_request: *777 - repository: *726 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 + pull_request: *778 + repository: *727 sender: *4 required: - action @@ -173908,11 +173924,11 @@ webhooks: type: string enum: - enqueued - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -176243,7 +176259,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -176323,11 +176339,11 @@ webhooks: type: string enum: - labeled - enterprise: *723 - installation: *724 - label: *749 - number: *776 - organization: *725 + enterprise: *724 + installation: *725 + label: *750 + number: *777 + organization: *726 pull_request: title: Pull Request type: object @@ -178675,7 +178691,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -178756,10 +178772,10 @@ webhooks: type: string enum: - locked - enterprise: *723 - installation: *724 - number: *776 - organization: *725 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 pull_request: title: Pull Request type: object @@ -181105,7 +181121,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -181185,12 +181201,12 @@ webhooks: type: string enum: - milestoned - enterprise: *723 - milestone: *480 - number: *776 - organization: *725 - pull_request: *778 - repository: *726 + enterprise: *724 + milestone: *481 + number: *777 + organization: *726 + pull_request: *779 + repository: *727 sender: *4 required: - action @@ -181269,12 +181285,12 @@ webhooks: type: string enum: - opened - enterprise: *723 - installation: *724 - number: *776 - organization: *725 - pull_request: *777 - repository: *726 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 + pull_request: *778 + repository: *727 sender: *4 required: - action @@ -181355,12 +181371,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *723 - installation: *724 - number: *776 - organization: *725 - pull_request: *777 - repository: *726 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 + pull_request: *778 + repository: *727 sender: *4 required: - action @@ -181440,12 +181456,12 @@ webhooks: type: string enum: - reopened - enterprise: *723 - installation: *724 - number: *776 - organization: *725 - pull_request: *777 - repository: *726 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 + pull_request: *778 + repository: *727 sender: *4 required: - action @@ -181820,9 +181836,9 @@ webhooks: - start_side - side - reactions - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: type: object properties: @@ -184052,7 +184068,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *726 + repository: *727 sender: *4 required: - action @@ -184132,7 +184148,7 @@ webhooks: type: string enum: - deleted - comment: &780 + comment: &781 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -184425,9 +184441,9 @@ webhooks: - start_side - side - reactions - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: type: object properties: @@ -186645,7 +186661,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *726 + repository: *727 sender: *4 required: - action @@ -186725,11 +186741,11 @@ webhooks: type: string enum: - edited - changes: *779 - comment: *780 - enterprise: *723 - installation: *724 - organization: *725 + changes: *780 + comment: *781 + enterprise: *724 + installation: *725 + organization: *726 pull_request: type: object properties: @@ -188950,7 +188966,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *726 + repository: *727 sender: *4 required: - action @@ -189031,9 +189047,9 @@ webhooks: type: string enum: - dismissed - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: title: Simple Pull Request type: object @@ -191266,7 +191282,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *726 + repository: *727 review: description: The review that was affected. type: object @@ -191512,9 +191528,9 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: title: Simple Pull Request type: object @@ -193628,8 +193644,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *726 - review: &781 + repository: *727 + review: &782 description: The review that was affected. type: object properties: @@ -193862,12 +193878,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: description: The pull request number. type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -196214,7 +196230,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 requested_reviewer: title: User type: @@ -196300,12 +196316,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: description: The pull request number. type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -198659,7 +198675,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 requested_team: title: Team description: Groups of organization members that gives permissions @@ -198854,12 +198870,12 @@ webhooks: type: string enum: - review_requested - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: description: The pull request number. type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -201208,7 +201224,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 requested_reviewer: title: User type: @@ -201295,12 +201311,12 @@ webhooks: type: string enum: - review_requested - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: description: The pull request number. type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -203640,7 +203656,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 requested_team: title: Team description: Groups of organization members that gives permissions @@ -203824,9 +203840,9 @@ webhooks: type: string enum: - submitted - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: title: Simple Pull Request type: object @@ -206062,8 +206078,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *726 - review: *781 + repository: *727 + review: *782 sender: *4 required: - action @@ -206143,9 +206159,9 @@ webhooks: type: string enum: - resolved - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: title: Simple Pull Request type: object @@ -208276,7 +208292,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *726 + repository: *727 sender: *4 thread: type: object @@ -208668,9 +208684,9 @@ webhooks: type: string enum: - unresolved - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: title: Simple Pull Request type: object @@ -210784,7 +210800,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *726 + repository: *727 sender: *4 thread: type: object @@ -211178,10 +211194,10 @@ webhooks: type: string before: type: string - enterprise: *723 - installation: *724 - number: *776 - organization: *725 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 pull_request: title: Pull Request type: object @@ -213516,7 +213532,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -213598,11 +213614,11 @@ webhooks: type: string enum: - unassigned - assignee: *782 - enterprise: *723 - installation: *724 - number: *776 - organization: *725 + assignee: *783 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 pull_request: title: Pull Request type: object @@ -215952,7 +215968,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -216031,11 +216047,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *723 - installation: *724 - label: *749 - number: *776 - organization: *725 + enterprise: *724 + installation: *725 + label: *750 + number: *777 + organization: *726 pull_request: title: Pull Request type: object @@ -218374,7 +218390,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -218455,10 +218471,10 @@ webhooks: type: string enum: - unlocked - enterprise: *723 - installation: *724 - number: *776 - organization: *725 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 pull_request: title: Pull Request type: object @@ -220787,7 +220803,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -220990,7 +221006,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *723 + enterprise: *724 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -221085,8 +221101,8 @@ webhooks: - url - author - committer - installation: *724 - organization: *725 + installation: *725 + organization: *726 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -221674,9 +221690,9 @@ webhooks: type: string enum: - published - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 registry_package: type: object properties: @@ -222153,7 +222169,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *764 + items: *765 summary: type: string tag_name: @@ -222209,7 +222225,7 @@ webhooks: - owner - package_version - registry - repository: *726 + repository: *727 sender: *4 required: - action @@ -222287,9 +222303,9 @@ webhooks: type: string enum: - updated - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 registry_package: type: object properties: @@ -222601,7 +222617,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *764 + items: *765 summary: type: string tag_name: @@ -222651,7 +222667,7 @@ webhooks: - owner - package_version - registry - repository: *726 + repository: *727 sender: *4 required: - action @@ -222728,10 +222744,10 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - release: &783 + enterprise: *724 + installation: *725 + organization: *726 + release: &784 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -223047,7 +223063,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *726 + repository: *727 sender: *4 required: - action @@ -223124,11 +223140,11 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - release: *783 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + release: *784 + repository: *727 sender: *4 required: - action @@ -223245,11 +223261,11 @@ webhooks: type: boolean required: - to - enterprise: *723 - installation: *724 - organization: *725 - release: *783 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + release: *784 + repository: *727 sender: *4 required: - action @@ -223327,9 +223343,9 @@ webhooks: type: string enum: - prereleased - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -223650,7 +223666,7 @@ webhooks: - string - 'null' format: uri - repository: *726 + repository: *727 sender: *4 required: - action @@ -223726,10 +223742,10 @@ webhooks: type: string enum: - published - enterprise: *723 - installation: *724 - organization: *725 - release: &784 + enterprise: *724 + installation: *725 + organization: *726 + release: &785 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -224047,7 +224063,7 @@ webhooks: - string - 'null' format: uri - repository: *726 + repository: *727 sender: *4 required: - action @@ -224123,11 +224139,11 @@ webhooks: type: string enum: - released - enterprise: *723 - installation: *724 - organization: *725 - release: *783 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + release: *784 + repository: *727 sender: *4 required: - action @@ -224203,11 +224219,11 @@ webhooks: type: string enum: - unpublished - enterprise: *723 - installation: *724 - organization: *725 - release: *784 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + release: *785 + repository: *727 sender: *4 required: - action @@ -224283,11 +224299,11 @@ webhooks: type: string enum: - published - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - repository_advisory: *635 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + repository_advisory: *636 sender: *4 required: - action @@ -224363,11 +224379,11 @@ webhooks: type: string enum: - reported - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - repository_advisory: *635 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + repository_advisory: *636 sender: *4 required: - action @@ -224443,10 +224459,10 @@ webhooks: type: string enum: - archived - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -224523,10 +224539,10 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -224604,10 +224620,10 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -224692,10 +224708,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -224810,10 +224826,10 @@ webhooks: - 'null' items: type: string - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -224885,10 +224901,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 status: type: string @@ -224969,10 +224985,10 @@ webhooks: type: string enum: - privatized - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -225049,10 +225065,10 @@ webhooks: type: string enum: - publicized - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -225146,10 +225162,10 @@ webhooks: - name required: - repository - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -225229,10 +225245,10 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 repository_ruleset: *124 sender: *4 required: @@ -225311,10 +225327,10 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 repository_ruleset: *124 sender: *4 required: @@ -225393,10 +225409,10 @@ webhooks: type: string enum: - edited - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 repository_ruleset: *124 changes: type: object @@ -225704,10 +225720,10 @@ webhooks: - from required: - owner - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -225785,10 +225801,10 @@ webhooks: type: string enum: - unarchived - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -225866,7 +225882,7 @@ webhooks: type: string enum: - create - alert: &785 + alert: &786 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -225990,10 +226006,10 @@ webhooks: type: string enum: - open - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -226203,10 +226219,10 @@ webhooks: type: string enum: - dismissed - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -226284,11 +226300,11 @@ webhooks: type: string enum: - reopen - alert: *785 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + alert: *786 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -226490,10 +226506,10 @@ webhooks: enum: - fixed - open - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -226571,7 +226587,7 @@ webhooks: type: string enum: - created - alert: &786 + alert: &787 type: object properties: number: *96 @@ -226681,10 +226697,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -226765,11 +226781,11 @@ webhooks: type: string enum: - created - alert: *786 - installation: *724 - location: *787 - organization: *725 - repository: *726 + alert: *787 + installation: *725 + location: *788 + organization: *726 + repository: *727 sender: *4 required: - location @@ -227007,11 +227023,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *786 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + alert: *787 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -227089,11 +227105,11 @@ webhooks: type: string enum: - reopened - alert: *786 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + alert: *787 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -227171,11 +227187,11 @@ webhooks: type: string enum: - resolved - alert: *786 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + alert: *787 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -227253,11 +227269,11 @@ webhooks: type: string enum: - validated - alert: *786 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + alert: *787 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -227387,10 +227403,10 @@ webhooks: - organization - enterprise - - repository: *726 - enterprise: *723 - installation: *724 - organization: *725 + repository: *727 + enterprise: *724 + installation: *725 + organization: *726 sender: *4 required: - action @@ -227468,11 +227484,11 @@ webhooks: type: string enum: - published - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - security_advisory: &788 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + security_advisory: &789 description: The details of the security advisory, including summary, description, and severity. type: object @@ -227658,11 +227674,11 @@ webhooks: type: string enum: - updated - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - security_advisory: *788 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + security_advisory: *789 sender: *4 required: - action @@ -227735,10 +227751,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -227924,11 +227940,11 @@ webhooks: from: type: object properties: - security_and_analysis: *310 - enterprise: *723 - installation: *724 - organization: *725 - repository: *371 + security_and_analysis: *311 + enterprise: *724 + installation: *725 + organization: *726 + repository: *372 sender: *4 required: - changes @@ -228006,12 +228022,12 @@ webhooks: type: string enum: - cancelled - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - sponsorship: &789 + sponsorship: &790 type: object properties: created_at: @@ -228316,12 +228332,12 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - sponsorship: *789 + sponsorship: *790 required: - action - sponsorship @@ -228409,12 +228425,12 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - sponsorship: *789 + sponsorship: *790 required: - action - changes @@ -228491,17 +228507,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &790 + effective_date: &791 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: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - sponsorship: *789 + sponsorship: *790 required: - action - sponsorship @@ -228575,7 +228591,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &791 + changes: &792 type: object properties: tier: @@ -228619,13 +228635,13 @@ webhooks: - from required: - tier - effective_date: *790 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + effective_date: *791 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - sponsorship: *789 + sponsorship: *790 required: - action - changes @@ -228702,13 +228718,13 @@ webhooks: type: string enum: - tier_changed - changes: *791 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + changes: *792 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - sponsorship: *789 + sponsorship: *790 required: - action - changes @@ -228782,10 +228798,10 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -228869,10 +228885,10 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -229306,15 +229322,15 @@ webhooks: type: - string - 'null' - enterprise: *723 + enterprise: *724 id: description: The unique identifier of the status. type: integer - installation: *724 + installation: *725 name: type: string - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 sha: description: The Commit SHA. @@ -229430,9 +229446,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *148 - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -229522,9 +229538,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *148 - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -229614,9 +229630,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *148 - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -229706,9 +229722,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *148 - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -229785,12 +229801,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - team: &792 + team: &793 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -229983,9 +229999,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 repository: title: Repository description: A git repository @@ -230455,7 +230471,7 @@ webhooks: - topics - visibility sender: *4 - team: *792 + team: *793 required: - action - team @@ -230531,9 +230547,9 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 repository: title: Repository description: A git repository @@ -231003,7 +231019,7 @@ webhooks: - topics - visibility sender: *4 - team: *792 + team: *793 required: - action - team @@ -231080,9 +231096,9 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 repository: title: Repository description: A git repository @@ -231552,7 +231568,7 @@ webhooks: - topics - visibility sender: *4 - team: *792 + team: *793 required: - action - team @@ -231696,9 +231712,9 @@ webhooks: - from required: - permissions - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 repository: title: Repository description: A git repository @@ -232168,7 +232184,7 @@ webhooks: - topics - visibility sender: *4 - team: *792 + team: *793 required: - action - changes @@ -232246,9 +232262,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 repository: title: Repository description: A git repository @@ -232718,7 +232734,7 @@ webhooks: - topics - visibility sender: *4 - team: *792 + team: *793 required: - action - team @@ -232794,10 +232810,10 @@ webhooks: type: string enum: - started - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -232870,17 +232886,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *723 + enterprise: *724 inputs: type: - object - 'null' additionalProperties: true - installation: *724 - organization: *725 + installation: *725 + organization: *726 ref: type: string - repository: *726 + repository: *727 sender: *4 workflow: type: string @@ -232962,10 +232978,10 @@ webhooks: type: string enum: - completed - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 workflow_job: allOf: @@ -233221,7 +233237,7 @@ webhooks: type: string required: - conclusion - deployment: *500 + deployment: *501 required: - action - repository @@ -233300,10 +233316,10 @@ webhooks: type: string enum: - in_progress - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 workflow_job: allOf: @@ -233585,7 +233601,7 @@ webhooks: required: - status - steps - deployment: *500 + deployment: *501 required: - action - repository @@ -233664,10 +233680,10 @@ webhooks: type: string enum: - queued - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 workflow_job: type: object @@ -233813,7 +233829,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *500 + deployment: *501 required: - action - repository @@ -233892,10 +233908,10 @@ webhooks: type: string enum: - waiting - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 workflow_job: type: object @@ -234042,7 +234058,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *500 + deployment: *501 required: - action - repository @@ -234122,12 +234138,12 @@ webhooks: type: string enum: - completed - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - workflow: *745 + workflow: *746 workflow_run: title: Workflow Run type: object @@ -235146,12 +235162,12 @@ webhooks: type: string enum: - in_progress - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - workflow: *745 + workflow: *746 workflow_run: title: Workflow Run type: object @@ -236155,12 +236171,12 @@ webhooks: type: string enum: - requested - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - workflow: *745 + workflow: *746 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.json b/descriptions-next/ghec/dereferenced/ghec.deref.json index 5d3f18cd59..f5cf56c3ca 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -3580,6 +3580,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -3650,6 +3651,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -3660,6 +3662,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -132371,6 +132374,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -132441,6 +132445,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -132451,6 +132456,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -161684,6 +161690,22 @@ "type": "string", "format": "date-time" } + }, + { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } } ], "responses": { @@ -163924,6 +163946,22 @@ "type": "string", "format": "date-time" } + }, + { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } } ], "responses": { @@ -311100,7 +311138,7 @@ }, "put": { "summary": "Create or update a repository secret", - "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/enterprise-cloud@latest//rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/enterprise-cloud@latest//rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -311200,7 +311238,7 @@ }, "delete": { "summary": "Delete a repository secret", - "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -349131,7 +349169,7 @@ }, "post": { "summary": "Create a custom deployment protection rule on an environment", - "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/enterprise-cloud@latest//actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", "tags": [ "repos" ], @@ -366299,6 +366337,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -366369,6 +366408,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -366379,6 +366419,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.deref.yaml index 096daa8a00..26d36ece07 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.deref.yaml @@ -905,7 +905,7 @@ paths: - subscriptions_url - type - url - type: &326 + type: &327 type: string description: The type of credit the user is receiving. enum: @@ -1071,7 +1071,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &637 + - &638 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1692,6 +1692,7 @@ paths: id: description: Unique identifier of the webhook delivery. type: integer + format: int64 examples: - 42 guid: @@ -1746,6 +1747,7 @@ paths: type: - integer - 'null' + format: int64 examples: - 123 repository_id: @@ -1753,6 +1755,7 @@ paths: type: - integer - 'null' + format: int64 examples: - 123 throttled_at: @@ -1808,7 +1811,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &647 + schema: &648 title: Scim Error description: Scim Error type: object @@ -11645,7 +11648,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &440 + instances_url: &441 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -11681,7 +11684,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &441 + dismissed_reason: &442 type: - string - 'null' @@ -11692,14 +11695,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &442 + dismissed_comment: &443 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &443 + rule: &444 type: object properties: id: @@ -11760,7 +11763,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &444 + tool: &445 type: object properties: name: *85 @@ -11771,15 +11774,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *86 - most_recent_instance: &445 + most_recent_instance: &446 type: object properties: - ref: &438 + ref: &439 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &455 + analysis_key: &456 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -11790,7 +11793,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &456 + category: &457 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -15278,7 +15281,7 @@ paths: - direct - transitive - - security_advisory: &492 + security_advisory: &493 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -15514,7 +15517,7 @@ paths: dismissal. maxLength: 280 fixed_at: *106 - auto_dismissed_at: &493 + auto_dismissed_at: &494 type: - string - 'null' @@ -16012,7 +16015,7 @@ paths: - name - created_on examples: - default: &335 + default: &336 value: total_count: 2 network_configurations: @@ -16235,7 +16238,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *38 - - &336 + - &337 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -16247,7 +16250,7 @@ paths: description: Response content: application/json: - schema: &337 + schema: &338 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -16286,7 +16289,7 @@ paths: - subnet_id - region examples: - default: &338 + default: &339 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -16609,7 +16612,7 @@ paths: required: true content: application/json: - schema: &308 + schema: &309 title: Custom Property Set Payload description: Custom property set payload type: object @@ -16977,7 +16980,7 @@ paths: type: object description: A repository rule. oneOf: - - &599 + - &600 title: creation description: Only allow users with bypass permission to create matching refs. @@ -16989,7 +16992,7 @@ paths: type: string enum: - creation - - &600 + - &601 title: update description: Only allow users with bypass permission to update matching refs. @@ -17010,7 +17013,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &602 + - &603 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -17022,7 +17025,7 @@ paths: type: string enum: - deletion - - &603 + - &604 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -17034,7 +17037,7 @@ paths: type: string enum: - required_linear_history - - &604 + - &605 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -17110,7 +17113,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &605 + - &606 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -17134,7 +17137,7 @@ paths: type: string required: - required_deployment_environments - - &606 + - &607 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -17146,7 +17149,7 @@ paths: type: string enum: - required_signatures - - &607 + - &608 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -17197,7 +17200,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &608 + - &609 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -17244,7 +17247,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &609 + - &610 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -17256,7 +17259,7 @@ paths: type: string enum: - non_fast_forward - - &610 + - &611 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -17292,7 +17295,7 @@ paths: required: - operator - pattern - - &611 + - &612 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -17328,7 +17331,7 @@ paths: required: - operator - pattern - - &612 + - &613 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -17364,7 +17367,7 @@ paths: required: - operator - pattern - - &613 + - &614 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -17400,7 +17403,7 @@ paths: required: - operator - pattern - - &614 + - &615 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -17526,7 +17529,7 @@ paths: maximum: 100 required: - max_file_size - - &615 + - &616 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -17575,7 +17578,7 @@ paths: - repository_id required: - workflows - - &616 + - &617 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -17732,7 +17735,7 @@ paths: conditions: anyOf: - *117 - - &313 + - &314 title: Organization ruleset conditions type: object description: |- @@ -18016,7 +18019,7 @@ paths: type: string format: date-time examples: - default: &315 + default: &316 value: - version_id: 3 actor: @@ -18069,7 +18072,7 @@ paths: description: Response content: application/json: - schema: &316 + schema: &317 allOf: - *127 - type: object @@ -18124,7 +18127,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *38 - - &317 + - &318 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -18135,7 +18138,7 @@ paths: enum: - open - resolved - - &318 + - &319 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -18145,7 +18148,7 @@ paths: required: false schema: type: string - - &319 + - &320 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -18154,7 +18157,7 @@ paths: required: false schema: type: string - - &320 + - &321 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. @@ -18170,7 +18173,7 @@ paths: - *17 - *82 - *83 - - &321 + - &322 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -18179,7 +18182,7 @@ paths: required: false schema: type: string - - &322 + - &323 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -18188,7 +18191,7 @@ paths: schema: type: boolean default: false - - &323 + - &324 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -18204,7 +18207,7 @@ paths: application/json: schema: type: array - items: &324 + items: &325 type: object properties: number: *96 @@ -18220,14 +18223,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &629 + state: &630 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: &630 + resolution: &631 type: - string - 'null' @@ -18332,7 +18335,7 @@ paths: description: A boolean value representing whether or not alert is base64 encoded examples: - default: &325 + default: &326 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -18595,7 +18598,7 @@ paths: description: Response content: application/json: - schema: &327 + schema: &328 type: object properties: total_minutes_used: @@ -18665,7 +18668,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &328 + default: &329 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -18703,7 +18706,7 @@ paths: description: Success content: application/json: - schema: &329 + schema: &330 type: object properties: total_advanced_security_committers: @@ -18766,7 +18769,7 @@ paths: required: - repositories examples: - default: &330 + default: &331 value: total_advanced_security_committers: 2 total_count: 2 @@ -19005,7 +19008,7 @@ paths: description: Response content: application/json: - schema: &331 + schema: &332 type: object properties: total_gigabytes_bandwidth_used: @@ -19023,7 +19026,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &332 + default: &333 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -19055,7 +19058,7 @@ paths: description: Response content: application/json: - schema: &333 + schema: &334 type: object properties: days_left_in_billing_cycle: @@ -19073,7 +19076,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &334 + default: &335 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -19702,7 +19705,7 @@ paths: milestone: anyOf: - type: 'null' - - &480 + - &481 title: Milestone description: A collection of related issues and pull requests. @@ -19966,7 +19969,7 @@ paths: - author_association - created_at - updated_at - comment: &539 + comment: &540 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -20541,7 +20544,7 @@ paths: url: type: string format: uri - user: &686 + user: &687 title: Public User description: Public User type: object @@ -23898,14 +23901,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &358 + - &359 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &359 + - &360 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -23976,7 +23979,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &372 + '301': &373 description: Moved permanently content: application/json: @@ -23998,7 +24001,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &568 + - &569 name: all description: If `true`, show notifications marked as read. in: query @@ -24006,7 +24009,7 @@ paths: schema: type: boolean default: false - - &569 + - &570 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -24016,7 +24019,7 @@ paths: type: boolean default: false - *138 - - &570 + - &571 name: before description: 'Only show notifications updated before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format: @@ -24387,7 +24390,7 @@ paths: type: boolean examples: - false - security_and_analysis: &310 + security_and_analysis: &311 type: - object - 'null' @@ -24542,7 +24545,7 @@ paths: - url - subscription_url examples: - default: &571 + default: &572 value: - id: '1' repository: @@ -25095,7 +25098,7 @@ paths: type: array items: *56 examples: - default: &703 + default: &704 value: - login: github id: 1 @@ -26098,7 +26101,7 @@ paths: type: integer repository_cache_usages: type: array - items: &377 + items: &378 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -26771,7 +26774,7 @@ paths: type: array items: *61 examples: - default: &697 + default: &698 value: total_count: 1 repositories: @@ -27594,7 +27597,7 @@ paths: type: array items: *190 examples: - default: &689 + default: &690 value: total_count: 1 repositories: @@ -28637,7 +28640,7 @@ paths: description: Response content: application/json: - schema: &397 + schema: &398 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -28672,7 +28675,7 @@ paths: - key_id - key examples: - default: &398 + default: &399 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29085,7 +29088,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *164 - - &382 + - &383 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -29703,7 +29706,7 @@ paths: bundle_url: type: string examples: - default: &411 + default: &412 value: attestations: - bundle: @@ -30050,7 +30053,7 @@ paths: application/json: schema: type: array - items: &428 + items: &429 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -30181,7 +30184,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &429 + default: &430 value: - id: 21 number: 42 @@ -30294,7 +30297,7 @@ paths: be returned. in: query required: false - schema: &439 + schema: &440 type: string description: Severity of a code scanning alert. enum: @@ -31299,7 +31302,7 @@ paths: machine: anyOf: - type: 'null' - - &468 + - &469 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -32251,7 +32254,7 @@ paths: - updated_at - visibility examples: - default: &469 + default: &470 value: total_count: 2 secrets: @@ -32289,7 +32292,7 @@ paths: description: Response content: application/json: - schema: &470 + schema: &471 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -32324,7 +32327,7 @@ paths: - key_id - key examples: - default: &471 + default: &472 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32356,7 +32359,7 @@ paths: application/json: schema: *231 examples: - default: &473 + default: &474 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -34125,7 +34128,7 @@ paths: description: Response content: application/json: - schema: &496 + schema: &497 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -34144,7 +34147,7 @@ paths: - key_id - key examples: - default: &497 + default: &498 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34726,7 +34729,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &354 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -34816,7 +34819,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &354 + default: &355 value: group_id: '123' group_name: Octocat admins @@ -34871,7 +34874,7 @@ paths: description: Response content: application/json: - schema: &351 + schema: &352 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -34911,7 +34914,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &352 + default: &353 value: groups: - group_id: '123' @@ -35076,7 +35079,7 @@ paths: application/json: schema: type: array - items: &311 + items: &312 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -35090,7 +35093,7 @@ paths: - name - description examples: - default: &312 + default: &313 value: - name: add_assignee description: Assign or remove a user @@ -36240,7 +36243,7 @@ paths: application/json: schema: *20 examples: - default: &535 + default: &536 value: id: 1 account: @@ -36468,7 +36471,7 @@ paths: required: true content: application/json: - schema: &536 + schema: &537 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -37088,7 +37091,7 @@ paths: application/json: schema: *281 examples: - default: &467 + default: &468 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -38326,7 +38329,7 @@ paths: parameters: - *164 - *287 - - &702 + - &703 name: repo_name description: repo_name parameter in: path @@ -39650,7 +39653,7 @@ paths: - nuget - container - *164 - - &704 + - &705 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -39691,7 +39694,7 @@ paths: default: *293 '403': *27 '401': *23 - '400': &706 + '400': &707 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -40201,6 +40204,18 @@ paths: schema: type: string format: date-time + - &305 + name: token_id + description: The ID of the token + in: query + required: false + schema: + type: array + maxItems: 50 + items: + type: string + examples: + - token_id[]=1,token_id[]=2 responses: '500': *95 '422': *15 @@ -40541,6 +40556,7 @@ paths: - *302 - *303 - *304 + - *305 responses: '500': *95 '422': *15 @@ -40868,7 +40884,7 @@ paths: type: integer configurations: type: array - items: &305 + items: &306 title: Organization private registry description: Private registry configuration for an organization type: object @@ -41080,7 +41096,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &306 + org-private-registry-with-selected-visibility: &307 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -41182,9 +41198,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *305 + schema: *306 examples: - default: *306 + default: *307 '404': *6 x-github: githubCloudOnly: false @@ -41335,7 +41351,7 @@ paths: application/json: schema: type: array - items: &307 + items: &308 title: Project description: Projects are a way to organize columns and cards of work. @@ -41517,7 +41533,7 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: default: value: @@ -41555,7 +41571,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &369 + '410': &370 description: Gone content: application/json: @@ -41717,7 +41733,7 @@ paths: required: true content: application/json: - schema: *308 + schema: *309 examples: default: value: @@ -41823,7 +41839,7 @@ paths: - octocat/Hello-World properties: type: array - items: &309 + items: &310 title: Custom Property Value description: Custom property name and associated value type: object @@ -41913,7 +41929,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *309 + items: *310 required: - repository_names - properties @@ -42310,7 +42326,7 @@ paths: description: Response content: application/json: - schema: &371 + schema: &372 title: Full Repository description: Full Repository type: object @@ -42775,7 +42791,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &486 + code_of_conduct: &487 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -42805,7 +42821,7 @@ paths: - key - name - html_url - security_and_analysis: *310 + security_and_analysis: *311 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -42889,7 +42905,7 @@ paths: - network_count - subscribers_count examples: - default: &373 + default: &374 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43415,9 +43431,9 @@ paths: application/json: schema: type: array - items: *311 + items: *312 examples: - default: *312 + default: *313 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -43442,7 +43458,7 @@ paths: - *164 - *17 - *19 - - &617 + - &618 name: targets description: | A comma-separated list of rule targets to filter by. @@ -43534,7 +43550,7 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *122 - conditions: *313 + conditions: *314 rules: type: array description: An array of rules within the ruleset. @@ -43578,7 +43594,7 @@ paths: application/json: schema: *124 examples: - default: &314 + default: &315 value: id: 21 name: super cool ruleset @@ -43633,7 +43649,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *164 - - &618 + - &619 name: ref description: The name of the ref. Cannot contain wildcard characters. Optionally prefix with `refs/heads/` to limit to branches or `refs/tags/` to limit @@ -43645,14 +43661,14 @@ paths: x-multi-segment: true - *219 - *215 - - &619 + - &620 name: actor_name description: The handle for the GitHub user account to filter on. When specified, only rule evaluations triggered by this actor will be returned. in: query schema: type: string - - &620 + - &621 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -43672,7 +43688,7 @@ paths: description: Response content: application/json: - schema: &621 + schema: &622 title: Rule Suites description: Response type: array @@ -43728,7 +43744,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &622 + default: &623 value: - id: 21 actor_id: 12 @@ -43772,7 +43788,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *164 - - &623 + - &624 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -43788,7 +43804,7 @@ paths: description: Response content: application/json: - schema: &624 + schema: &625 title: Rule Suite description: Response type: object @@ -43895,7 +43911,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &625 + default: &626 value: id: 21 actor_id: 12 @@ -43970,7 +43986,7 @@ paths: application/json: schema: *124 examples: - default: *314 + default: *315 '404': *6 '500': *95 put: @@ -44019,7 +44035,7 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *122 - conditions: *313 + conditions: *314 rules: description: An array of rules within the ruleset. type: array @@ -44060,7 +44076,7 @@ paths: application/json: schema: *124 examples: - default: *314 + default: *315 '404': *6 '500': *95 delete: @@ -44119,7 +44135,7 @@ paths: type: array items: *127 examples: - default: *315 + default: *316 '404': *6 '500': *95 x-github: @@ -44156,7 +44172,7 @@ paths: description: Response content: application/json: - schema: *316 + schema: *317 examples: default: value: @@ -44219,14 +44235,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *164 - - *317 - *318 - *319 - *320 + - *321 - *84 - *19 - *17 - - &627 + - &628 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -44236,7 +44252,7 @@ paths: required: false schema: type: string - - &628 + - &629 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest//rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -44246,9 +44262,9 @@ paths: required: false schema: type: string - - *321 - *322 - *323 + - *324 responses: '200': description: Response @@ -44256,9 +44272,9 @@ paths: application/json: schema: type: array - items: *324 + items: *325 examples: - default: *325 + default: *326 headers: Link: *37 '404': *6 @@ -44328,7 +44344,7 @@ paths: application/json: schema: type: array - items: &635 + items: &636 description: A repository security advisory. type: object properties: @@ -44572,7 +44588,7 @@ paths: login: type: string description: The username of the user credited. - type: *326 + type: *327 credits_detailed: type: - array @@ -44583,7 +44599,7 @@ paths: type: object properties: user: *4 - type: *326 + type: *327 state: type: string description: The state of the user's acceptance of the @@ -44647,7 +44663,7 @@ paths: - private_fork additionalProperties: false examples: - default: &636 + default: &637 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -45121,9 +45137,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *328 + default: *329 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45155,9 +45171,9 @@ paths: description: Success content: application/json: - schema: *329 + schema: *330 examples: - default: *330 + default: *331 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45185,9 +45201,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: *332 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45215,9 +45231,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45257,7 +45273,7 @@ paths: type: array items: *107 examples: - default: *335 + default: *336 headers: Link: *37 x-github: @@ -45458,15 +45474,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *164 - - *336 + - *337 responses: '200': description: Response content: application/json: - schema: *337 + schema: *338 examples: - default: *338 + default: *339 headers: Link: *37 x-github: @@ -45504,7 +45520,7 @@ paths: description: Response content: application/json: - schema: &360 + schema: &361 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -45556,7 +45572,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &361 + default: &362 value: groups: - group_id: '123' @@ -45837,7 +45853,7 @@ paths: description: Response content: application/json: - schema: &339 + schema: &340 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -46217,7 +46233,7 @@ paths: - repos_count - organization examples: - default: &340 + default: &341 value: id: 1 node_id: MDQ6VGVhbTE= @@ -46294,9 +46310,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '404': *6 x-github: githubCloudOnly: false @@ -46381,16 +46397,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '201': description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '404': *6 '422': *15 '403': *27 @@ -46460,7 +46476,7 @@ paths: application/json: schema: type: array - items: &341 + items: &342 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -46571,7 +46587,7 @@ paths: - updated_at - url examples: - default: &676 + default: &677 value: - author: login: octocat @@ -46680,9 +46696,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: &342 + default: &343 value: author: login: octocat @@ -46756,7 +46772,7 @@ paths: parameters: - *164 - *289 - - &343 + - &344 name: discussion_number description: The number that identifies the discussion. in: path @@ -46768,9 +46784,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: *342 + default: *343 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46794,7 +46810,7 @@ paths: parameters: - *164 - *289 - - *343 + - *344 requestBody: required: false content: @@ -46817,9 +46833,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: &677 + default: &678 value: author: login: octocat @@ -46891,7 +46907,7 @@ paths: parameters: - *164 - *289 - - *343 + - *344 responses: '204': description: Response @@ -46919,7 +46935,7 @@ paths: parameters: - *164 - *289 - - *343 + - *344 - *84 - *17 - *19 @@ -46930,7 +46946,7 @@ paths: application/json: schema: type: array - items: &344 + items: &345 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -47010,7 +47026,7 @@ paths: - updated_at - url examples: - default: &678 + default: &679 value: - author: login: octocat @@ -47080,7 +47096,7 @@ paths: parameters: - *164 - *289 - - *343 + - *344 requestBody: required: true content: @@ -47102,9 +47118,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: &345 + default: &346 value: author: login: octocat @@ -47172,8 +47188,8 @@ paths: parameters: - *164 - *289 - - *343 - - &346 + - *344 + - &347 name: comment_number description: The number that identifies the comment. in: path @@ -47185,9 +47201,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *345 + default: *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47211,8 +47227,8 @@ paths: parameters: - *164 - *289 - - *343 - - *346 + - *344 + - *347 requestBody: required: true content: @@ -47234,9 +47250,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: &679 + default: &680 value: author: login: octocat @@ -47302,8 +47318,8 @@ paths: parameters: - *164 - *289 - - *343 - - *346 + - *344 + - *347 responses: '204': description: Response @@ -47331,8 +47347,8 @@ paths: parameters: - *164 - *289 - - *343 - - *346 + - *344 + - *347 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -47358,7 +47374,7 @@ paths: application/json: schema: type: array - items: &347 + items: &348 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -47402,7 +47418,7 @@ paths: - content - created_at examples: - default: &349 + default: &350 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -47454,8 +47470,8 @@ paths: parameters: - *164 - *289 - - *343 - - *346 + - *344 + - *347 requestBody: required: true content: @@ -47488,9 +47504,9 @@ paths: team discussion comment content: application/json: - schema: *347 + schema: *348 examples: - default: &348 + default: &349 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -47519,9 +47535,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47546,9 +47562,9 @@ paths: parameters: - *164 - *289 - - *343 - - *346 - - &350 + - *344 + - *347 + - &351 name: reaction_id description: The unique identifier of the reaction. in: path @@ -47582,7 +47598,7 @@ paths: parameters: - *164 - *289 - - *343 + - *344 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -47608,9 +47624,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 x-github: @@ -47638,7 +47654,7 @@ paths: parameters: - *164 - *289 - - *343 + - *344 requestBody: required: true content: @@ -47670,16 +47686,16 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '201': description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47704,8 +47720,8 @@ paths: parameters: - *164 - *289 - - *343 - - *350 + - *344 + - *351 responses: '204': description: Response @@ -47735,9 +47751,9 @@ paths: description: Response content: application/json: - schema: *351 + schema: *352 examples: - default: *352 + default: *353 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -47781,9 +47797,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -47924,7 +47940,7 @@ paths: description: Response content: application/json: - schema: &355 + schema: &356 title: Team Membership description: Team Membership type: object @@ -47952,7 +47968,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &680 + response-if-user-is-a-team-maintainer: &681 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -48015,9 +48031,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *356 examples: - response-if-users-membership-with-team-is-now-pending: &681 + response-if-users-membership-with-team-is-now-pending: &682 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -48090,7 +48106,7 @@ paths: application/json: schema: type: array - items: &356 + items: &357 title: Team Project description: A team's access to a project. type: object @@ -48159,7 +48175,7 @@ paths: - updated_at - permissions examples: - default: &682 + default: &683 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -48224,7 +48240,7 @@ paths: parameters: - *164 - *289 - - &357 + - &358 name: project_id description: The unique identifier of the project. in: path @@ -48236,9 +48252,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: - default: &683 + default: &684 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -48302,7 +48318,7 @@ paths: parameters: - *164 - *289 - - *357 + - *358 requestBody: required: false content: @@ -48371,7 +48387,7 @@ paths: parameters: - *164 - *289 - - *357 + - *358 responses: '204': description: Response @@ -48442,14 +48458,14 @@ paths: parameters: - *164 - *289 - - *358 - *359 + - *360 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &684 + schema: &685 title: Team Repository description: A team's access to a repository. type: object @@ -49092,8 +49108,8 @@ paths: parameters: - *164 - *289 - - *358 - *359 + - *360 requestBody: required: false content: @@ -49140,8 +49156,8 @@ paths: parameters: - *164 - *289 - - *358 - *359 + - *360 responses: '204': description: Response @@ -49174,9 +49190,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *361 + default: *362 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -49242,7 +49258,7 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: default: value: @@ -49287,7 +49303,7 @@ paths: type: array items: *277 examples: - response-if-child-teams-exist: &685 + response-if-child-teams-exist: &686 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -49414,7 +49430,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#get-a-project-card parameters: - - &362 + - &363 name: card_id description: The unique identifier of the card. in: path @@ -49426,7 +49442,7 @@ paths: description: Response content: application/json: - schema: &363 + schema: &364 title: Project Card description: Project cards represent a scope of work. type: object @@ -49501,7 +49517,7 @@ paths: - created_at - updated_at examples: - default: &364 + default: &365 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -49557,7 +49573,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#update-an-existing-project-card parameters: - - *362 + - *363 requestBody: required: false content: @@ -49587,9 +49603,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *364 examples: - default: *364 + default: *365 '304': *35 '403': *27 '401': *23 @@ -49616,7 +49632,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#delete-a-project-card parameters: - - *362 + - *363 responses: '204': description: Response @@ -49660,7 +49676,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#move-a-project-card parameters: - - *362 + - *363 requestBody: required: true content: @@ -49773,7 +49789,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#get-a-project-column parameters: - - &365 + - &366 name: column_id description: The unique identifier of the column. in: path @@ -49785,7 +49801,7 @@ paths: description: Response content: application/json: - schema: &366 + schema: &367 title: Project Column description: Project columns contain cards of work. type: object @@ -49839,7 +49855,7 @@ paths: - created_at - updated_at examples: - default: &367 + default: &368 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -49874,7 +49890,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#update-an-existing-project-column parameters: - - *365 + - *366 requestBody: required: true content: @@ -49899,9 +49915,9 @@ paths: description: Response content: application/json: - schema: *366 + schema: *367 examples: - default: *367 + default: *368 '304': *35 '403': *27 '401': *23 @@ -49926,7 +49942,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#delete-a-project-column parameters: - - *365 + - *366 responses: '204': description: Response @@ -49955,7 +49971,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#list-project-cards parameters: - - *365 + - *366 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -49976,7 +49992,7 @@ paths: application/json: schema: type: array - items: *363 + items: *364 examples: default: value: @@ -50035,7 +50051,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#create-a-project-card parameters: - - *365 + - *366 requestBody: required: true content: @@ -50079,9 +50095,9 @@ paths: description: Response content: application/json: - schema: *363 + schema: *364 examples: - default: *364 + default: *365 '304': *35 '403': *27 '401': *23 @@ -50137,7 +50153,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#move-a-project-column parameters: - - *365 + - *366 requestBody: required: true content: @@ -50198,15 +50214,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-a-project parameters: - - *357 + - *358 responses: '200': description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &368 + default: &369 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -50263,7 +50279,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#update-a-project parameters: - - *357 + - *358 requestBody: required: false content: @@ -50312,9 +50328,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *368 + default: *369 '404': description: Not Found if the authenticated user does not have access to the project @@ -50335,7 +50351,7 @@ paths: items: type: string '401': *23 - '410': *369 + '410': *370 '422': *7 x-github: githubCloudOnly: false @@ -50358,7 +50374,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#delete-a-project parameters: - - *357 + - *358 responses: '204': description: Delete Success @@ -50379,7 +50395,7 @@ paths: items: type: string '401': *23 - '410': *369 + '410': *370 '404': *6 x-github: githubCloudOnly: false @@ -50403,7 +50419,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#list-project-collaborators parameters: - - *357 + - *358 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -50460,7 +50476,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#add-project-collaborator parameters: - - *357 + - *358 - *212 requestBody: required: false @@ -50515,7 +50531,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *357 + - *358 - *212 responses: '204': @@ -50547,7 +50563,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *357 + - *358 - *212 responses: '200': @@ -50618,7 +50634,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#list-project-columns parameters: - - *357 + - *358 - *17 - *19 responses: @@ -50628,7 +50644,7 @@ paths: application/json: schema: type: array - items: *366 + items: *367 examples: default: value: @@ -50666,7 +50682,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#create-a-project-column parameters: - - *357 + - *358 requestBody: required: true content: @@ -50690,7 +50706,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *367 examples: default: value: @@ -50754,7 +50770,7 @@ paths: resources: type: object properties: - core: &370 + core: &371 title: Rate Limit type: object properties: @@ -50771,20 +50787,20 @@ paths: - remaining - reset - used - graphql: *370 - search: *370 - code_search: *370 - source_import: *370 - integration_manifest: *370 - code_scanning_upload: *370 - actions_runner_registration: *370 - scim: *370 - dependency_snapshots: *370 - code_scanning_autofix: *370 + graphql: *371 + search: *371 + code_search: *371 + source_import: *371 + integration_manifest: *371 + code_scanning_upload: *371 + actions_runner_registration: *371 + scim: *371 + dependency_snapshots: *371 + code_scanning_autofix: *371 required: - core - search - rate: *370 + rate: *371 required: - rate - resources @@ -50888,14 +50904,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *371 + schema: *372 examples: default-response: summary: Default response @@ -51400,7 +51416,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *372 + '301': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51418,8 +51434,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: false content: @@ -51666,10 +51682,10 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *373 - '307': &374 + default: *374 + '307': &375 description: Temporary Redirect content: application/json: @@ -51698,8 +51714,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -51721,7 +51737,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository - '307': *374 + '307': *375 '404': *6 x-github: githubCloudOnly: false @@ -51744,11 +51760,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *358 - *359 + - *360 - *17 - *19 - - &389 + - &390 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -51771,7 +51787,7 @@ paths: type: integer artifacts: type: array - items: &375 + items: &376 title: Artifact description: An artifact type: object @@ -51866,7 +51882,7 @@ paths: - expires_at - updated_at examples: - default: &390 + default: &391 value: total_count: 2 artifacts: @@ -51927,9 +51943,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *358 - *359 - - &376 + - *360 + - &377 name: artifact_id description: The unique identifier of the artifact. in: path @@ -51941,7 +51957,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *376 examples: default: value: @@ -51979,9 +51995,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *358 - *359 - - *376 + - *360 + - *377 responses: '204': description: Response @@ -52005,9 +52021,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *358 - *359 - - *376 + - *360 + - *377 - name: archive_format in: path required: true @@ -52021,7 +52037,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52044,14 +52060,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *377 + schema: *378 examples: default: value: @@ -52077,11 +52093,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *358 - *359 + - *360 - *17 - *19 - - &378 + - &379 name: ref description: The full Git reference for narrowing down the cache. The `ref` for a branch should be formatted as `refs/heads/`. To reference @@ -52115,7 +52131,7 @@ paths: description: Response content: application/json: - schema: &379 + schema: &380 title: Repository actions caches description: Repository actions caches type: object @@ -52165,7 +52181,7 @@ paths: - total_count - actions_caches examples: - default: &380 + default: &381 value: total_count: 1 actions_caches: @@ -52197,23 +52213,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *358 - *359 + - *360 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *378 + - *379 responses: '200': description: Response content: application/json: - schema: *379 + schema: *380 examples: - default: *380 + default: *381 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52233,8 +52249,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *358 - *359 + - *360 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -52265,9 +52281,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *358 - *359 - - &381 + - *360 + - &382 name: job_id description: The unique identifier of the job. in: path @@ -52279,7 +52295,7 @@ paths: description: Response content: application/json: - schema: &393 + schema: &394 title: Job description: Information of a job execution in a workflow run type: object @@ -52626,9 +52642,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *358 - *359 - - *381 + - *360 + - *382 responses: '302': description: Response @@ -52656,9 +52672,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *358 - *359 - - *381 + - *360 + - *382 requestBody: required: false content: @@ -52704,8 +52720,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Status response @@ -52755,8 +52771,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -52819,8 +52835,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -52838,7 +52854,7 @@ paths: type: integer secrets: type: array - items: &395 + items: &396 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -52859,7 +52875,7 @@ paths: - created_at - updated_at examples: - default: &396 + default: &397 value: total_count: 2 secrets: @@ -52892,9 +52908,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *358 - *359 - - *382 + - *360 + - *383 - *19 responses: '200': @@ -52911,7 +52927,7 @@ paths: type: integer variables: type: array - items: &399 + items: &400 title: Actions Variable type: object properties: @@ -52945,7 +52961,7 @@ paths: - created_at - updated_at examples: - default: &400 + default: &401 value: total_count: 2 variables: @@ -52978,8 +52994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -52988,7 +53004,7 @@ paths: schema: type: object properties: - enabled: &383 + enabled: &384 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *46 @@ -53021,8 +53037,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -53033,7 +53049,7 @@ paths: schema: type: object properties: - enabled: *383 + enabled: *384 allowed_actions: *46 required: - enabled @@ -53064,14 +53080,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: &384 + schema: &385 type: object properties: access_level: @@ -53089,7 +53105,7 @@ paths: required: - access_level examples: - default: &385 + default: &386 value: access_level: organization x-github: @@ -53114,15 +53130,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: application/json: - schema: *384 + schema: *385 examples: - default: *385 + default: *386 responses: '204': description: Response @@ -53146,8 +53162,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -53178,8 +53194,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -53211,8 +53227,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -53241,8 +53257,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Success response @@ -53282,8 +53298,8 @@ paths: in: query schema: type: string - - *358 - *359 + - *360 - *17 - *19 responses: @@ -53327,8 +53343,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -53360,8 +53376,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -53435,8 +53451,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *358 - *359 + - *360 responses: '201': description: Response @@ -53472,8 +53488,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *358 - *359 + - *360 responses: '201': description: Response @@ -53503,8 +53519,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *358 - *359 + - *360 - *58 responses: '200': @@ -53534,8 +53550,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *358 - *359 + - *360 - *58 responses: '204': @@ -53561,8 +53577,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *358 - *359 + - *360 - *58 responses: '200': *64 @@ -53587,8 +53603,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *358 - *359 + - *360 - *58 requestBody: required: true @@ -53637,8 +53653,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *358 - *359 + - *360 - *58 requestBody: required: true @@ -53688,8 +53704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *358 - *359 + - *360 - *58 responses: '200': *197 @@ -53719,8 +53735,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *358 - *359 + - *360 - *58 - *198 responses: @@ -53750,9 +53766,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *358 - *359 - - &403 + - *360 + - &404 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -53760,7 +53776,7 @@ paths: required: false schema: type: string - - &404 + - &405 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -53768,7 +53784,7 @@ paths: required: false schema: type: string - - &405 + - &406 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -53777,7 +53793,7 @@ paths: required: false schema: type: string - - &406 + - &407 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -53804,7 +53820,7 @@ paths: - pending - *17 - *19 - - &407 + - &408 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -53813,7 +53829,7 @@ paths: schema: type: string format: date-time - - &386 + - &387 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -53822,13 +53838,13 @@ paths: schema: type: boolean default: false - - &408 + - &409 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &409 + - &410 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -53851,7 +53867,7 @@ paths: type: integer workflow_runs: type: array - items: &387 + items: &388 title: Workflow Run description: An invocation of a workflow type: object @@ -53968,7 +53984,7 @@ paths: type: - array - 'null' - items: &430 + items: &431 title: Pull Request Minimal type: object properties: @@ -54095,7 +54111,7 @@ paths: head_commit: anyOf: - type: 'null' - - &434 + - &435 title: Simple Commit description: A commit. type: object @@ -54210,7 +54226,7 @@ paths: - workflow_url - pull_requests examples: - default: &410 + default: &411 value: total_count: 1 workflow_runs: @@ -54446,24 +54462,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *358 - *359 - - &388 + - *360 + - &389 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *386 + - *387 responses: '200': description: Response content: application/json: - schema: *387 + schema: *388 examples: - default: &391 + default: &392 value: id: 30433642 name: Build @@ -54704,9 +54720,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '204': description: Response @@ -54729,9 +54745,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '200': description: Response @@ -54859,9 +54875,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '201': description: Response @@ -54894,12 +54910,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *358 - *359 - - *388 + - *360 + - *389 - *17 - *19 - - *389 + - *390 responses: '200': description: Response @@ -54915,9 +54931,9 @@ paths: type: integer artifacts: type: array - items: *375 + items: *376 examples: - default: *390 + default: *391 headers: Link: *37 x-github: @@ -54941,25 +54957,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *358 - *359 - - *388 - - &392 + - *360 + - *389 + - &393 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *386 + - *387 responses: '200': description: Response content: application/json: - schema: *387 + schema: *388 examples: - default: *391 + default: *392 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54982,10 +54998,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *358 - *359 - - *388 - - *392 + - *360 + - *389 + - *393 - *17 - *19 responses: @@ -55003,9 +55019,9 @@ paths: type: integer jobs: type: array - items: *393 + items: *394 examples: - default: &394 + default: &395 value: total_count: 1 jobs: @@ -55118,10 +55134,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *358 - *359 - - *388 - - *392 + - *360 + - *389 + - *393 responses: '302': description: Response @@ -55149,9 +55165,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '202': description: Response @@ -55184,9 +55200,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 requestBody: required: true content: @@ -55253,9 +55269,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '202': description: Response @@ -55288,9 +55304,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 - name: filter description: Filters jobs by their `completed_at` timestamp. `latest` returns jobs from the most recent execution of the workflow run. `all` returns all @@ -55320,9 +55336,9 @@ paths: type: integer jobs: type: array - items: *393 + items: *394 examples: - default: *394 + default: *395 headers: Link: *37 x-github: @@ -55347,9 +55363,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '302': description: Response @@ -55376,9 +55392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '204': description: Response @@ -55405,9 +55421,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '200': description: Response @@ -55476,7 +55492,7 @@ paths: items: type: object properties: - type: &505 + type: &506 type: string description: The type of reviewer. enum: @@ -55562,9 +55578,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 requestBody: required: true content: @@ -55614,7 +55630,7 @@ paths: application/json: schema: type: array - items: &500 + items: &501 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -55726,7 +55742,7 @@ paths: - created_at - updated_at examples: - default: &501 + default: &502 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -55782,9 +55798,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *358 - *359 - - *388 + - *360 + - *389 requestBody: required: false content: @@ -55829,9 +55845,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *358 - *359 - - *388 + - *360 + - *389 requestBody: required: false content: @@ -55886,9 +55902,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *358 - *359 - - *388 + - *360 + - *389 responses: '200': description: Response @@ -56025,8 +56041,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -56044,9 +56060,9 @@ paths: type: integer secrets: type: array - items: *395 + items: *396 examples: - default: *396 + default: *397 headers: Link: *37 x-github: @@ -56071,16 +56087,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *397 + schema: *398 examples: - default: *398 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56102,17 +56118,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 responses: '200': description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: &518 + default: &519 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -56138,8 +56154,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 requestBody: required: true @@ -56197,8 +56213,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 responses: '204': @@ -56224,9 +56240,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *358 - *359 - - *382 + - *360 + - *383 - *19 responses: '200': @@ -56243,9 +56259,9 @@ paths: type: integer variables: type: array - items: *399 + items: *400 examples: - default: *400 + default: *401 headers: Link: *37 x-github: @@ -56268,8 +56284,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -56321,17 +56337,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *358 - *359 + - *360 - *203 responses: '200': description: Response content: application/json: - schema: *399 + schema: *400 examples: - default: &519 + default: &520 value: name: USERNAME value: octocat @@ -56357,8 +56373,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *358 - *359 + - *360 - *203 requestBody: required: true @@ -56401,8 +56417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *358 - *359 + - *360 - *203 responses: '204': @@ -56428,8 +56444,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -56447,7 +56463,7 @@ paths: type: integer workflows: type: array - items: &401 + items: &402 title: Workflow description: A GitHub Actions workflow type: object @@ -56565,9 +56581,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *358 - *359 - - &402 + - *360 + - &403 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -56582,7 +56598,7 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: default: value: @@ -56615,9 +56631,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *358 - *359 - - *402 + - *360 + - *403 responses: '204': description: Response @@ -56642,9 +56658,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *358 - *359 - - *402 + - *360 + - *403 responses: '204': description: Response @@ -56695,9 +56711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *358 - *359 - - *402 + - *360 + - *403 responses: '204': description: Response @@ -56724,19 +56740,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *358 - *359 - - *402 + - *360 - *403 - *404 - *405 - *406 + - *407 - *17 - *19 - - *407 - - *386 - *408 + - *387 - *409 + - *410 responses: '200': description: Response @@ -56752,9 +56768,9 @@ paths: type: integer workflow_runs: type: array - items: *387 + items: *388 examples: - default: *410 + default: *411 headers: Link: *37 x-github: @@ -56787,9 +56803,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *358 - *359 - - *402 + - *360 + - *403 responses: '200': description: Response @@ -56850,8 +56866,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *358 - *359 + - *360 - *84 - *17 - *82 @@ -57019,8 +57035,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -57057,8 +57073,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *358 - *359 + - *360 - name: assignee in: path required: true @@ -57094,8 +57110,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -57207,8 +57223,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *358 - *359 + - *360 - *17 - *82 - *83 @@ -57262,7 +57278,7 @@ paths: bundle_url: type: string examples: - default: *411 + default: *412 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57282,8 +57298,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -57291,7 +57307,7 @@ paths: application/json: schema: type: array - items: &412 + items: &413 title: Autolink reference description: An autolink reference. type: object @@ -57345,8 +57361,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -57385,9 +57401,9 @@ paths: description: response content: application/json: - schema: *412 + schema: *413 examples: - default: &413 + default: &414 value: id: 1 key_prefix: TICKET- @@ -57418,9 +57434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *358 - *359 - - &414 + - *360 + - &415 name: autolink_id description: The unique identifier of the autolink. in: path @@ -57432,9 +57448,9 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: - default: *413 + default: *414 '404': *6 x-github: githubCloudOnly: false @@ -57454,9 +57470,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *358 - *359 - - *414 + - *360 + - *415 responses: '204': description: Response @@ -57480,8 +57496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response if Dependabot is enabled @@ -57531,8 +57547,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -57553,8 +57569,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -57574,8 +57590,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *358 - *359 + - *360 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -57613,7 +57629,7 @@ paths: - url protected: type: boolean - protection: &416 + protection: &417 title: Branch Protection description: Branch Protection type: object @@ -57656,7 +57672,7 @@ paths: required: - contexts - checks - enforce_admins: &419 + enforce_admins: &420 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -57673,7 +57689,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &421 + required_pull_request_reviews: &422 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -57757,7 +57773,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &418 + restrictions: &419 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -58082,9 +58098,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *358 - *359 - - &417 + - *360 + - &418 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest//graphql). @@ -58098,14 +58114,14 @@ paths: description: Response content: application/json: - schema: &427 + schema: &428 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &476 + commit: &477 title: Commit description: Commit type: object @@ -58144,7 +58160,7 @@ paths: author: anyOf: - type: 'null' - - &415 + - &416 title: Git User description: Metaproperties for Git author/committer information. @@ -58165,7 +58181,7 @@ paths: committer: anyOf: - type: 'null' - - *415 + - *416 message: type: string examples: @@ -58189,7 +58205,7 @@ paths: required: - sha - url - verification: &525 + verification: &526 title: Verification type: object properties: @@ -58269,7 +58285,7 @@ paths: type: integer files: type: array - items: &488 + items: &489 title: Diff Entry description: Diff Entry type: object @@ -58363,7 +58379,7 @@ paths: - self protected: type: boolean - protection: *416 + protection: *417 protection_url: type: string format: uri @@ -58472,7 +58488,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *372 + '301': *373 '404': *6 x-github: githubCloudOnly: false @@ -58494,15 +58510,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -58696,9 +58712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -58958,7 +58974,7 @@ paths: url: type: string format: uri - required_status_checks: &424 + required_status_checks: &425 title: Status Check Policy description: Status Check Policy type: object @@ -59117,7 +59133,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *418 + restrictions: *419 required_conversation_resolution: type: object properties: @@ -59229,9 +59245,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '204': description: Response @@ -59256,17 +59272,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: &420 + default: &421 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -59288,17 +59304,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: *420 + default: *421 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59317,9 +59333,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '204': description: Response @@ -59344,17 +59360,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: &422 + default: &423 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -59450,9 +59466,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: false content: @@ -59550,9 +59566,9 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *422 + default: *423 '422': *15 x-github: githubCloudOnly: false @@ -59573,9 +59589,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '204': description: Response @@ -59602,17 +59618,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: &423 + default: &424 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -59635,17 +59651,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *419 + schema: *420 examples: - default: *423 + default: *424 '404': *6 x-github: githubCloudOnly: false @@ -59665,9 +59681,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '204': description: Response @@ -59692,17 +59708,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: &425 + default: &426 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -59728,9 +59744,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: false content: @@ -59782,9 +59798,9 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: - default: *425 + default: *426 '404': *6 '422': *15 x-github: @@ -59806,9 +59822,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '204': description: Response @@ -59832,9 +59848,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response @@ -59868,9 +59884,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: false content: @@ -59937,9 +59953,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: false content: @@ -60003,9 +60019,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: content: application/json: @@ -60071,15 +60087,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response content: application/json: - schema: *418 + schema: *419 examples: default: value: @@ -60170,9 +60186,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '204': description: Response @@ -60195,9 +60211,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response @@ -60207,7 +60223,7 @@ paths: type: array items: *5 examples: - default: &426 + default: &427 value: - id: 1 slug: octoapp @@ -60264,9 +60280,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60300,7 +60316,7 @@ paths: type: array items: *5 examples: - default: *426 + default: *427 '422': *15 x-github: githubCloudOnly: false @@ -60321,9 +60337,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60357,7 +60373,7 @@ paths: type: array items: *5 examples: - default: *426 + default: *427 '422': *15 x-github: githubCloudOnly: false @@ -60378,9 +60394,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60414,7 +60430,7 @@ paths: type: array items: *5 examples: - default: *426 + default: *427 '422': *15 x-github: githubCloudOnly: false @@ -60436,9 +60452,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response @@ -60468,9 +60484,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: false content: @@ -60529,9 +60545,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: false content: @@ -60590,9 +60606,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: content: application/json: @@ -60651,9 +60667,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *358 - *359 - - *417 + - *360 + - *418 responses: '200': description: Response @@ -60687,9 +60703,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60747,9 +60763,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60807,9 +60823,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60869,9 +60885,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *358 - *359 - - *417 + - *360 + - *418 requestBody: required: true content: @@ -60893,7 +60909,7 @@ paths: description: Response content: application/json: - schema: *427 + schema: *428 examples: default: value: @@ -61007,8 +61023,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *358 - *359 + - *360 - *213 - *214 - *215 @@ -61044,8 +61060,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *358 - *359 + - *360 - name: bypass_request_number in: path required: true @@ -61118,8 +61134,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *358 - *359 + - *360 - *213 - *214 - *215 @@ -61133,9 +61149,9 @@ paths: application/json: schema: type: array - items: *428 + items: *429 examples: - default: *429 + default: *430 '404': *6 '403': *27 '500': *95 @@ -61159,8 +61175,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *358 - *359 + - *360 - name: bypass_request_number in: path required: true @@ -61172,7 +61188,7 @@ paths: description: A single bypass request. content: application/json: - schema: *428 + schema: *429 examples: default: value: @@ -61230,8 +61246,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *358 - *359 + - *360 - name: bypass_request_number in: path required: true @@ -61302,8 +61318,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *358 - *359 + - *360 - name: bypass_response_id in: path required: true @@ -61336,8 +61352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -61616,7 +61632,7 @@ paths: description: Response content: application/json: - schema: &431 + schema: &432 title: CheckRun description: A check performed on the code of a given code change type: object @@ -61751,8 +61767,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *430 - deployment: &735 + items: *431 + deployment: &736 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -62039,9 +62055,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *358 - *359 - - &432 + - *360 + - &433 name: check_run_id description: The unique identifier of the check run. in: path @@ -62053,9 +62069,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *432 examples: - default: &433 + default: &434 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -62155,9 +62171,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *358 - *359 - - *432 + - *360 + - *433 requestBody: required: true content: @@ -62397,9 +62413,9 @@ paths: description: Response content: application/json: - schema: *431 + schema: *432 examples: - default: *433 + default: *434 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62419,9 +62435,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *358 - *359 - - *432 + - *360 + - *433 - *17 - *19 responses: @@ -62533,9 +62549,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *358 - *359 - - *432 + - *360 + - *433 responses: '201': description: Response @@ -62579,8 +62595,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -62602,7 +62618,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &435 + schema: &436 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -62684,7 +62700,7 @@ paths: type: - array - 'null' - items: *430 + items: *431 app: anyOf: - type: 'null' @@ -62700,7 +62716,7 @@ paths: - string - 'null' format: date-time - head_commit: *434 + head_commit: *435 latest_check_runs_count: type: integer check_runs_url: @@ -62728,7 +62744,7 @@ paths: - check_runs_url - pull_requests examples: - default: &436 + default: &437 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -63019,9 +63035,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *435 + schema: *436 examples: - default: *436 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63040,8 +63056,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -63350,9 +63366,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *358 - *359 - - &437 + - *360 + - &438 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -63364,9 +63380,9 @@ paths: description: Response content: application/json: - schema: *435 + schema: *436 examples: - default: *436 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63389,17 +63405,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *358 - *359 - - *437 - - &483 + - *360 + - *438 + - &484 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &484 + - &485 name: status description: Returns check runs with the specified `status`. in: query @@ -63438,9 +63454,9 @@ paths: type: integer check_runs: type: array - items: *431 + items: *432 examples: - default: &485 + default: &486 value: total_count: 1 check_runs: @@ -63542,9 +63558,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *358 - *359 - - *437 + - *360 + - *438 responses: '201': description: Response @@ -63577,21 +63593,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *358 - *359 + - *360 - *221 - *222 - *19 - *17 - - &453 + - &454 name: ref description: The Git reference for the results you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. in: query required: false - schema: *438 - - &454 + schema: *439 + - &455 name: pr description: The number of the pull request for the results you want to list. in: query @@ -63622,7 +63638,7 @@ paths: be returned. in: query required: false - schema: *439 + schema: *440 responses: '200': description: Response @@ -63638,7 +63654,7 @@ paths: updated_at: *104 url: *101 html_url: *102 - instances_url: *440 + instances_url: *441 state: *87 fixed_at: *106 dismissed_by: @@ -63646,11 +63662,11 @@ paths: - type: 'null' - *4 dismissed_at: *105 - dismissed_reason: *441 - dismissed_comment: *442 - rule: *443 - tool: *444 - most_recent_instance: *445 + dismissed_reason: *442 + dismissed_comment: *443 + rule: *444 + tool: *445 + most_recent_instance: *446 dismissal_approved_by: anyOf: - type: 'null' @@ -63770,7 +63786,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &446 + '403': &447 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -63797,9 +63813,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *358 - *359 - - &447 + - *360 + - &448 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -63813,7 +63829,7 @@ paths: description: Response content: application/json: - schema: &448 + schema: &449 type: object properties: number: *96 @@ -63821,7 +63837,7 @@ paths: updated_at: *104 url: *101 html_url: *102 - instances_url: *440 + instances_url: *441 state: *87 fixed_at: *106 dismissed_by: @@ -63829,8 +63845,8 @@ paths: - type: 'null' - *4 dismissed_at: *105 - dismissed_reason: *441 - dismissed_comment: *442 + dismissed_reason: *442 + dismissed_comment: *443 rule: type: object properties: @@ -63892,8 +63908,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *444 - most_recent_instance: *445 + tool: *445 + most_recent_instance: *446 dismissal_approved_by: anyOf: - type: 'null' @@ -63986,7 +64002,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -64006,9 +64022,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 requestBody: required: true content: @@ -64023,8 +64039,8 @@ paths: enum: - open - dismissed - dismissed_reason: *441 - dismissed_comment: *442 + dismissed_reason: *442 + dismissed_comment: *443 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -64043,7 +64059,7 @@ paths: description: Response content: application/json: - schema: *448 + schema: *449 examples: default: value: @@ -64119,7 +64135,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &452 + '403': &453 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -64146,15 +64162,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 responses: '200': description: Response content: application/json: - schema: &449 + schema: &450 type: object properties: status: @@ -64181,13 +64197,13 @@ paths: - description - started_at examples: - default: &450 + default: &451 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &451 + '400': &452 description: Bad Request content: application/json: @@ -64198,7 +64214,7 @@ paths: message: The alert_number is not valid documentation_url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert status: '400' - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -64223,29 +64239,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 responses: '200': description: OK content: application/json: - schema: *449 + schema: *450 examples: - default: *450 + default: *451 '202': description: Accepted content: application/json: - schema: *449 + schema: *450 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *451 + '400': *452 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -64277,9 +64293,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 requestBody: required: false content: @@ -64325,8 +64341,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *451 - '403': *452 + '400': *452 + '403': *453 '404': *6 '422': description: Unprocessable Entity @@ -64350,13 +64366,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 - *19 - *17 - - *453 - *454 + - *455 responses: '200': description: Response @@ -64364,7 +64380,7 @@ paths: application/json: schema: type: array - items: *445 + items: *446 examples: default: value: @@ -64403,7 +64419,7 @@ paths: end_column: 50 classifications: - source - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -64437,25 +64453,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *358 - *359 + - *360 - *221 - *222 - *19 - *17 - - *454 + - *455 - name: ref in: query description: The Git reference for the analyses you want to list. The `ref` for a branch can be formatted either as `refs/heads/` or simply ``. To reference a pull request use `refs/pull//merge`. required: false - schema: *438 + schema: *439 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &457 + schema: &458 type: string description: An identifier for the upload. examples: @@ -64477,23 +64493,23 @@ paths: application/json: schema: type: array - items: &458 + items: &459 type: object properties: - ref: *438 - commit_sha: &466 + ref: *439 + commit_sha: &467 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *455 + analysis_key: *456 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *456 + category: *457 error: type: string examples: @@ -64518,8 +64534,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *457 - tool: *444 + sarif_id: *458 + tool: *445 deletable: type: boolean warning: @@ -64581,7 +64597,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -64617,8 +64633,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *358 - *359 + - *360 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64631,7 +64647,7 @@ paths: description: Response content: application/json: - schema: *458 + schema: *459 examples: response: summary: application/json response @@ -64685,7 +64701,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -64767,8 +64783,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *358 - *359 + - *360 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64824,7 +64840,7 @@ paths: next_analysis_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41 confirm_delete_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses/41?confirm_delete '400': *14 - '403': *452 + '403': *453 '404': *6 '503': *128 x-github: @@ -64846,8 +64862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -64855,7 +64871,7 @@ paths: application/json: schema: type: array - items: &459 + items: &460 title: CodeQL Database description: A CodeQL database. type: object @@ -64967,7 +64983,7 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/ruby commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -64996,8 +65012,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *358 - *359 + - *360 - name: language in: path description: The language of the CodeQL database. @@ -65009,7 +65025,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *460 examples: default: value: @@ -65041,9 +65057,9 @@ paths: updated_at: '2022-09-12T12:14:32Z' url: https://api.github.com/repos/octocat/Hello-World/code-scanning/codeql/databases/java commit_oid: 1927de39fefa25a9d0e64e3f540ff824a72f538c - '302': &490 + '302': &491 description: Found - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -65065,8 +65081,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *358 - *359 + - *360 - name: language in: path description: The language of the CodeQL database. @@ -65076,7 +65092,7 @@ paths: responses: '204': description: Response - '403': *452 + '403': *453 '404': *6 '503': *128 x-github: @@ -65104,8 +65120,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -65114,7 +65130,7 @@ paths: type: object additionalProperties: false properties: - language: &460 + language: &461 type: string description: The language targeted by the CodeQL query enum: @@ -65192,7 +65208,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &464 + schema: &465 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -65202,7 +65218,7 @@ paths: description: The ID of the variant analysis. controller_repo: *94 actor: *4 - query_language: *460 + query_language: *461 query_pack_url: type: string description: The download url for the query pack. @@ -65250,7 +65266,7 @@ paths: items: type: object properties: - repository: &461 + repository: &462 title: Repository Identifier description: Repository Identifier type: object @@ -65292,7 +65308,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &465 + analysis_status: &466 type: string description: The new status of the CodeQL variant analysis repository task. @@ -65324,7 +65340,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &462 + access_mismatch_repos: &463 type: object properties: repository_count: @@ -65339,7 +65355,7 @@ paths: This list may not include all repositories that were skipped. This is only available when the repository was found and the user has access to it. - items: *461 + items: *462 required: - repository_count - repositories @@ -65362,8 +65378,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *462 - over_limit_repos: *462 + no_codeql_db_repos: *463 + over_limit_repos: *463 required: - access_mismatch_repos - not_found_repos @@ -65379,7 +65395,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &463 + value: &464 summary: Default response value: id: 1 @@ -65531,10 +65547,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *463 + value: *464 repository_lists: summary: Response for a successful variant analysis submission - value: *463 + value: *464 '404': *6 '422': description: Unable to process variant analysis submission @@ -65562,8 +65578,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *358 - *359 + - *360 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -65575,9 +65591,9 @@ paths: description: Response content: application/json: - schema: *464 + schema: *465 examples: - default: *463 + default: *464 '404': *6 '503': *128 x-github: @@ -65600,7 +65616,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *358 + - *359 - name: repo in: path description: The name of the controller repository. @@ -65635,7 +65651,7 @@ paths: type: object properties: repository: *94 - analysis_status: *465 + analysis_status: *466 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -65760,8 +65776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -65843,7 +65859,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *446 + '403': *447 '404': *6 '503': *128 x-github: @@ -65864,8 +65880,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -65949,7 +65965,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *452 + '403': *453 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -66014,8 +66030,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -66023,7 +66039,7 @@ paths: schema: type: object properties: - commit_sha: *466 + commit_sha: *467 ref: type: string description: |- @@ -66083,7 +66099,7 @@ paths: schema: type: object properties: - id: *457 + id: *458 url: type: string description: The REST API URL for checking the status of the upload. @@ -66097,7 +66113,7 @@ paths: url: https://api.github.com/repos/octocat/hello-world/code-scanning/sarifs/47177e22-5596-11eb-80a1-c1e54ef945c6 '400': description: Bad Request if the sarif field is invalid - '403': *452 + '403': *453 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -66120,8 +66136,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *358 - *359 + - *360 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -66169,7 +66185,7 @@ paths: value: processing_status: complete analyses_url: https://api.github.com/repos/octocat/hello-world/code-scanning/analyses?sarif_id=47177e22-5596-11eb-80a1-c1e54ef945c6 - '403': *446 + '403': *447 '404': description: Not Found if the sarif id does not match any upload '503': *128 @@ -66194,8 +66210,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -66276,8 +66292,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *358 - *359 + - *360 - name: ref description: 'A branch, tag or commit name used to determine which version of the CODEOWNERS file to use. Default: the repository''s default branch @@ -66405,8 +66421,8 @@ paths: parameters: - *17 - *19 - - *358 - *359 + - *360 responses: '200': description: Response @@ -66720,8 +66736,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -66787,7 +66803,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '202': description: Response when the codespace creation partially failed but is being retried in the background @@ -66795,7 +66811,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '400': *14 '401': *23 '403': *27 @@ -66824,8 +66840,8 @@ paths: parameters: - *17 - *19 - - *358 - *359 + - *360 responses: '200': description: Response @@ -66889,8 +66905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *358 - *359 + - *360 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -66927,9 +66943,9 @@ paths: type: integer machines: type: array - items: *468 + items: *469 examples: - default: &692 + default: &693 value: total_count: 2 machines: @@ -66969,8 +66985,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *358 - *359 + - *360 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -67057,8 +67073,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *358 - *359 + - *360 - name: ref description: The git reference that points to the location of the devcontainer configuration to use for the permission check. The value of `ref` will typically @@ -67127,8 +67143,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -67146,7 +67162,7 @@ paths: type: integer secrets: type: array - items: &472 + items: &473 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -67167,7 +67183,7 @@ paths: - created_at - updated_at examples: - default: *469 + default: *470 headers: Link: *37 x-github: @@ -67190,16 +67206,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *470 + schema: *471 examples: - default: *471 + default: *472 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -67219,17 +67235,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 responses: '200': description: Response content: application/json: - schema: *472 + schema: *473 examples: - default: *473 + default: *474 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67241,7 +67257,7 @@ paths: Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/enterprise-cloud@latest//rest/guides/encrypting-secrets-for-the-rest-api)." - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/create-or-update-repo-secret @@ -67249,8 +67265,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 requestBody: required: true @@ -67295,7 +67311,7 @@ paths: description: |- Deletes a development environment secret in a repository using the secret name. - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/delete-repo-secret @@ -67303,8 +67319,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 responses: '204': @@ -67333,8 +67349,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *358 - *359 + - *360 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -67372,7 +67388,7 @@ paths: application/json: schema: type: array - items: &474 + items: &475 title: Collaborator description: Collaborator type: object @@ -67565,8 +67581,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *358 - *359 + - *360 - *212 responses: '204': @@ -67609,8 +67625,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *358 - *359 + - *360 - *212 requestBody: required: false @@ -67637,7 +67653,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &538 + schema: &539 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -67858,8 +67874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *358 - *359 + - *360 - *212 responses: '204': @@ -67889,8 +67905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *358 - *359 + - *360 - *212 responses: '200': @@ -67911,7 +67927,7 @@ paths: user: anyOf: - type: 'null' - - *474 + - *475 required: - permission - role_name @@ -67965,8 +67981,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -67976,7 +67992,7 @@ paths: application/json: schema: type: array - items: &475 + items: &476 title: Commit Comment description: Commit Comment type: object @@ -68034,7 +68050,7 @@ paths: - created_at - updated_at examples: - default: &478 + default: &479 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68093,17 +68109,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *358 - *359 + - *360 - *147 responses: '200': description: Response content: application/json: - schema: *475 + schema: *476 examples: - default: &479 + default: &480 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68160,8 +68176,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *358 - *359 + - *360 - *147 requestBody: required: true @@ -68184,7 +68200,7 @@ paths: description: Response content: application/json: - schema: *475 + schema: *476 examples: default: value: @@ -68235,8 +68251,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *358 - *359 + - *360 - *147 responses: '204': @@ -68258,8 +68274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *358 - *359 + - *360 - *147 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -68286,9 +68302,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 '404': *6 @@ -68309,8 +68325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *358 - *359 + - *360 - *147 requestBody: required: true @@ -68343,16 +68359,16 @@ paths: description: Reaction exists content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '201': description: Reaction created content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '422': *15 x-github: githubCloudOnly: false @@ -68374,10 +68390,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *358 - *359 + - *360 - *147 - - *350 + - *351 responses: '204': description: Response @@ -68426,8 +68442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *358 - *359 + - *360 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -68483,9 +68499,9 @@ paths: application/json: schema: type: array - items: *476 + items: *477 examples: - default: &586 + default: &587 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68579,9 +68595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *358 - *359 - - &477 + - *360 + - &478 name: commit_sha description: The SHA of the commit. in: path @@ -68653,9 +68669,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *358 - *359 - - *477 + - *360 + - *478 - *17 - *19 responses: @@ -68665,9 +68681,9 @@ paths: application/json: schema: type: array - items: *475 + items: *476 examples: - default: *478 + default: *479 headers: Link: *37 x-github: @@ -68695,9 +68711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *358 - *359 - - *477 + - *360 + - *478 requestBody: required: true content: @@ -68732,9 +68748,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *476 examples: - default: *479 + default: *480 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68762,9 +68778,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *358 - *359 - - *477 + - *360 + - *478 - *17 - *19 responses: @@ -68774,7 +68790,7 @@ paths: application/json: schema: type: array - items: &577 + items: &578 title: Pull Request Simple description: Pull Request Simple type: object @@ -68894,7 +68910,7 @@ paths: milestone: anyOf: - type: 'null' - - *480 + - *481 active_lock_reason: type: - string @@ -68993,7 +69009,7 @@ paths: _links: type: object properties: - comments: &481 + comments: &482 title: Link description: Hypermedia Link type: object @@ -69002,13 +69018,13 @@ paths: type: string required: - href - commits: *481 - statuses: *481 - html: *481 - issue: *481 - review_comments: *481 - review_comment: *481 - self: *481 + commits: *482 + statuses: *482 + html: *482 + issue: *482 + review_comments: *482 + review_comment: *482 + self: *482 required: - comments - commits @@ -69019,7 +69035,7 @@ paths: - review_comment - self author_association: *135 - auto_merge: &579 + auto_merge: &580 title: Auto merge description: The status of auto merging a pull request. type: @@ -69084,7 +69100,7 @@ paths: - author_association - auto_merge examples: - default: &578 + default: &579 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -69621,11 +69637,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *358 - *359 + - *360 - *19 - *17 - - &482 + - &483 name: ref description: The commit reference. Can be a commit SHA, branch name (`heads/BRANCH_NAME`), or tag name (`tags/TAG_NAME`). For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" @@ -69640,9 +69656,9 @@ paths: description: Response content: application/json: - schema: *476 + schema: *477 examples: - default: &565 + default: &566 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69755,11 +69771,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *358 - *359 - - *482 + - *360 - *483 - *484 + - *485 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -69793,9 +69809,9 @@ paths: type: integer check_runs: type: array - items: *431 + items: *432 examples: - default: *485 + default: *486 headers: Link: *37 x-github: @@ -69820,9 +69836,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *358 - *359 - - *482 + - *360 + - *483 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -69830,7 +69846,7 @@ paths: schema: type: integer example: 1 - - *483 + - *484 - *17 - *19 responses: @@ -69848,7 +69864,7 @@ paths: type: integer check_suites: type: array - items: *435 + items: *436 examples: default: value: @@ -70048,9 +70064,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *358 - *359 - - *482 + - *360 + - *483 - *17 - *19 responses: @@ -70252,9 +70268,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *358 - *359 - - *482 + - *360 + - *483 - *17 - *19 responses: @@ -70264,7 +70280,7 @@ paths: application/json: schema: type: array - items: &640 + items: &641 title: Status description: The status of a commit. type: object @@ -70345,7 +70361,7 @@ paths: site_admin: false headers: Link: *37 - '301': *372 + '301': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70373,8 +70389,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -70407,11 +70423,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *486 + - *487 code_of_conduct_file: anyOf: - type: 'null' - - &487 + - &488 title: Community Health File type: object properties: @@ -70431,19 +70447,19 @@ paths: contributing: anyOf: - type: 'null' - - *487 + - *488 readme: anyOf: - type: 'null' - - *487 + - *488 issue_template: anyOf: - type: 'null' - - *487 + - *488 pull_request_template: anyOf: - type: 'null' - - *487 + - *488 required: - code_of_conduct - code_of_conduct_file @@ -70572,8 +70588,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *358 - *359 + - *360 - *19 - *17 - name: basehead @@ -70621,8 +70637,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *476 - merge_base_commit: *476 + base_commit: *477 + merge_base_commit: *477 status: type: string enum: @@ -70646,10 +70662,10 @@ paths: - 6 commits: type: array - items: *476 + items: *477 files: type: array - items: *488 + items: *489 required: - url - html_url @@ -70935,8 +70951,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *358 - *359 + - *360 - name: path description: path parameter in: path @@ -71087,7 +71103,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &489 + response-if-content-is-a-file: &490 summary: Response if content is a file value: type: file @@ -71224,7 +71240,7 @@ paths: - size - type - url - - &591 + - &592 title: Content File description: Content File type: object @@ -71442,7 +71458,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *489 + response-if-content-is-a-file: *490 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -71511,7 +71527,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *490 + '302': *491 '304': *35 x-github: githubCloudOnly: false @@ -71534,8 +71550,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *358 - *359 + - *360 - name: path description: path parameter in: path @@ -71630,7 +71646,7 @@ paths: description: Response content: application/json: - schema: &491 + schema: &492 title: File Commit description: File Commit type: object @@ -71786,7 +71802,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: example-for-creating-a-file: value: @@ -71840,7 +71856,7 @@ paths: schema: oneOf: - *3 - - &520 + - &521 description: Repository rule violation was detected type: object properties: @@ -71861,7 +71877,7 @@ paths: items: type: object properties: - placeholder_id: &632 + placeholder_id: &633 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -71893,8 +71909,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *358 - *359 + - *360 - name: path description: path parameter in: path @@ -71955,7 +71971,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: default: value: @@ -72010,8 +72026,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *358 - *359 + - *360 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -72135,8 +72151,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *358 - *359 + - *360 - *240 - *241 - *242 @@ -72178,7 +72194,7 @@ paths: application/json: schema: type: array - items: &494 + items: &495 type: object description: A Dependabot alert. properties: @@ -72228,7 +72244,7 @@ paths: - direct - transitive - - security_advisory: *492 + security_advisory: *493 security_vulnerability: *100 url: *101 html_url: *102 @@ -72259,7 +72275,7 @@ paths: dismissal. maxLength: 280 fixed_at: *106 - auto_dismissed_at: *493 + auto_dismissed_at: *494 required: - number - state @@ -72489,9 +72505,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *358 - *359 - - &495 + - *360 + - &496 name: alert_number in: path description: |- @@ -72506,7 +72522,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: default: value: @@ -72619,9 +72635,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *358 - *359 - - *495 + - *360 + - *496 requestBody: required: true content: @@ -72666,7 +72682,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *495 examples: default: value: @@ -72795,8 +72811,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -72814,7 +72830,7 @@ paths: type: integer secrets: type: array - items: &498 + items: &499 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -72868,16 +72884,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *496 + schema: *497 examples: - default: *497 + default: *498 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72897,15 +72913,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 responses: '200': description: Response content: application/json: - schema: *498 + schema: *499 examples: default: value: @@ -72931,8 +72947,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 requestBody: required: true @@ -72985,8 +73001,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *358 - *359 + - *360 - *200 responses: '204': @@ -73009,8 +73025,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *358 - *359 + - *360 - name: basehead description: The base and head Git revisions to compare. The Git revisions will be resolved to commit SHAs. Named revisions will be resolved to their @@ -73184,8 +73200,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -73445,8 +73461,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -73529,7 +73545,7 @@ paths: - version - url additionalProperties: false - metadata: &499 + metadata: &500 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -73568,7 +73584,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *499 + metadata: *500 resolved: type: object description: A collection of resolved package dependencies. @@ -73582,7 +73598,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *499 + metadata: *500 relationship: type: string description: A notation of whether a dependency is requested @@ -73715,8 +73731,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *358 - *359 + - *360 - name: sha description: The SHA recorded at creation time. in: query @@ -73757,9 +73773,9 @@ paths: application/json: schema: type: array - items: *500 + items: *501 examples: - default: *501 + default: *502 headers: Link: *37 x-github: @@ -73825,8 +73841,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -73908,7 +73924,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: simple-example: summary: Simple example @@ -73981,9 +73997,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *358 - *359 - - &502 + - *360 + - &503 name: deployment_id description: deployment_id parameter in: path @@ -73995,7 +74011,7 @@ paths: description: Response content: application/json: - schema: *500 + schema: *501 examples: default: value: @@ -74060,9 +74076,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *358 - *359 - - *502 + - *360 + - *503 responses: '204': description: Response @@ -74084,9 +74100,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *358 - *359 - - *502 + - *360 + - *503 - *17 - *19 responses: @@ -74096,7 +74112,7 @@ paths: application/json: schema: type: array - items: &503 + items: &504 title: Deployment Status description: The status of a deployment. type: object @@ -74260,9 +74276,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *358 - *359 - - *502 + - *360 + - *503 requestBody: required: true content: @@ -74337,9 +74353,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: &504 + default: &505 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -74395,9 +74411,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *358 - *359 - - *502 + - *360 + - *503 - name: status_id in: path required: true @@ -74408,9 +74424,9 @@ paths: description: Response content: application/json: - schema: *503 + schema: *504 examples: - default: *504 + default: *505 '404': *6 x-github: githubCloudOnly: false @@ -74435,8 +74451,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -74493,8 +74509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -74512,7 +74528,7 @@ paths: - 5 environments: type: array - items: &506 + items: &507 title: Environment description: Details of a deployment environment type: object @@ -74574,7 +74590,7 @@ paths: type: string examples: - wait_timer - wait_timer: &508 + wait_timer: &509 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -74616,7 +74632,7 @@ paths: items: type: object properties: - type: *505 + type: *506 reviewer: anyOf: - *4 @@ -74643,7 +74659,7 @@ paths: - id - node_id - type - deployment_branch_policy: &509 + deployment_branch_policy: &510 type: - object - 'null' @@ -74760,9 +74776,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *358 - *359 - - &507 + - *360 + - &508 name: environment_name in: path required: true @@ -74775,9 +74791,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: &510 + default: &511 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -74861,9 +74877,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *358 - *359 - - *507 + - *360 + - *508 requestBody: required: false content: @@ -74873,7 +74889,7 @@ paths: - object - 'null' properties: - wait_timer: *508 + wait_timer: *509 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -74892,14 +74908,14 @@ paths: items: type: object properties: - type: *505 + type: *506 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *509 + deployment_branch_policy: *510 additionalProperties: false examples: default: @@ -74919,9 +74935,9 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *510 + default: *511 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -74945,9 +74961,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *358 - *359 - - *507 + - *360 + - *508 responses: '204': description: Default response @@ -74972,9 +74988,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *358 - *359 - - *507 + - *360 + - *508 - *17 - *19 responses: @@ -74993,7 +75009,7 @@ paths: - 2 branch_policies: type: array - items: &511 + items: &512 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -75054,9 +75070,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *358 - *359 - - *507 + - *360 + - *508 requestBody: required: true content: @@ -75104,9 +75120,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - example-wildcard: &512 + example-wildcard: &513 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -75148,10 +75164,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *358 - *359 - - *507 - - &513 + - *360 + - *508 + - &514 name: branch_policy_id in: path required: true @@ -75163,9 +75179,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75184,10 +75200,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *358 - *359 - - *507 - - *513 + - *360 + - *508 + - *514 requestBody: required: true content: @@ -75216,9 +75232,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - default: *512 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75237,10 +75253,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *358 - *359 - - *507 - - *513 + - *360 + - *508 + - *514 responses: '204': description: Response @@ -75265,9 +75281,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *507 + - *508 + - *360 - *359 - - *358 responses: '200': description: List of deployment protection rules @@ -75284,7 +75300,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &514 + items: &515 title: Deployment protection rule description: Deployment protection rule type: object @@ -75306,7 +75322,7 @@ paths: for the environment. examples: - true - app: &515 + app: &516 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -75399,7 +75415,7 @@ paths: The authenticated user must have admin or owner permissions to the repository to use this endpoint. - For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app). + For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/enterprise-cloud@latest//actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules). OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. tags: @@ -75409,9 +75425,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *507 + - *508 + - *360 - *359 - - *358 requestBody: content: application/json: @@ -75432,9 +75448,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *514 + schema: *515 examples: - default: &516 + default: &517 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -75469,9 +75485,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *507 + - *508 + - *360 - *359 - - *358 - *19 - *17 responses: @@ -75491,7 +75507,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *515 + items: *516 examples: default: value: @@ -75526,10 +75542,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *358 - *359 - - *507 - - &517 + - *360 + - *508 + - &518 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -75541,9 +75557,9 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: - default: *516 + default: *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75564,10 +75580,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *507 + - *508 + - *360 - *359 - - *358 - - *517 + - *518 responses: '204': description: Response @@ -75593,9 +75609,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *358 - *359 - - *507 + - *360 + - *508 - *17 - *19 responses: @@ -75613,9 +75629,9 @@ paths: type: integer secrets: type: array - items: *395 + items: *396 examples: - default: *396 + default: *397 headers: Link: *37 x-github: @@ -75640,17 +75656,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *358 - *359 - - *507 + - *360 + - *508 responses: '200': description: Response content: application/json: - schema: *397 + schema: *398 examples: - default: *398 + default: *399 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75672,18 +75688,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *358 - *359 - - *507 + - *360 + - *508 - *200 responses: '200': description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75705,9 +75721,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *358 - *359 - - *507 + - *360 + - *508 - *200 requestBody: required: true @@ -75765,9 +75781,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *358 - *359 - - *507 + - *360 + - *508 - *200 responses: '204': @@ -75793,10 +75809,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *358 - *359 - - *507 - - *382 + - *360 + - *508 + - *383 - *19 responses: '200': @@ -75813,9 +75829,9 @@ paths: type: integer variables: type: array - items: *399 + items: *400 examples: - default: *400 + default: *401 headers: Link: *37 x-github: @@ -75838,9 +75854,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *358 - *359 - - *507 + - *360 + - *508 requestBody: required: true content: @@ -75892,18 +75908,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *358 - *359 - - *507 + - *360 + - *508 - *203 responses: '200': description: Response content: application/json: - schema: *399 + schema: *400 examples: - default: *519 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75924,10 +75940,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *358 - *359 + - *360 - *203 - - *507 + - *508 requestBody: required: true content: @@ -75969,10 +75985,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *358 - *359 + - *360 - *203 - - *507 + - *508 responses: '204': description: Response @@ -75994,8 +76010,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -76072,8 +76088,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *358 - *359 + - *360 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -76232,8 +76248,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *358 - *359 + - *360 requestBody: required: false content: @@ -76266,9 +76282,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *373 + default: *374 '400': *14 '422': *15 '403': *27 @@ -76289,8 +76305,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -76350,7 +76366,7 @@ paths: schema: oneOf: - *173 - - *520 + - *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76375,8 +76391,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *358 - *359 + - *360 - name: file_sha in: path required: true @@ -76476,8 +76492,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -76586,7 +76602,7 @@ paths: description: Response content: application/json: - schema: &521 + schema: &522 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -76813,15 +76829,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *358 - *359 - - *477 + - *360 + - *478 responses: '200': description: Response content: application/json: - schema: *521 + schema: *522 examples: default: value: @@ -76877,9 +76893,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *358 - *359 - - &522 + - *360 + - &523 name: ref description: The Git reference. For more information, see "[Git References](https://git-scm.com/book/en/v2/Git-Internals-Git-References)" in the Git documentation. @@ -76896,7 +76912,7 @@ paths: application/json: schema: type: array - items: &523 + items: &524 title: Git Reference description: Git references within a repository type: object @@ -76972,17 +76988,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *358 - *359 - - *522 + - *360 + - *523 responses: '200': description: Response content: application/json: - schema: *523 + schema: *524 examples: - default: &524 + default: &525 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -77011,8 +77027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -77041,9 +77057,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *524 examples: - default: *524 + default: *525 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -77069,9 +77085,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *358 - *359 - - *522 + - *360 + - *523 requestBody: required: true content: @@ -77100,9 +77116,9 @@ paths: description: Response content: application/json: - schema: *523 + schema: *524 examples: - default: *524 + default: *525 '422': *15 '409': *92 x-github: @@ -77120,9 +77136,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *358 - *359 - - *522 + - *360 + - *523 responses: '204': description: Response @@ -77175,8 +77191,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -77243,7 +77259,7 @@ paths: description: Response content: application/json: - schema: &526 + schema: &527 title: Git Tag description: Metadata for a Git tag type: object @@ -77299,7 +77315,7 @@ paths: - sha - type - url - verification: *525 + verification: *526 required: - sha - url @@ -77309,7 +77325,7 @@ paths: - tag - message examples: - default: &527 + default: &528 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -77382,8 +77398,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *358 - *359 + - *360 - name: tag_sha in: path required: true @@ -77394,9 +77410,9 @@ paths: description: Response content: application/json: - schema: *526 + schema: *527 examples: - default: *527 + default: *528 '404': *6 '409': *92 x-github: @@ -77420,8 +77436,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -77495,7 +77511,7 @@ paths: description: Response content: application/json: - schema: &528 + schema: &529 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -77613,8 +77629,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *358 - *359 + - *360 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -77637,7 +77653,7 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: default-response: summary: Default response @@ -77696,8 +77712,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -77707,7 +77723,7 @@ paths: application/json: schema: type: array - items: &529 + items: &530 title: Webhook description: Webhooks for repositories. type: object @@ -77770,7 +77786,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &766 + last_response: &767 title: Hook Response type: object properties: @@ -77847,8 +77863,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *358 - *359 + - *360 requestBody: required: false content: @@ -77901,9 +77917,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: - default: &530 + default: &531 value: type: Repository id: 12345678 @@ -77951,17 +77967,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 responses: '200': description: Response content: application/json: - schema: *529 + schema: *530 examples: - default: *530 + default: *531 '404': *6 x-github: githubCloudOnly: false @@ -77981,8 +77997,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 requestBody: required: true @@ -78028,9 +78044,9 @@ paths: description: Response content: application/json: - schema: *529 + schema: *530 examples: - default: *530 + default: *531 '422': *15 '404': *6 x-github: @@ -78051,8 +78067,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 responses: '204': @@ -78077,8 +78093,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *358 - *359 + - *360 - *254 responses: '200': @@ -78106,8 +78122,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *358 - *359 + - *360 - *254 requestBody: required: false @@ -78152,8 +78168,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 - *17 - *255 @@ -78185,8 +78201,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 - *16 responses: @@ -78215,8 +78231,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 - *16 responses: @@ -78240,8 +78256,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *358 - *359 + - *360 - *254 responses: '204': @@ -78267,8 +78283,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *358 - *359 + - *360 - *254 responses: '204': @@ -78327,14 +78343,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: &531 + schema: &532 title: Import description: A repository import from an external source. type: object @@ -78441,7 +78457,7 @@ paths: - html_url - authors_url examples: - default: &534 + default: &535 value: vcs: subversion use_lfs: true @@ -78457,7 +78473,7 @@ paths: authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm '404': *6 - '503': &532 + '503': &533 description: Unavailable due to service under maintenance. content: application/json: @@ -78486,8 +78502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -78535,7 +78551,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: default: value: @@ -78560,7 +78576,7 @@ paths: type: string '422': *15 '404': *6 - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78588,8 +78604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *358 - *359 + - *360 requestBody: required: false content: @@ -78641,7 +78657,7 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: example-1: summary: Example 1 @@ -78689,7 +78705,7 @@ paths: html_url: https://import.github.com/octocat/socm/import authors_url: https://api.github.com/repos/octocat/socm/import/authors repository_url: https://api.github.com/repos/octocat/socm - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78712,12 +78728,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *358 - *359 + - *360 responses: '204': description: Response - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78743,9 +78759,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *358 - *359 - - &715 + - *360 + - &716 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -78759,7 +78775,7 @@ paths: application/json: schema: type: array - items: &533 + items: &534 title: Porter Author description: Porter Author type: object @@ -78813,7 +78829,7 @@ paths: url: https://api.github.com/repos/octocat/socm/import/authors/2268559 import_url: https://api.github.com/repos/octocat/socm/import '404': *6 - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78838,8 +78854,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *358 - *359 + - *360 - name: author_id in: path required: true @@ -78869,7 +78885,7 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: default: value: @@ -78882,7 +78898,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78906,8 +78922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -78948,7 +78964,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78976,8 +78992,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -79004,11 +79020,11 @@ paths: description: Response content: application/json: - schema: *531 + schema: *532 examples: - default: *534 + default: *535 '422': *15 - '503': *532 + '503': *533 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79031,8 +79047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -79040,8 +79056,8 @@ paths: application/json: schema: *20 examples: - default: *535 - '301': *372 + default: *536 + '301': *373 '404': *6 x-github: githubCloudOnly: false @@ -79061,8 +79077,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -79075,7 +79091,7 @@ paths: properties: {} additionalProperties: false examples: - default: &537 + default: &538 value: limit: collaborators_only origin: repository @@ -79100,13 +79116,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: application/json: - schema: *536 + schema: *537 examples: default: summary: Example request body @@ -79120,7 +79136,7 @@ paths: application/json: schema: *272 examples: - default: *537 + default: *538 '409': description: Response x-github: @@ -79142,8 +79158,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -79166,8 +79182,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -79177,9 +79193,9 @@ paths: application/json: schema: type: array - items: *538 + items: *539 examples: - default: &708 + default: &709 value: - id: 1 repository: @@ -79310,8 +79326,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *358 - *359 + - *360 - *276 requestBody: required: false @@ -79341,7 +79357,7 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: default: value: @@ -79472,8 +79488,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *358 - *359 + - *360 - *276 responses: '204': @@ -79505,8 +79521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *358 - *359 + - *360 - name: milestone description: If an `integer` is passed, it should refer to a milestone by its `number` field. If the string `*` is passed, issues with any milestone @@ -79571,7 +79587,7 @@ paths: type: array items: *148 examples: - default: &547 + default: &548 value: - id: 1 node_id: MDU6SXNzdWUx @@ -79719,7 +79735,7 @@ paths: state_reason: completed headers: Link: *37 - '301': *372 + '301': *373 '422': *15 '404': *6 x-github: @@ -79748,8 +79764,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -79832,7 +79848,7 @@ paths: application/json: schema: *148 examples: - default: &542 + default: &543 value: id: 1 node_id: MDU6SXNzdWUx @@ -79988,7 +80004,7 @@ paths: '422': *15 '503': *128 '404': *6 - '410': *369 + '410': *370 x-github: triggersNotification: true githubCloudOnly: false @@ -80016,8 +80032,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *358 - *359 + - *360 - *157 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -80038,9 +80054,9 @@ paths: application/json: schema: type: array - items: *539 + items: *540 examples: - default: &544 + default: &545 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80098,17 +80114,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *358 - *359 + - *360 - *147 responses: '200': description: Response content: application/json: - schema: *539 + schema: *540 examples: - default: &540 + default: &541 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80162,8 +80178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *358 - *359 + - *360 - *147 requestBody: required: true @@ -80186,9 +80202,9 @@ paths: description: Response content: application/json: - schema: *539 + schema: *540 examples: - default: *540 + default: *541 '422': *15 x-github: githubCloudOnly: false @@ -80206,8 +80222,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *358 - *359 + - *360 - *147 responses: '204': @@ -80228,8 +80244,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *358 - *359 + - *360 - *147 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -80256,9 +80272,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 '404': *6 @@ -80279,8 +80295,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *358 - *359 + - *360 - *147 requestBody: required: true @@ -80313,16 +80329,16 @@ paths: description: Reaction exists content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '201': description: Reaction created content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '422': *15 x-github: githubCloudOnly: false @@ -80344,10 +80360,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *358 - *359 + - *360 - *147 - - *350 + - *351 responses: '204': description: Response @@ -80367,8 +80383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -80378,7 +80394,7 @@ paths: application/json: schema: type: array - items: &541 + items: &542 title: Issue Event description: Issue Event type: object @@ -80717,8 +80733,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *358 - *359 + - *360 - name: event_id in: path required: true @@ -80729,7 +80745,7 @@ paths: description: Response content: application/json: - schema: *541 + schema: *542 examples: default: value: @@ -80922,7 +80938,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *369 + '410': *370 '403': *27 x-github: githubCloudOnly: false @@ -80956,9 +80972,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *358 - *359 - - &543 + - *360 + - &544 name: issue_number description: The number that identifies the issue. in: path @@ -80972,10 +80988,10 @@ paths: application/json: schema: *148 examples: - default: *542 - '301': *372 + default: *543 + '301': *373 '404': *6 - '410': *369 + '410': *370 '304': *35 x-github: githubCloudOnly: false @@ -81000,9 +81016,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: false content: @@ -81112,13 +81128,13 @@ paths: application/json: schema: *148 examples: - default: *542 + default: *543 '422': *15 '503': *128 '403': *27 - '301': *372 + '301': *373 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81136,9 +81152,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: false content: @@ -81166,7 +81182,7 @@ paths: application/json: schema: *148 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81182,9 +81198,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: content: application/json: @@ -81211,7 +81227,7 @@ paths: application/json: schema: *148 examples: - default: *542 + default: *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81233,9 +81249,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 - name: assignee in: path required: true @@ -81275,9 +81291,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *358 - *359 - - *543 + - *360 + - *544 - *138 - *17 - *19 @@ -81288,13 +81304,13 @@ paths: application/json: schema: type: array - items: *539 + items: *540 examples: - default: *544 + default: *545 headers: Link: *37 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81323,9 +81339,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: true content: @@ -81347,16 +81363,16 @@ paths: description: Response content: application/json: - schema: *539 + schema: *540 examples: - default: *540 + default: *541 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *369 + '410': *370 '422': *15 '404': *6 x-github: @@ -81376,9 +81392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *358 - *359 - - *543 + - *360 + - *544 - *17 - *19 responses: @@ -81392,7 +81408,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &548 + - &549 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -81441,7 +81457,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &549 + - &550 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -81569,7 +81585,7 @@ paths: - performed_via_github_app - assignee - assigner - - &550 + - &551 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -81615,7 +81631,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &551 + - &552 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -81661,7 +81677,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &552 + - &553 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -81710,7 +81726,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &553 + - &554 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -81752,7 +81768,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &554 + - &555 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -81794,7 +81810,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &555 + - &556 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -81850,7 +81866,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &557 title: Locked Issue Event description: Locked Issue Event type: object @@ -81895,7 +81911,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &557 + - &558 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -81956,7 +81972,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &559 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -82017,7 +82033,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &560 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -82078,7 +82094,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &561 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -82171,7 +82187,7 @@ paths: color: red headers: Link: *37 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82188,9 +82204,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 - *17 - *19 responses: @@ -82200,7 +82216,7 @@ paths: application/json: schema: type: array - items: &545 + items: &546 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -82255,7 +82271,7 @@ paths: - color - default examples: - default: &546 + default: &547 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82273,9 +82289,9 @@ paths: default: false headers: Link: *37 - '301': *372 + '301': *373 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82292,9 +82308,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: false content: @@ -82353,12 +82369,12 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: *546 - '301': *372 + default: *547 + '301': *373 '404': *6 - '410': *369 + '410': *370 '422': *15 x-github: githubCloudOnly: false @@ -82375,9 +82391,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: false content: @@ -82437,12 +82453,12 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: *546 - '301': *372 + default: *547 + '301': *373 '404': *6 - '410': *369 + '410': *370 '422': *15 x-github: githubCloudOnly: false @@ -82459,15 +82475,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 responses: '204': description: Response - '301': *372 + '301': *373 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82486,9 +82502,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 - name: name in: path required: true @@ -82501,7 +82517,7 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: default: value: @@ -82512,9 +82528,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *372 + '301': *373 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82534,9 +82550,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: false content: @@ -82565,7 +82581,7 @@ paths: '204': description: Response '403': *27 - '410': *369 + '410': *370 '404': *6 '422': *15 x-github: @@ -82583,9 +82599,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 responses: '204': description: Response @@ -82607,9 +82623,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -82635,13 +82651,13 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82659,9 +82675,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: true content: @@ -82693,16 +82709,16 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '201': description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '422': *15 x-github: githubCloudOnly: false @@ -82724,10 +82740,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *358 - *359 - - *543 - - *350 + - *360 + - *544 + - *351 responses: '204': description: Response @@ -82756,9 +82772,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: true content: @@ -82782,7 +82798,7 @@ paths: application/json: schema: *148 examples: - default: *542 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -82815,9 +82831,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *358 - *359 - - *543 + - *360 + - *544 - *17 - *19 responses: @@ -82829,11 +82845,11 @@ paths: type: array items: *148 examples: - default: *547 + default: *548 headers: Link: *37 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82861,9 +82877,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: true content: @@ -82892,14 +82908,14 @@ paths: application/json: schema: *148 examples: - default: *542 + default: *543 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *369 + '410': *370 '422': *15 '404': *6 x-github: @@ -82919,9 +82935,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 requestBody: required: true content: @@ -82954,7 +82970,7 @@ paths: application/json: schema: *148 examples: - default: *542 + default: *543 '403': *27 '404': *6 '422': *7 @@ -82976,9 +82992,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *358 - *359 - - *543 + - *360 + - *544 - *17 - *19 responses: @@ -82993,7 +83009,6 @@ paths: description: Timeline Event type: object anyOf: - - *548 - *549 - *550 - *551 @@ -83006,6 +83021,7 @@ paths: - *558 - *559 - *560 + - *561 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -83329,7 +83345,7 @@ paths: type: string comments: type: array - items: &580 + items: &581 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -83567,7 +83583,7 @@ paths: type: string comments: type: array - items: *475 + items: *476 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -83842,7 +83858,7 @@ paths: headers: Link: *37 '404': *6 - '410': *369 + '410': *370 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83859,8 +83875,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -83870,7 +83886,7 @@ paths: application/json: schema: type: array - items: &561 + items: &562 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -83937,8 +83953,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -83974,9 +83990,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: &562 + default: &563 value: id: 1 key: ssh-rsa AAA... @@ -84010,9 +84026,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *358 - *359 - - &563 + - *360 + - &564 name: key_id description: The unique identifier of the key. in: path @@ -84024,9 +84040,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 '404': *6 x-github: githubCloudOnly: false @@ -84044,9 +84060,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *358 - *359 - - *563 + - *360 + - *564 responses: '204': description: Response @@ -84066,8 +84082,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -84077,9 +84093,9 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: *546 + default: *547 headers: Link: *37 '404': *6 @@ -84100,8 +84116,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -84137,9 +84153,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: &564 + default: &565 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84171,8 +84187,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *358 - *359 + - *360 - name: name in: path required: true @@ -84183,9 +84199,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: *564 + default: *565 '404': *6 x-github: githubCloudOnly: false @@ -84202,8 +84218,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *358 - *359 + - *360 - name: name in: path required: true @@ -84242,7 +84258,7 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: default: value: @@ -84268,8 +84284,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *358 - *359 + - *360 - name: name in: path required: true @@ -84295,8 +84311,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -84332,8 +84348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *358 - *359 + - *360 responses: '202': *93 '403': @@ -84361,8 +84377,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -84388,9 +84404,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *358 - *359 - - *453 + - *360 + - *454 responses: '200': description: Response @@ -84537,8 +84553,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -84603,8 +84619,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -84638,9 +84654,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *476 + schema: *477 examples: - default: *565 + default: *566 '204': description: Response when already merged '404': @@ -84665,8 +84681,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *358 - *359 + - *360 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -84707,7 +84723,7 @@ paths: application/json: schema: type: array - items: *480 + items: *481 examples: default: value: @@ -84763,8 +84779,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -84804,9 +84820,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: - default: &566 + default: &567 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -84865,9 +84881,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *358 - *359 - - &567 + - *360 + - &568 name: milestone_number description: The number that identifies the milestone. in: path @@ -84879,9 +84895,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: - default: *566 + default: *567 '404': *6 x-github: githubCloudOnly: false @@ -84898,9 +84914,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *358 - *359 - - *567 + - *360 + - *568 requestBody: required: false content: @@ -84938,9 +84954,9 @@ paths: description: Response content: application/json: - schema: *480 + schema: *481 examples: - default: *566 + default: *567 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84956,9 +84972,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *358 - *359 - - *567 + - *360 + - *568 responses: '204': description: Response @@ -84979,9 +84995,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *358 - *359 - - *567 + - *360 + - *568 - *17 - *19 responses: @@ -84991,9 +85007,9 @@ paths: application/json: schema: type: array - items: *545 + items: *546 examples: - default: *546 + default: *547 headers: Link: *37 x-github: @@ -85012,12 +85028,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *358 - *359 - - *568 + - *360 - *569 - - *138 - *570 + - *138 + - *571 - *17 - *19 responses: @@ -85029,7 +85045,7 @@ paths: type: array items: *160 examples: - default: *571 + default: *572 headers: Link: *37 x-github: @@ -85053,8 +85069,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *358 - *359 + - *360 requestBody: required: false content: @@ -85112,14 +85128,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: &572 + schema: &573 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -85263,7 +85279,7 @@ paths: - custom_404 - public examples: - default: &573 + default: &574 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -85304,8 +85320,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -85360,9 +85376,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: *573 + default: *574 '422': *15 '409': *92 x-github: @@ -85385,8 +85401,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -85494,8 +85510,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -85521,8 +85537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -85532,7 +85548,7 @@ paths: application/json: schema: type: array - items: &574 + items: &575 title: Page Build description: Page Build type: object @@ -85624,8 +85640,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *358 - *359 + - *360 responses: '201': description: Response @@ -85672,16 +85688,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *574 + schema: *575 examples: - default: &575 + default: &576 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -85729,8 +85745,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *358 - *359 + - *360 - name: build_id in: path required: true @@ -85741,9 +85757,9 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: - default: *575 + default: *576 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85763,8 +85779,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -85872,9 +85888,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *358 - *359 - - &576 + - *360 + - &577 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -85932,9 +85948,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *358 - *359 - - *576 + - *360 + - *577 responses: '204': *114 '404': *6 @@ -85961,8 +85977,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -86257,8 +86273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Private vulnerability reporting status @@ -86295,8 +86311,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': *114 '422': *14 @@ -86317,8 +86333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': *114 '422': *14 @@ -86341,8 +86357,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-repository-projects parameters: - - *358 - *359 + - *360 - name: state description: Indicates the state of the projects to return. in: query @@ -86363,7 +86379,7 @@ paths: application/json: schema: type: array - items: *307 + items: *308 examples: default: value: @@ -86403,7 +86419,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *369 + '410': *370 '422': *7 x-github: githubCloudOnly: false @@ -86426,8 +86442,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-a-repository-project parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -86453,13 +86469,13 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *368 + default: *369 '401': *23 '403': *27 '404': *6 - '410': *369 + '410': *370 '422': *7 x-github: githubCloudOnly: false @@ -86482,8 +86498,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -86491,7 +86507,7 @@ paths: application/json: schema: type: array - items: *309 + items: *310 examples: default: value: @@ -86522,8 +86538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -86535,7 +86551,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *309 + items: *310 required: - properties examples: @@ -86585,8 +86601,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *358 - *359 + - *360 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -86646,9 +86662,9 @@ paths: application/json: schema: type: array - items: *577 + items: *578 examples: - default: *578 + default: *579 headers: Link: *37 '304': *35 @@ -86680,8 +86696,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -86748,7 +86764,7 @@ paths: description: Response content: application/json: - schema: &582 + schema: &583 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -86877,7 +86893,7 @@ paths: milestone: anyOf: - type: 'null' - - *480 + - *481 active_lock_reason: type: - string @@ -86970,14 +86986,14 @@ paths: _links: type: object properties: - comments: *481 - commits: *481 - statuses: *481 - html: *481 - issue: *481 - review_comments: *481 - review_comment: *481 - self: *481 + comments: *482 + commits: *482 + statuses: *482 + html: *482 + issue: *482 + review_comments: *482 + review_comment: *482 + self: *482 required: - comments - commits @@ -86988,7 +87004,7 @@ paths: - review_comment - self author_association: *135 - auto_merge: *579 + auto_merge: *580 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -87090,7 +87106,7 @@ paths: - merged_by - review_comments examples: - default: &583 + default: &584 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -87617,8 +87633,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *358 - *359 + - *360 - name: sort in: query required: false @@ -87647,9 +87663,9 @@ paths: application/json: schema: type: array - items: *580 + items: *581 examples: - default: &585 + default: &586 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87726,17 +87742,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *358 - *359 + - *360 - *147 responses: '200': description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: &581 + default: &582 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87811,8 +87827,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *358 - *359 + - *360 - *147 requestBody: required: true @@ -87835,9 +87851,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: *581 + default: *582 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87853,8 +87869,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *358 - *359 + - *360 - *147 responses: '204': @@ -87876,8 +87892,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *358 - *359 + - *360 - *147 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -87904,9 +87920,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 '404': *6 @@ -87927,8 +87943,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *358 - *359 + - *360 - *147 requestBody: required: true @@ -87961,16 +87977,16 @@ paths: description: Reaction exists content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '201': description: Reaction created content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '422': *15 x-github: githubCloudOnly: false @@ -87992,10 +88008,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *358 - *359 + - *360 - *147 - - *350 + - *351 responses: '204': description: Response @@ -88038,9 +88054,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *358 - *359 - - &584 + - *360 + - &585 name: pull_number description: The number that identifies the pull request. in: path @@ -88053,9 +88069,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *582 + schema: *583 examples: - default: *583 + default: *584 '304': *35 '404': *6 '406': @@ -88090,9 +88106,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: false content: @@ -88134,9 +88150,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: *583 + default: *584 '422': *15 '403': *27 x-github: @@ -88158,9 +88174,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: true content: @@ -88223,7 +88239,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '202': description: Response when the codespace creation partially failed but is being retried in the background @@ -88231,7 +88247,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '401': *23 '403': *27 '404': *6 @@ -88261,9 +88277,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 - *157 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -88284,9 +88300,9 @@ paths: application/json: schema: type: array - items: *580 + items: *581 examples: - default: *585 + default: *586 headers: Link: *37 x-github: @@ -88319,9 +88335,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: true content: @@ -88427,7 +88443,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: example-for-a-multi-line-comment: value: @@ -88515,9 +88531,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *358 - *359 - - *584 + - *360 + - *585 - *147 requestBody: required: true @@ -88540,7 +88556,7 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: default: value: @@ -88626,9 +88642,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 - *17 - *19 responses: @@ -88638,9 +88654,9 @@ paths: application/json: schema: type: array - items: *476 + items: *477 examples: - default: *586 + default: *587 headers: Link: *37 x-github: @@ -88670,9 +88686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *358 - *359 - - *584 + - *360 + - *585 - *17 - *19 responses: @@ -88682,7 +88698,7 @@ paths: application/json: schema: type: array - items: *488 + items: *489 examples: default: value: @@ -88720,9 +88736,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *358 - *359 - - *584 + - *360 + - *585 responses: '204': description: Response if pull request has been merged @@ -88745,9 +88761,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: false content: @@ -88859,9 +88875,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 responses: '200': description: Response @@ -88936,9 +88952,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: false content: @@ -88975,7 +88991,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *578 examples: default: value: @@ -89511,9 +89527,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: true content: @@ -89547,7 +89563,7 @@ paths: description: Response content: application/json: - schema: *577 + schema: *578 examples: default: value: @@ -90052,9 +90068,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 - *17 - *19 responses: @@ -90064,7 +90080,7 @@ paths: application/json: schema: type: array - items: &587 + items: &588 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -90220,9 +90236,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: false content: @@ -90312,9 +90328,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: &589 + default: &590 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90377,10 +90393,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *358 - *359 - - *584 - - &588 + - *360 + - *585 + - &589 name: review_id description: The unique identifier of the review. in: path @@ -90392,9 +90408,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: &590 + default: &591 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90453,10 +90469,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *358 - *359 - - *584 - - *588 + - *360 + - *585 + - *589 requestBody: required: true content: @@ -90479,7 +90495,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: default: value: @@ -90541,18 +90557,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *358 - *359 - - *584 - - *588 + - *360 + - *585 + - *589 responses: '200': description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: *589 + default: *590 '422': *7 '404': *6 x-github: @@ -90579,10 +90595,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *358 - *359 - - *584 - - *588 + - *360 + - *585 + - *589 - *17 - *19 responses: @@ -90680,9 +90696,9 @@ paths: _links: type: object properties: - self: *481 - html: *481 - pull_request: *481 + self: *482 + html: *482 + pull_request: *482 required: - self - html @@ -90833,10 +90849,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *358 - *359 - - *584 - - *588 + - *360 + - *585 + - *589 requestBody: required: true content: @@ -90865,7 +90881,7 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: default: value: @@ -90928,10 +90944,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *358 - *359 - - *584 - - *588 + - *360 + - *585 + - *589 requestBody: required: true content: @@ -90966,9 +90982,9 @@ paths: description: Response content: application/json: - schema: *587 + schema: *588 examples: - default: *590 + default: *591 '404': *6 '422': *7 '403': *27 @@ -90990,9 +91006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *358 - *359 - - *584 + - *360 + - *585 requestBody: required: false content: @@ -91056,8 +91072,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *358 - *359 + - *360 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -91070,9 +91086,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: - default: &592 + default: &593 value: type: file encoding: base64 @@ -91114,8 +91130,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *358 - *359 + - *360 - name: dir description: The alternate path to look for a README file in: path @@ -91135,9 +91151,9 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: - default: *592 + default: *593 '404': *6 '422': *15 x-github: @@ -91159,8 +91175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -91170,7 +91186,7 @@ paths: application/json: schema: type: array - items: &593 + items: &594 title: Release description: A release. type: object @@ -91242,7 +91258,7 @@ paths: author: *4 assets: type: array - items: &594 + items: &595 title: Release Asset description: Data related to a release. type: object @@ -91422,8 +91438,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -91499,9 +91515,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *594 examples: - default: &597 + default: &598 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -91604,9 +91620,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *358 - *359 - - &595 + - *360 + - &596 name: asset_id description: The unique identifier of the asset. in: path @@ -91618,9 +91634,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: &596 + default: &597 value: url: https://api.github.com/repos/octocat/Hello-World/releases/assets/1 browser_download_url: https://github.com/octocat/Hello-World/releases/download/v1.0.0/example.zip @@ -91654,7 +91670,7 @@ paths: type: User site_admin: false '404': *6 - '302': *490 + '302': *491 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91670,9 +91686,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *358 - *359 - - *595 + - *360 + - *596 requestBody: required: false content: @@ -91701,9 +91717,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: - default: *596 + default: *597 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91719,9 +91735,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *358 - *359 - - *595 + - *360 + - *596 responses: '204': description: Response @@ -91745,8 +91761,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -91832,16 +91848,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *358 - *359 + - *360 responses: '200': description: Response content: application/json: - schema: *593 + schema: *594 examples: - default: *597 + default: *598 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91858,8 +91874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *358 - *359 + - *360 - name: tag description: tag parameter in: path @@ -91872,9 +91888,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *594 examples: - default: *597 + default: *598 '404': *6 x-github: githubCloudOnly: false @@ -91896,9 +91912,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *358 - *359 - - &598 + - *360 + - &599 name: release_id description: The unique identifier of the release. in: path @@ -91912,9 +91928,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *593 + schema: *594 examples: - default: *597 + default: *598 '401': description: Unauthorized x-github: @@ -91932,9 +91948,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *358 - *359 - - *598 + - *360 + - *599 requestBody: required: false content: @@ -91998,9 +92014,9 @@ paths: description: Response content: application/json: - schema: *593 + schema: *594 examples: - default: *597 + default: *598 '404': description: Not Found if the discussion category name is invalid content: @@ -92021,9 +92037,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *358 - *359 - - *598 + - *360 + - *599 responses: '204': description: Response @@ -92043,9 +92059,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *358 - *359 - - *598 + - *360 + - *599 - *17 - *19 responses: @@ -92055,7 +92071,7 @@ paths: application/json: schema: type: array - items: *594 + items: *595 examples: default: value: @@ -92136,9 +92152,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *358 - *359 - - *598 + - *360 + - *599 - name: name in: query required: true @@ -92164,7 +92180,7 @@ paths: description: Response for successful upload content: application/json: - schema: *594 + schema: *595 examples: response-for-successful-upload: value: @@ -92218,9 +92234,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *358 - *359 - - *598 + - *360 + - *599 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -92244,9 +92260,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 '404': *6 @@ -92267,9 +92283,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *358 - *359 - - *598 + - *360 + - *599 requestBody: required: true content: @@ -92299,16 +92315,16 @@ paths: description: Reaction exists content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '201': description: Reaction created content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 '422': *15 x-github: githubCloudOnly: false @@ -92330,10 +92346,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *358 - *359 - - *598 - - *350 + - *360 + - *599 + - *351 responses: '204': description: Response @@ -92357,9 +92373,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *358 - *359 - - *417 + - *360 + - *418 - *17 - *19 responses: @@ -92375,8 +92391,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *599 - - &601 + - *600 + - &602 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -92396,53 +92412,53 @@ paths: type: integer description: The ID of the ruleset that includes this rule. - allOf: - - *600 - *601 - - allOf: - *602 - - *601 - allOf: - *603 - - *601 + - *602 - allOf: - *604 - - *601 + - *602 - allOf: - *605 - - *601 + - *602 - allOf: - *606 - - *601 + - *602 - allOf: - *607 - - *601 + - *602 - allOf: - *608 - - *601 + - *602 - allOf: - *609 - - *601 + - *602 - allOf: - *610 - - *601 + - *602 - allOf: - *611 - - *601 + - *602 - allOf: - *612 - - *601 + - *602 - allOf: - *613 - - *601 + - *602 - allOf: - *614 - - *601 + - *602 - allOf: - *615 - - *601 + - *602 - allOf: - *616 - - *601 + - *602 + - allOf: + - *617 + - *602 examples: default: value: @@ -92481,8 +92497,8 @@ paths: category: repos subcategory: rules parameters: - - *358 - *359 + - *360 - *17 - *19 - name: includes_parents @@ -92493,7 +92509,7 @@ paths: schema: type: boolean default: true - - *617 + - *618 responses: '200': description: Response @@ -92548,8 +92564,8 @@ paths: category: repos subcategory: rules parameters: - - *358 - *359 + - *360 requestBody: description: Request body required: true @@ -92611,7 +92627,7 @@ paths: application/json: schema: *124 examples: - default: &626 + default: &627 value: id: 42 name: super cool ruleset @@ -92658,12 +92674,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *358 - *359 - - *618 - - *215 + - *360 - *619 + - *215 - *620 + - *621 - *17 - *19 responses: @@ -92671,9 +92687,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *622 examples: - default: *622 + default: *623 '404': *6 '500': *95 x-github: @@ -92694,17 +92710,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *358 - *359 - - *623 + - *360 + - *624 responses: '200': description: Response content: application/json: - schema: *624 + schema: *625 examples: - default: *625 + default: *626 '404': *6 '500': *95 x-github: @@ -92732,8 +92748,8 @@ paths: category: repos subcategory: rules parameters: - - *358 - *359 + - *360 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92755,7 +92771,7 @@ paths: application/json: schema: *124 examples: - default: *626 + default: *627 '404': *6 '500': *95 put: @@ -92773,8 +92789,8 @@ paths: category: repos subcategory: rules parameters: - - *358 - *359 + - *360 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92838,7 +92854,7 @@ paths: application/json: schema: *124 examples: - default: *626 + default: *627 '404': *6 '500': *95 delete: @@ -92856,8 +92872,8 @@ paths: category: repos subcategory: rules parameters: - - *358 - *359 + - *360 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92880,8 +92896,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *358 - *359 + - *360 - *17 - *19 - name: ruleset_id @@ -92899,7 +92915,7 @@ paths: type: array items: *127 examples: - default: *315 + default: *316 '404': *6 '500': *95 x-github: @@ -92918,8 +92934,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *358 - *359 + - *360 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92937,7 +92953,7 @@ paths: description: Response content: application/json: - schema: *316 + schema: *317 examples: default: value: @@ -92992,20 +93008,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *358 - *359 - - *317 + - *360 - *318 - *319 - *320 + - *321 - *84 - *19 - *17 - - *627 - *628 - - *321 + - *629 - *322 - *323 + - *324 responses: '200': description: Response @@ -93013,7 +93029,7 @@ paths: application/json: schema: type: array - items: &631 + items: &632 type: object properties: number: *96 @@ -93029,8 +93045,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *629 - resolution: *630 + state: *630 + resolution: *631 resolved_at: type: - string @@ -93249,15 +93265,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 responses: '200': description: Response content: application/json: - schema: *631 + schema: *632 examples: default: value: @@ -93309,9 +93325,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 requestBody: required: true content: @@ -93319,8 +93335,8 @@ paths: schema: type: object properties: - state: *629 - resolution: *630 + state: *630 + resolution: *631 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -93339,7 +93355,7 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: default: value: @@ -93414,9 +93430,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *358 - *359 - - *447 + - *360 + - *448 - *19 - *17 responses: @@ -93427,7 +93443,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &787 + items: &788 type: object properties: type: @@ -93806,8 +93822,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -93815,14 +93831,14 @@ paths: schema: type: object properties: - reason: &633 + reason: &634 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *632 + placeholder_id: *633 required: - reason - placeholder_id @@ -93839,7 +93855,7 @@ paths: schema: type: object properties: - reason: *633 + reason: *634 expire_at: type: - string @@ -93883,8 +93899,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *358 - *359 + - *360 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -93899,7 +93915,7 @@ paths: properties: incremental_scans: type: array - items: &634 + items: &635 description: Information on a single scan performed by secret scanning on the repository type: object @@ -93927,15 +93943,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *634 + items: *635 backfill_scans: type: array - items: *634 + items: *635 custom_pattern_backfill_scans: type: array items: allOf: - - *634 + - *635 - type: object properties: pattern_name: @@ -94005,8 +94021,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *358 - *359 + - *360 - *84 - name: sort description: The property to sort the results by. @@ -94050,9 +94066,9 @@ paths: application/json: schema: type: array - items: *635 + items: *636 examples: - default: *636 + default: *637 '400': *14 '404': *6 x-github: @@ -94075,8 +94091,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -94156,7 +94172,7 @@ paths: login: type: string description: The username of the user credited. - type: *326 + type: *327 required: - login - type @@ -94246,9 +94262,9 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: - default: &638 + default: &639 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -94481,8 +94497,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -94595,7 +94611,7 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: default: value: @@ -94742,17 +94758,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *358 - *359 - - *637 + - *360 + - *638 responses: '200': description: Response content: application/json: - schema: *635 + schema: *636 examples: - default: *638 + default: *639 '403': *27 '404': *6 x-github: @@ -94776,9 +94792,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *358 - *359 - - *637 + - *360 + - *638 requestBody: required: true content: @@ -94858,7 +94874,7 @@ paths: login: type: string description: The username of the user credited. - type: *326 + type: *327 required: - login - type @@ -94949,10 +94965,10 @@ paths: description: Response content: application/json: - schema: *635 + schema: *636 examples: - default: *638 - add_credit: *638 + default: *639 + add_credit: *639 '403': *27 '404': *6 '422': @@ -94990,9 +95006,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *358 - *359 - - *637 + - *360 + - *638 responses: '202': *93 '400': *14 @@ -95019,17 +95035,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *358 - *359 - - *637 + - *360 + - *638 responses: '202': description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *373 + default: *374 '400': *14 '422': *15 '403': *27 @@ -95055,8 +95071,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -95152,8 +95168,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *358 - *359 + - *360 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -95162,7 +95178,7 @@ paths: application/json: schema: type: array - items: &639 + items: &640 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -95195,8 +95211,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -95274,8 +95290,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -95369,8 +95385,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *358 - *359 + - *360 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -95524,8 +95540,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *358 - *359 + - *360 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -95535,7 +95551,7 @@ paths: application/json: schema: type: array - items: *639 + items: *640 examples: default: value: @@ -95568,8 +95584,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *358 - *359 + - *360 - name: sha in: path required: true @@ -95625,7 +95641,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *641 examples: default: value: @@ -95679,8 +95695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -95712,14 +95728,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *358 - *359 + - *360 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &641 + schema: &642 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -95792,8 +95808,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *358 - *359 + - *360 requestBody: required: false content: @@ -95819,7 +95835,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: default: value: @@ -95846,8 +95862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -95867,8 +95883,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -95950,8 +95966,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -95959,7 +95975,7 @@ paths: application/json: schema: type: array - items: &642 + items: &643 title: Tag protection description: Tag protection type: object @@ -96016,8 +96032,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -96040,7 +96056,7 @@ paths: description: Response content: application/json: - schema: *642 + schema: *643 examples: default: value: @@ -96071,8 +96087,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *358 - *359 + - *360 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -96109,8 +96125,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *358 - *359 + - *360 - name: ref in: path required: true @@ -96146,8 +96162,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *358 - *359 + - *360 - *17 - *19 responses: @@ -96179,8 +96195,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *358 - *359 + - *360 - *19 - *17 responses: @@ -96188,7 +96204,7 @@ paths: description: Response content: application/json: - schema: &643 + schema: &644 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -96200,7 +96216,7 @@ paths: required: - names examples: - default: &644 + default: &645 value: names: - octocat @@ -96223,8 +96239,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -96255,9 +96271,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: *644 + default: *645 '404': *6 '422': *7 x-github: @@ -96278,9 +96294,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *358 - *359 - - &645 + - *360 + - &646 name: per description: The time frame to display results for. in: query @@ -96311,7 +96327,7 @@ paths: - 128 clones: type: array - items: &646 + items: &647 title: Traffic type: object properties: @@ -96398,8 +96414,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -96493,8 +96509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *358 - *359 + - *360 responses: '200': description: Response @@ -96557,9 +96573,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *358 - *359 - - *645 + - *360 + - *646 responses: '200': description: Response @@ -96580,7 +96596,7 @@ paths: - 3782 views: type: array - items: *646 + items: *647 required: - uniques - count @@ -96657,8 +96673,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *358 - *359 + - *360 requestBody: required: true content: @@ -96932,8 +96948,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *358 - *359 + - *360 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -96956,8 +96972,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -96979,8 +96995,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -97006,8 +97022,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *358 - *359 + - *360 - name: ref in: path required: true @@ -97099,9 +97115,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *373 + default: *374 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -97252,7 +97268,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &654 + - &655 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -97262,7 +97278,7 @@ paths: type: string examples: - members - - &659 + - &660 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -97274,7 +97290,7 @@ paths: format: int32 examples: - 1 - - &660 + - &661 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -97318,7 +97334,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &648 + items: &649 allOf: - type: object required: @@ -97400,7 +97416,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &661 + meta: &662 type: object description: The metadata associated with the creation/updates to the user. @@ -97465,31 +97481,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &649 + '400': &650 description: Bad request content: application/json: - schema: *647 + schema: *648 application/scim+json: - schema: *647 - '401': &650 + schema: *648 + '401': &651 description: Authorization failure - '403': &651 + '403': &652 description: Permission denied - '429': &652 + '429': &653 description: Too many requests content: application/json: - schema: *647 + schema: *648 application/scim+json: - schema: *647 - '500': &653 + schema: *648 + '500': &654 description: Internal server error content: application/json: - schema: *647 + schema: *648 application/scim+json: - schema: *647 + schema: *648 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97513,7 +97529,7 @@ paths: required: true content: application/json: - schema: &657 + schema: &658 type: object required: - schemas @@ -97573,9 +97589,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *648 + schema: *649 examples: - group: &655 + group: &656 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -97594,13 +97610,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *649 - '401': *650 - '403': *651 - '409': &658 + '400': *650 + '401': *651 + '403': *652 + '409': &659 description: Duplicate record detected - '429': *652 - '500': *653 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97617,7 +97633,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &656 + - &657 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -97626,22 +97642,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *654 + - *655 - *38 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *648 + schema: *649 examples: - default: *655 - '400': *649 - '401': *650 - '403': *651 + default: *656 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '429': *652 - '500': *653 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97660,13 +97676,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *656 + - *657 - *38 requestBody: required: true content: application/json: - schema: *657 + schema: *658 examples: group: summary: Group @@ -97692,17 +97708,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *648 + schema: *649 examples: - group: *655 - groupWithMembers: *655 - '400': *649 - '401': *650 - '403': *651 + group: *656 + groupWithMembers: *656 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '409': *658 - '429': *652 - '500': *653 + '409': *659 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97726,13 +97742,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *656 + - *657 - *38 requestBody: required: true content: application/json: - schema: &668 + schema: &669 type: object required: - Operations @@ -97792,17 +97808,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *648 + schema: *649 examples: - updateGroup: *655 - addMembers: *655 - '400': *649 - '401': *650 - '403': *651 + updateGroup: *656 + addMembers: *656 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '409': *658 - '429': *652 - '500': *653 + '409': *659 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97818,17 +97834,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *656 + - *657 - *38 responses: '204': description: Group was deleted, no content - '400': *649 - '401': *650 - '403': *651 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '429': *652 - '500': *653 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97862,8 +97878,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *659 - *660 + - *661 - *38 responses: '200': @@ -97897,7 +97913,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &663 + items: &664 allOf: - type: object required: @@ -97989,7 +98005,7 @@ paths: address. examples: - true - roles: &662 + roles: &663 type: array description: The roles assigned to the user. items: @@ -98048,7 +98064,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *661 + meta: *662 startIndex: type: integer description: A starting index for the returned page @@ -98087,11 +98103,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *649 - '401': *650 - '403': *651 - '429': *652 - '500': *653 + '400': *650 + '401': *651 + '403': *652 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98115,7 +98131,7 @@ paths: required: true content: application/json: - schema: &666 + schema: &667 type: object required: - schemas @@ -98208,9 +98224,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *662 + roles: *663 examples: - user: &667 + user: &668 summary: User value: schemas: @@ -98257,9 +98273,9 @@ paths: description: User has been created content: application/scim+json: - schema: *663 + schema: *664 examples: - user: &664 + user: &665 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -98285,13 +98301,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *664 - '400': *649 - '401': *650 - '403': *651 - '409': *658 - '429': *652 - '500': *653 + enterpriseOwner: *665 + '400': *650 + '401': *651 + '403': *652 + '409': *659 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98308,7 +98324,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &665 + - &666 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -98321,15 +98337,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *663 + schema: *664 examples: - default: *664 - '400': *649 - '401': *650 - '403': *651 + default: *665 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '429': *652 - '500': *653 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98351,30 +98367,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *665 + - *666 - *38 requestBody: required: true content: application/json: - schema: *666 + schema: *667 examples: - user: *667 + user: *668 responses: '200': description: User was updated content: application/scim+json: - schema: *663 + schema: *664 examples: - user: *664 - '400': *649 - '401': *650 - '403': *651 + user: *665 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '409': *658 - '429': *652 - '500': *653 + '409': *659 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98409,13 +98425,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *665 + - *666 - *38 requestBody: required: true content: application/json: - schema: *668 + schema: *669 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -98455,18 +98471,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *663 - examples: - userMultiValuedProperties: *664 - userSingleValuedProperties: *664 - disableUser: *664 - '400': *649 - '401': *650 - '403': *651 + schema: *664 + examples: + userMultiValuedProperties: *665 + userSingleValuedProperties: *665 + disableUser: *665 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '409': *658 - '429': *652 - '500': *653 + '409': *659 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98486,17 +98502,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *665 + - *666 - *38 responses: '204': description: User was deleted, no content - '400': *649 - '401': *650 - '403': *651 + '400': *650 + '401': *651 + '403': *652 '404': *6 - '429': *652 - '500': *653 + '429': *653 + '500': *654 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98587,7 +98603,7 @@ paths: - 1 Resources: type: array - items: &669 + items: &670 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -98834,22 +98850,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &670 + '404': &671 description: Resource not found content: application/json: - schema: *647 + schema: *648 application/scim+json: - schema: *647 - '403': &671 + schema: *648 + '403': &672 description: Forbidden content: application/json: - schema: *647 + schema: *648 application/scim+json: - schema: *647 - '400': *649 - '429': *652 + schema: *648 + '400': *650 + '429': *653 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -98875,9 +98891,9 @@ paths: description: Response content: application/scim+json: - schema: *669 + schema: *670 examples: - default: &672 + default: &673 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -98900,17 +98916,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *670 - '403': *671 - '500': *653 + '404': *671 + '403': *672 + '500': *654 '409': description: Conflict content: application/json: - schema: *647 + schema: *648 application/scim+json: - schema: *647 - '400': *649 + schema: *648 + '400': *650 requestBody: required: true content: @@ -99005,17 +99021,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *164 - - *665 + - *666 responses: '200': description: Response content: application/scim+json: - schema: *669 + schema: *670 examples: - default: *672 - '404': *670 - '403': *671 + default: *673 + '404': *671 + '403': *672 '304': *35 x-github: githubCloudOnly: true @@ -99039,18 +99055,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *164 - - *665 + - *666 responses: '200': description: Response content: application/scim+json: - schema: *669 + schema: *670 examples: - default: *672 + default: *673 '304': *35 - '404': *670 - '403': *671 + '404': *671 + '403': *672 requestBody: required: true content: @@ -99161,19 +99177,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *164 - - *665 + - *666 responses: '200': description: Response content: application/scim+json: - schema: *669 + schema: *670 examples: - default: *672 + default: *673 '304': *35 - '404': *670 - '403': *671 - '400': *649 + '404': *671 + '403': *672 + '400': *650 '429': description: Response content: @@ -99269,12 +99285,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *164 - - *665 + - *666 responses: '204': description: Response - '404': *670 - '403': *671 + '404': *671 + '403': *672 '304': *35 x-github: githubCloudOnly: true @@ -99408,7 +99424,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &673 + text_matches: &674 title: Search Result Text Matches type: array items: @@ -99572,7 +99588,7 @@ paths: enum: - author-date - committer-date - - &674 + - &675 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 @@ -99641,7 +99657,7 @@ paths: committer: anyOf: - type: 'null' - - *415 + - *416 comment_count: type: integer message: @@ -99660,7 +99676,7 @@ paths: url: type: string format: uri - verification: *525 + verification: *526 required: - author - committer @@ -99675,7 +99691,7 @@ paths: committer: anyOf: - type: 'null' - - *415 + - *416 parents: type: array items: @@ -99692,7 +99708,7 @@ paths: type: number node_id: type: string - text_matches: *673 + text_matches: *674 required: - sha - node_id @@ -99874,7 +99890,7 @@ paths: - interactions - created - updated - - *674 + - *675 - *17 - *19 - name: advanced_search @@ -99998,7 +100014,7 @@ paths: milestone: anyOf: - type: 'null' - - *480 + - *481 comments: type: integer created_at: @@ -100012,7 +100028,7 @@ paths: - string - 'null' format: date-time - text_matches: *673 + text_matches: *674 pull_request: type: object properties: @@ -100237,7 +100253,7 @@ paths: enum: - created - updated - - *674 + - *675 - *17 - *19 responses: @@ -100282,7 +100298,7 @@ paths: - 'null' score: type: number - text_matches: *673 + text_matches: *674 required: - id - node_id @@ -100368,7 +100384,7 @@ paths: - forks - help-wanted-issues - updated - - *674 + - *675 - *17 - *19 responses: @@ -100605,7 +100621,7 @@ paths: - admin - pull - push - text_matches: *673 + text_matches: *674 temp_clone_token: type: string allow_merge_commit: @@ -100914,7 +100930,7 @@ paths: - string - 'null' format: uri - text_matches: *673 + text_matches: *674 related: type: - array @@ -101109,7 +101125,7 @@ paths: - followers - repositories - joined - - *674 + - *675 - *17 - *19 responses: @@ -101219,7 +101235,7 @@ paths: type: - boolean - 'null' - text_matches: *673 + text_matches: *674 blog: type: - string @@ -101301,7 +101317,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &675 + - &676 name: team_id description: The unique identifier of the team. in: path @@ -101313,9 +101329,9 @@ paths: description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '404': *6 x-github: githubCloudOnly: false @@ -101342,7 +101358,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *675 + - *676 requestBody: required: true content: @@ -101406,16 +101422,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '201': description: Response content: application/json: - schema: *339 + schema: *340 examples: - default: *340 + default: *341 '404': *6 '422': *15 '403': *27 @@ -101443,7 +101459,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *675 + - *676 responses: '204': description: Response @@ -101474,7 +101490,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *675 + - *676 - *84 - *17 - *19 @@ -101485,9 +101501,9 @@ paths: application/json: schema: type: array - items: *341 + items: *342 examples: - default: *676 + default: *677 headers: Link: *37 x-github: @@ -101516,7 +101532,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *675 + - *676 requestBody: required: true content: @@ -101550,9 +101566,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: *342 + default: *343 x-github: triggersNotification: true githubCloudOnly: false @@ -101579,16 +101595,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *675 - - *343 + - *676 + - *344 responses: '200': description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: *342 + default: *343 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101613,8 +101629,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *675 - - *343 + - *676 + - *344 requestBody: required: false content: @@ -101637,9 +101653,9 @@ paths: description: Response content: application/json: - schema: *341 + schema: *342 examples: - default: *677 + default: *678 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101664,8 +101680,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *675 - - *343 + - *676 + - *344 responses: '204': description: Response @@ -101694,8 +101710,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *675 - - *343 + - *676 + - *344 - *84 - *17 - *19 @@ -101706,9 +101722,9 @@ paths: application/json: schema: type: array - items: *344 + items: *345 examples: - default: *678 + default: *679 headers: Link: *37 x-github: @@ -101737,8 +101753,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *675 - - *343 + - *676 + - *344 requestBody: required: true content: @@ -101760,9 +101776,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *345 + default: *346 x-github: triggersNotification: true githubCloudOnly: false @@ -101789,17 +101805,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *675 - - *343 - - *346 + - *676 + - *344 + - *347 responses: '200': description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *345 + default: *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101824,9 +101840,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *675 - - *343 - - *346 + - *676 + - *344 + - *347 requestBody: required: true content: @@ -101848,9 +101864,9 @@ paths: description: Response content: application/json: - schema: *344 + schema: *345 examples: - default: *679 + default: *680 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101875,9 +101891,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *675 - - *343 - - *346 + - *676 + - *344 + - *347 responses: '204': description: Response @@ -101906,9 +101922,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *675 - - *343 - - *346 + - *676 + - *344 + - *347 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -101934,9 +101950,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 x-github: @@ -101965,9 +101981,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *675 - - *343 - - *346 + - *676 + - *344 + - *347 requestBody: required: true content: @@ -101999,9 +102015,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102027,8 +102043,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *675 - - *343 + - *676 + - *344 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -102054,9 +102070,9 @@ paths: application/json: schema: type: array - items: *347 + items: *348 examples: - default: *349 + default: *350 headers: Link: *37 x-github: @@ -102085,8 +102101,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *675 - - *343 + - *676 + - *344 requestBody: required: true content: @@ -102118,9 +102134,9 @@ paths: description: Response content: application/json: - schema: *347 + schema: *348 examples: - default: *348 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102144,7 +102160,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *675 + - *676 - *17 - *19 responses: @@ -102182,7 +102198,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *675 + - *676 - name: role description: Filters members returned by their role in the team. in: query @@ -102233,7 +102249,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *675 + - *676 - *212 responses: '204': @@ -102270,7 +102286,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *675 + - *676 - *212 responses: '204': @@ -102310,7 +102326,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *675 + - *676 - *212 responses: '204': @@ -102347,16 +102363,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *675 + - *676 - *212 responses: '200': description: Response content: application/json: - schema: *355 + schema: *356 examples: - response-if-user-is-a-team-maintainer: *680 + response-if-user-is-a-team-maintainer: *681 '404': *6 x-github: githubCloudOnly: false @@ -102389,7 +102405,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *675 + - *676 - *212 requestBody: required: false @@ -102415,9 +102431,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *356 examples: - response-if-users-membership-with-team-is-now-pending: *681 + response-if-users-membership-with-team-is-now-pending: *682 '403': description: Forbidden if team synchronization is set up '422': @@ -102451,7 +102467,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *675 + - *676 - *212 responses: '204': @@ -102480,7 +102496,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *675 + - *676 - *17 - *19 responses: @@ -102490,9 +102506,9 @@ paths: application/json: schema: type: array - items: *356 + items: *357 examples: - default: *682 + default: *683 headers: Link: *37 '404': *6 @@ -102518,16 +102534,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *675 - - *357 + - *676 + - *358 responses: '200': description: Response content: application/json: - schema: *356 + schema: *357 examples: - default: *683 + default: *684 '404': description: Not Found if project is not managed by this team x-github: @@ -102551,8 +102567,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *675 - - *357 + - *676 + - *358 requestBody: required: false content: @@ -102619,8 +102635,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *675 - - *357 + - *676 + - *358 responses: '204': description: Response @@ -102647,7 +102663,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *675 + - *676 - *17 - *19 responses: @@ -102689,15 +102705,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *675 - - *358 + - *676 - *359 + - *360 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *684 + schema: *685 examples: alternative-response-with-extra-repository-information: value: @@ -102848,9 +102864,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *675 - - *358 + - *676 - *359 + - *360 requestBody: required: false content: @@ -102900,9 +102916,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *675 - - *358 + - *676 - *359 + - *360 responses: '204': description: Response @@ -102931,15 +102947,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *675 + - *676 responses: '200': description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *361 + default: *362 '403': *27 '404': *6 x-github: @@ -102966,7 +102982,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *675 + - *676 requestBody: required: true content: @@ -103027,7 +103043,7 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: default: value: @@ -103058,7 +103074,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *675 + - *676 - *17 - *19 responses: @@ -103070,7 +103086,7 @@ paths: type: array items: *277 examples: - response-if-child-teams-exist: *685 + response-if-child-teams-exist: *686 headers: Link: *37 '404': *6 @@ -103103,7 +103119,7 @@ paths: application/json: schema: oneOf: - - &687 + - &688 title: Private User description: Private User type: object @@ -103353,7 +103369,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *686 + - *687 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -103513,7 +103529,7 @@ paths: description: Response content: application/json: - schema: *687 + schema: *688 examples: default: value: @@ -103859,7 +103875,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '202': description: Response when the codespace creation partially failed but is being retried in the background @@ -103867,7 +103883,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '401': *23 '403': *27 '404': *6 @@ -103911,7 +103927,7 @@ paths: type: integer secrets: type: array - items: &688 + items: &689 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -103953,7 +103969,7 @@ paths: - visibility - selected_repositories_url examples: - default: *469 + default: *470 headers: Link: *37 x-github: @@ -104031,7 +104047,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *689 examples: default: value: @@ -104177,7 +104193,7 @@ paths: type: array items: *190 examples: - default: *689 + default: *690 '401': *23 '403': *27 '404': *6 @@ -104329,7 +104345,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '304': *35 '500': *95 '401': *23 @@ -104387,7 +104403,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '401': *23 '403': *27 '404': *6 @@ -104444,7 +104460,7 @@ paths: description: Response content: application/json: - schema: &690 + schema: &691 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -104497,7 +104513,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &691 + default: &692 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -104542,9 +104558,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *691 examples: - default: *691 + default: *692 '404': *6 x-github: githubCloudOnly: false @@ -104581,9 +104597,9 @@ paths: type: integer machines: type: array - items: *468 + items: *469 examples: - default: *692 + default: *693 '304': *35 '500': *95 '401': *23 @@ -104668,11 +104684,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *371 + repository: *372 machine: anyOf: - type: 'null' - - *468 + - *469 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -105477,7 +105493,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '304': *35 '500': *95 '400': *14 @@ -105517,7 +105533,7 @@ paths: application/json: schema: *281 examples: - default: *467 + default: *468 '500': *95 '401': *23 '403': *27 @@ -105549,7 +105565,7 @@ paths: type: array items: *292 examples: - default: &705 + default: &706 value: - id: 197 name: hello_docker @@ -105650,7 +105666,7 @@ paths: application/json: schema: type: array - items: &693 + items: &694 title: Email description: Email type: object @@ -105720,9 +105736,9 @@ paths: application/json: schema: type: array - items: *693 + items: *694 examples: - default: &707 + default: &708 value: - email: octocat@github.com verified: true @@ -105799,7 +105815,7 @@ paths: application/json: schema: type: array - items: *693 + items: *694 examples: default: value: @@ -106057,7 +106073,7 @@ paths: application/json: schema: type: array - items: &694 + items: &695 title: GPG Key description: A unique encryption key type: object @@ -106202,7 +106218,7 @@ paths: - subkeys - revoked examples: - default: &718 + default: &719 value: - id: 3 name: Octocat's GPG Key @@ -106287,9 +106303,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *695 examples: - default: &695 + default: &696 value: id: 3 name: Octocat's GPG Key @@ -106346,7 +106362,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &696 + - &697 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -106358,9 +106374,9 @@ paths: description: Response content: application/json: - schema: *694 + schema: *695 examples: - default: *695 + default: *696 '404': *6 '304': *35 '403': *27 @@ -106383,7 +106399,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *696 + - *697 responses: '204': description: Response @@ -106574,7 +106590,7 @@ paths: type: array items: *61 examples: - default: *697 + default: *698 headers: Link: *37 '404': *6 @@ -106688,7 +106704,7 @@ paths: required: true content: application/json: - schema: *536 + schema: *537 examples: default: value: @@ -106838,7 +106854,7 @@ paths: application/json: schema: type: array - items: &698 + items: &699 title: Key description: Key type: object @@ -106936,9 +106952,9 @@ paths: description: Response content: application/json: - schema: *698 + schema: *699 examples: - default: &699 + default: &700 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -106971,15 +106987,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *563 + - *564 responses: '200': description: Response content: application/json: - schema: *698 + schema: *699 examples: - default: *699 + default: *700 '404': *6 '304': *35 '403': *27 @@ -107002,7 +107018,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *563 + - *564 responses: '204': description: Response @@ -107035,7 +107051,7 @@ paths: application/json: schema: type: array - items: &700 + items: &701 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -107114,7 +107130,7 @@ paths: - account - plan examples: - default: &701 + default: &702 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -107176,9 +107192,9 @@ paths: application/json: schema: type: array - items: *700 + items: *701 examples: - default: *701 + default: *702 headers: Link: *37 '304': *35 @@ -108182,7 +108198,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - *287 - - *702 + - *703 responses: '204': description: Response @@ -108255,7 +108271,7 @@ paths: type: array items: *56 examples: - default: *703 + default: *704 headers: Link: *37 '304': *35 @@ -108297,7 +108313,7 @@ paths: - docker - nuget - container - - *704 + - *705 - *19 - *17 responses: @@ -108309,8 +108325,8 @@ paths: type: array items: *292 examples: - default: *705 - '400': *706 + default: *706 + '400': *707 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108339,7 +108355,7 @@ paths: application/json: schema: *292 examples: - default: &719 + default: &720 value: id: 40201 name: octo-name @@ -108722,7 +108738,7 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: default: value: @@ -108794,9 +108810,9 @@ paths: application/json: schema: type: array - items: *693 + items: *694 examples: - default: *707 + default: *708 headers: Link: *37 '304': *35 @@ -108909,7 +108925,7 @@ paths: type: array items: *61 examples: - default: &714 + default: &715 summary: Default response value: - id: 1296269 @@ -109225,9 +109241,9 @@ paths: description: Response content: application/json: - schema: *371 + schema: *372 examples: - default: *373 + default: *374 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -109265,9 +109281,9 @@ paths: application/json: schema: type: array - items: *538 + items: *539 examples: - default: *708 + default: *709 headers: Link: *37 '304': *35 @@ -109346,7 +109362,7 @@ paths: application/json: schema: type: array - items: &709 + items: &710 title: Social account description: Social media account type: object @@ -109363,7 +109379,7 @@ paths: - provider - url examples: - default: &710 + default: &711 value: - provider: twitter url: https://twitter.com/github @@ -109426,9 +109442,9 @@ paths: application/json: schema: type: array - items: *709 + items: *710 examples: - default: *710 + default: *711 '422': *15 '304': *35 '404': *6 @@ -109516,7 +109532,7 @@ paths: application/json: schema: type: array - items: &711 + items: &712 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -109536,7 +109552,7 @@ paths: - title - created_at examples: - default: &720 + default: &721 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -109603,9 +109619,9 @@ paths: description: Response content: application/json: - schema: *711 + schema: *712 examples: - default: &712 + default: &713 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -109636,7 +109652,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &713 + - &714 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -109648,9 +109664,9 @@ paths: description: Response content: application/json: - schema: *711 + schema: *712 examples: - default: *712 + default: *713 '404': *6 '304': *35 '403': *27 @@ -109673,7 +109689,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *713 + - *714 responses: '204': description: Response @@ -109702,7 +109718,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &721 + - &722 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 @@ -109727,11 +109743,11 @@ paths: type: array items: *61 examples: - default-response: *714 + default-response: *715 application/vnd.github.v3.star+json: schema: type: array - items: &722 + items: &723 title: Starred Repository description: Starred Repository type: object @@ -109887,8 +109903,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *358 - *359 + - *360 responses: '204': description: Response if this repository is starred by you @@ -109916,8 +109932,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -109941,8 +109957,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *358 - *359 + - *360 responses: '204': description: Response @@ -110014,7 +110030,7 @@ paths: application/json: schema: type: array - items: *339 + items: *340 examples: default: value: @@ -110100,10 +110116,10 @@ paths: application/json: schema: oneOf: + - *688 - *687 - - *686 examples: - default-response: &716 + default-response: &717 summary: Default response value: login: octocat @@ -110138,7 +110154,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &717 + response-with-git-hub-plan-information: &718 summary: Response with GitHub plan information value: login: octocat @@ -110198,7 +110214,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *715 + - *716 - *17 responses: '200': @@ -110247,11 +110263,11 @@ paths: application/json: schema: oneOf: + - *688 - *687 - - *686 examples: - default-response: *716 - response-with-git-hub-plan-information: *717 + default-response: *717 + response-with-git-hub-plan-information: *718 '404': *6 x-github: githubCloudOnly: false @@ -110327,7 +110343,7 @@ paths: bundle_url: type: string examples: - default: *411 + default: *412 '201': description: Response content: @@ -110368,7 +110384,7 @@ paths: type: array items: *292 examples: - default: *705 + default: *706 '403': *27 '401': *23 x-github: @@ -110772,9 +110788,9 @@ paths: application/json: schema: type: array - items: *694 + items: *695 examples: - default: *718 + default: *719 headers: Link: *37 x-github: @@ -110878,7 +110894,7 @@ paths: application/json: schema: *20 examples: - default: *535 + default: *536 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -110956,7 +110972,7 @@ paths: type: array items: *56 examples: - default: *703 + default: *704 headers: Link: *37 x-github: @@ -110995,7 +111011,7 @@ paths: - docker - nuget - container - - *704 + - *705 - *212 - *19 - *17 @@ -111008,10 +111024,10 @@ paths: type: array items: *292 examples: - default: *705 + default: *706 '403': *27 '401': *23 - '400': *706 + '400': *707 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111041,7 +111057,7 @@ paths: application/json: schema: *292 examples: - default: *719 + default: *720 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111327,7 +111343,7 @@ paths: application/json: schema: type: array - items: *307 + items: *308 examples: default: value: @@ -111640,9 +111656,9 @@ paths: description: Response content: application/json: - schema: *327 + schema: *328 examples: - default: *328 + default: *329 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111670,9 +111686,9 @@ paths: description: Response content: application/json: - schema: *331 + schema: *332 examples: - default: *332 + default: *333 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111700,9 +111716,9 @@ paths: description: Response content: application/json: - schema: *333 + schema: *334 examples: - default: *334 + default: *335 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111730,9 +111746,9 @@ paths: application/json: schema: type: array - items: *709 + items: *710 examples: - default: *710 + default: *711 headers: Link: *37 x-github: @@ -111762,9 +111778,9 @@ paths: application/json: schema: type: array - items: *711 + items: *712 examples: - default: *720 + default: *721 headers: Link: *37 x-github: @@ -111789,7 +111805,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *212 - - *721 + - *722 - *84 - *17 - *19 @@ -111801,11 +111817,11 @@ paths: schema: anyOf: - type: array - items: *722 + items: *723 - type: array items: *61 examples: - default-response: *714 + default-response: *715 headers: Link: *37 x-github: @@ -111965,7 +111981,7 @@ webhooks: type: string enum: - disabled - enterprise: &723 + enterprise: &724 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -112034,7 +112050,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &724 + installation: &725 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -112055,7 +112071,7 @@ webhooks: required: - id - node_id - organization: &725 + organization: &726 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -112128,7 +112144,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &726 + repository: &727 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -113041,10 +113057,10 @@ webhooks: type: string enum: - enabled - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -113120,11 +113136,11 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - rule: &727 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + rule: &728 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest//github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -113347,11 +113363,11 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - rule: *727 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + rule: *728 sender: *4 required: - action @@ -113539,11 +113555,11 @@ webhooks: - everyone required: - from - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - rule: *727 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + rule: *728 sender: *4 required: - action @@ -113616,7 +113632,7 @@ webhooks: required: true content: application/json: - schema: &730 + schema: &731 title: Exemption request cancellation event type: object properties: @@ -113624,11 +113640,11 @@ webhooks: type: string enum: - cancelled - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - exemption_request: &728 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + exemption_request: &729 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -113823,7 +113839,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &729 + items: &730 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -113935,7 +113951,7 @@ webhooks: required: true content: application/json: - schema: &731 + schema: &732 title: Exemption request completed event type: object properties: @@ -113943,11 +113959,11 @@ webhooks: type: string enum: - completed - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - exemption_request: *728 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + exemption_request: *729 sender: *4 required: - action @@ -114019,7 +114035,7 @@ webhooks: required: true content: application/json: - schema: &732 + schema: &733 title: Exemption request created event type: object properties: @@ -114027,11 +114043,11 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - exemption_request: *728 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + exemption_request: *729 sender: *4 required: - action @@ -114103,7 +114119,7 @@ webhooks: required: true content: application/json: - schema: &733 + schema: &734 title: Exemption response dismissed event type: object properties: @@ -114111,12 +114127,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - exemption_request: *728 - exemption_response: *729 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + exemption_request: *729 + exemption_response: *730 sender: *4 required: - action @@ -114190,7 +114206,7 @@ webhooks: required: true content: application/json: - schema: &734 + schema: &735 title: Exemption response submitted event type: object properties: @@ -114198,12 +114214,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - exemption_request: *728 - exemption_response: *729 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + exemption_request: *729 + exemption_response: *730 sender: *4 required: - action @@ -114276,7 +114292,7 @@ webhooks: required: true content: application/json: - schema: *730 + schema: *731 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114343,7 +114359,7 @@ webhooks: required: true content: application/json: - schema: *731 + schema: *732 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114410,7 +114426,7 @@ webhooks: required: true content: application/json: - schema: *732 + schema: *733 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114477,7 +114493,7 @@ webhooks: required: true content: application/json: - schema: *733 + schema: *734 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114545,7 +114561,7 @@ webhooks: required: true content: application/json: - schema: *734 + schema: *735 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114623,7 +114639,7 @@ webhooks: type: string enum: - completed - check_run: &736 + check_run: &737 title: CheckRun description: A check performed on the code of a given code change type: object @@ -114691,7 +114707,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *430 + items: *431 repository: *190 status: type: string @@ -114736,7 +114752,7 @@ webhooks: - examples: - neutral - deployment: *735 + deployment: *736 details_url: type: string examples: @@ -114796,7 +114812,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *430 + items: *431 started_at: type: string format: date-time @@ -114834,9 +114850,9 @@ webhooks: - output - app - pull_requests - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - check_run @@ -115229,10 +115245,10 @@ webhooks: type: string enum: - created - check_run: *736 - installation: *724 - organization: *725 - repository: *726 + check_run: *737 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - check_run @@ -115628,10 +115644,10 @@ webhooks: type: string enum: - requested_action - check_run: *736 - installation: *724 - organization: *725 - repository: *726 + check_run: *737 + installation: *725 + organization: *726 + repository: *727 requested_action: description: The action requested by the user. type: object @@ -116036,10 +116052,10 @@ webhooks: type: string enum: - rerequested - check_run: *736 - installation: *724 - organization: *725 - repository: *726 + check_run: *737 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - check_run @@ -117031,10 +117047,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -117719,10 +117735,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -118401,10 +118417,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -118570,7 +118586,7 @@ webhooks: required: - login - id - dismissed_comment: *442 + dismissed_comment: *443 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -118722,20 +118738,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &737 + commit_oid: &738 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: *723 - installation: *724 - organization: *725 - ref: &738 + enterprise: *724 + installation: *725 + organization: *726 + ref: &739 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: *726 + repository: *727 sender: *4 required: - action @@ -118899,7 +118915,7 @@ webhooks: required: - login - id - dismissed_comment: *442 + dismissed_comment: *443 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119140,12 +119156,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *737 - enterprise: *723 - installation: *724 - organization: *725 - ref: *738 - repository: *726 + commit_oid: *738 + enterprise: *724 + installation: *725 + organization: *726 + ref: *739 + repository: *727 sender: *4 required: - action @@ -119243,7 +119259,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *442 + dismissed_comment: *443 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -119425,12 +119441,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *737 - enterprise: *723 - installation: *724 - organization: *725 - ref: *738 - repository: *726 + commit_oid: *738 + enterprise: *724 + installation: *725 + organization: *726 + ref: *739 + repository: *727 sender: *4 required: - action @@ -119596,7 +119612,7 @@ webhooks: required: - login - id - dismissed_comment: *442 + dismissed_comment: *443 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119773,12 +119789,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *737 - enterprise: *723 - installation: *724 - organization: *725 - ref: *738 - repository: *726 + commit_oid: *738 + enterprise: *724 + installation: *725 + organization: *726 + ref: *739 + repository: *727 sender: *4 required: - action @@ -119878,7 +119894,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *442 + dismissed_comment: *443 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120058,9 +120074,9 @@ webhooks: type: - string - 'null' - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -120068,7 +120084,7 @@ webhooks: type: - string - 'null' - repository: *726 + repository: *727 sender: *4 required: - action @@ -120164,7 +120180,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *442 + dismissed_comment: *443 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120311,12 +120327,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *737 - enterprise: *723 - installation: *724 - organization: *725 - ref: *738 - repository: *726 + commit_oid: *738 + enterprise: *724 + installation: *725 + organization: *726 + ref: *739 + repository: *727 sender: *4 required: - action @@ -120578,10 +120594,10 @@ webhooks: - updated_at - author_association - body - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -120662,18 +120678,18 @@ webhooks: type: - string - 'null' - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *725 - pusher_type: &739 + organization: *726 + pusher_type: &740 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &740 + ref: &741 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -120683,7 +120699,7 @@ webhooks: enum: - tag - branch - repository: *726 + repository: *727 sender: *4 required: - ref @@ -120766,9 +120782,9 @@ webhooks: enum: - created definition: *110 - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 sender: *4 required: - action @@ -120853,9 +120869,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 sender: *4 required: - action @@ -120933,9 +120949,9 @@ webhooks: enum: - updated definition: *110 - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 sender: *4 required: - action @@ -121012,19 +121028,19 @@ webhooks: type: string enum: - updated - enterprise: *723 - installation: *724 - repository: *726 - organization: *725 + enterprise: *724 + installation: *725 + repository: *727 + organization: *726 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *309 + items: *310 old_property_values: type: array description: The old custom property values for the repository. - items: *309 + items: *310 required: - action - repository @@ -121100,18 +121116,18 @@ webhooks: title: delete event type: object properties: - enterprise: *723 - installation: *724 - organization: *725 - pusher_type: *739 - ref: *740 + enterprise: *724 + installation: *725 + organization: *726 + pusher_type: *740 + ref: *741 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *726 + repository: *727 sender: *4 required: - ref @@ -121195,11 +121211,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121283,11 +121299,11 @@ webhooks: type: string enum: - auto_reopened - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121371,11 +121387,11 @@ webhooks: type: string enum: - created - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121457,11 +121473,11 @@ webhooks: type: string enum: - dismissed - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121543,11 +121559,11 @@ webhooks: type: string enum: - fixed - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121630,11 +121646,11 @@ webhooks: type: string enum: - reintroduced - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121716,11 +121732,11 @@ webhooks: type: string enum: - reopened - alert: *494 - installation: *724 - organization: *725 - enterprise: *723 - repository: *726 + alert: *495 + installation: *725 + organization: *726 + enterprise: *724 + repository: *727 sender: *4 required: - action @@ -121797,9 +121813,9 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - key: &741 + enterprise: *724 + installation: *725 + key: &742 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -121837,8 +121853,8 @@ webhooks: - verified - created_at - read_only - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -121915,11 +121931,11 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - key: *741 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + key: *742 + organization: *726 + repository: *727 sender: *4 required: - action @@ -122491,12 +122507,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - workflow: &745 + workflow: &746 title: Workflow type: - object @@ -123234,13 +123250,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *500 + deployment: *501 pull_requests: type: array - items: *582 - repository: *726 - organization: *725 - installation: *724 + items: *583 + repository: *727 + organization: *726 + installation: *725 sender: *4 responses: '200': @@ -123311,7 +123327,7 @@ webhooks: type: string enum: - approved - approver: &742 + approver: &743 type: object properties: avatar_url: @@ -123354,11 +123370,11 @@ webhooks: type: string comment: type: string - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - reviewers: &743 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + reviewers: &744 type: array items: type: object @@ -123439,7 +123455,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &744 + workflow_job_run: &745 type: object properties: conclusion: @@ -124185,18 +124201,18 @@ webhooks: type: string enum: - rejected - approver: *742 + approver: *743 comment: type: string - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - reviewers: *743 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + reviewers: *744 sender: *4 since: type: string - workflow_job_run: *744 + workflow_job_run: *745 workflow_job_runs: type: array items: @@ -124913,13 +124929,13 @@ webhooks: type: string enum: - requested - enterprise: *723 + enterprise: *724 environment: type: string - installation: *724 - organization: *725 - repository: *726 - requestor: &750 + installation: *725 + organization: *726 + repository: *727 + requestor: &751 title: User type: - object @@ -126862,12 +126878,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - workflow: *745 + workflow: *746 workflow_run: title: Deployment Workflow Run type: @@ -127558,7 +127574,7 @@ webhooks: type: string enum: - answered - answer: &748 + answer: &749 type: object properties: author_association: @@ -127718,7 +127734,7 @@ webhooks: - created_at - updated_at - body - discussion: &746 + discussion: &747 title: Discussion description: A Discussion in a repository. type: object @@ -128014,7 +128030,7 @@ webhooks: - id labels: type: array - items: *545 + items: *546 required: - repository_url - category @@ -128036,10 +128052,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128166,11 +128182,11 @@ webhooks: - from required: - category - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128253,11 +128269,11 @@ webhooks: type: string enum: - closed - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128339,7 +128355,7 @@ webhooks: type: string enum: - created - comment: &747 + comment: &748 type: object properties: author_association: @@ -128499,11 +128515,11 @@ webhooks: - updated_at - body - reactions - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128586,12 +128602,12 @@ webhooks: type: string enum: - deleted - comment: *747 - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + comment: *748 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128686,12 +128702,12 @@ webhooks: - from required: - body - comment: *747 - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + comment: *748 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128775,11 +128791,11 @@ webhooks: type: string enum: - created - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128861,11 +128877,11 @@ webhooks: type: string enum: - deleted - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -128965,11 +128981,11 @@ webhooks: type: string required: - from - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129051,10 +129067,10 @@ webhooks: type: string enum: - labeled - discussion: *746 - enterprise: *723 - installation: *724 - label: &749 + discussion: *747 + enterprise: *724 + installation: *725 + label: &750 title: Label type: object properties: @@ -129087,8 +129103,8 @@ webhooks: - color - default - description - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129171,11 +129187,11 @@ webhooks: type: string enum: - locked - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129257,11 +129273,11 @@ webhooks: type: string enum: - pinned - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129343,11 +129359,11 @@ webhooks: type: string enum: - reopened - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129432,16 +129448,16 @@ webhooks: changes: type: object properties: - new_discussion: *746 - new_repository: *726 + new_discussion: *747 + new_repository: *727 required: - new_discussion - new_repository - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129524,10 +129540,10 @@ webhooks: type: string enum: - unanswered - discussion: *746 - old_answer: *748 - organization: *725 - repository: *726 + discussion: *747 + old_answer: *749 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129609,12 +129625,12 @@ webhooks: type: string enum: - unlabeled - discussion: *746 - enterprise: *723 - installation: *724 - label: *749 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129697,11 +129713,11 @@ webhooks: type: string enum: - unlocked - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129783,11 +129799,11 @@ webhooks: type: string enum: - unpinned - discussion: *746 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + discussion: *747 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -129859,7 +129875,7 @@ webhooks: required: true content: application/json: - schema: *730 + schema: *731 responses: '200': description: Return a 200 status to indicate that the data was received @@ -129925,7 +129941,7 @@ webhooks: required: true content: application/json: - schema: *731 + schema: *732 responses: '200': description: Return a 200 status to indicate that the data was received @@ -129991,7 +130007,7 @@ webhooks: required: true content: application/json: - schema: *732 + schema: *733 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130057,7 +130073,7 @@ webhooks: required: true content: application/json: - schema: *733 + schema: *734 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130123,7 +130139,7 @@ webhooks: required: true content: application/json: - schema: *734 + schema: *735 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130190,7 +130206,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *723 + enterprise: *724 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -130868,9 +130884,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - forkee @@ -131016,9 +131032,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pages: description: The pages that were updated. type: array @@ -131056,7 +131072,7 @@ webhooks: - action - sha - html_url - repository: *726 + repository: *727 sender: *4 required: - pages @@ -131132,10 +131148,10 @@ webhooks: type: string enum: - created - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories: &751 + organization: *726 + repositories: &752 description: An array of repository objects that the installation can access. type: array @@ -131161,8 +131177,8 @@ webhooks: - name - full_name - private - repository: *726 - requester: *750 + repository: *727 + requester: *751 sender: *4 required: - action @@ -131237,11 +131253,11 @@ webhooks: type: string enum: - deleted - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories: *751 - repository: *726 + organization: *726 + repositories: *752 + repository: *727 requester: type: - 'null' @@ -131318,11 +131334,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories: *751 - repository: *726 + organization: *726 + repositories: *752 + repository: *727 requester: type: - 'null' @@ -131399,10 +131415,10 @@ webhooks: type: string enum: - added - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories_added: &752 + organization: *726 + repositories_added: &753 description: An array of repository objects, which were added to the installation. type: array @@ -131448,15 +131464,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *726 - repository_selection: &753 + repository: *727 + repository_selection: &754 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *750 + requester: *751 sender: *4 required: - action @@ -131535,10 +131551,10 @@ webhooks: type: string enum: - removed - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories_added: *752 + organization: *726 + repositories_added: *753 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -131565,9 +131581,9 @@ webhooks: - name - full_name - private - repository: *726 - repository_selection: *753 - requester: *750 + repository: *727 + repository_selection: *754 + requester: *751 sender: *4 required: - action @@ -131646,11 +131662,11 @@ webhooks: type: string enum: - suspend - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories: *751 - repository: *726 + organization: *726 + repositories: *752 + repository: *727 requester: type: - 'null' @@ -131833,10 +131849,10 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 target_type: type: string @@ -131915,11 +131931,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *723 + enterprise: *724 installation: *20 - organization: *725 - repositories: *751 - repository: *726 + organization: *726 + repositories: *752 + repository: *727 requester: type: - 'null' @@ -132167,8 +132183,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -133358,8 +133374,8 @@ webhooks: - state - locked - assignee - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -133439,7 +133455,7 @@ webhooks: type: string enum: - deleted - comment: &754 + comment: &755 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -133606,8 +133622,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -134795,8 +134811,8 @@ webhooks: - state - locked - assignee - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -134876,7 +134892,7 @@ webhooks: type: string enum: - edited - changes: &779 + changes: &780 description: The changes to the comment. type: object properties: @@ -134888,9 +134904,9 @@ webhooks: type: string required: - from - comment: *754 - enterprise: *723 - installation: *724 + comment: *755 + enterprise: *724 + installation: *725 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -136079,8 +136095,8 @@ webhooks: - state - locked - assignee - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -136162,10 +136178,10 @@ webhooks: type: string enum: - assigned - assignee: *750 - enterprise: *723 - installation: *724 - issue: &757 + assignee: *751 + enterprise: *724 + installation: *725 + issue: &758 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -137109,8 +137125,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -137190,8 +137206,8 @@ webhooks: type: string enum: - closed - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -138283,8 +138299,8 @@ webhooks: required: - state - closed_at - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -138363,8 +138379,8 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -139301,8 +139317,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -139381,8 +139397,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -140323,7 +140339,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &755 + milestone: &756 title: Milestone description: A collection of related issues and pull requests. type: object @@ -140466,8 +140482,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -140566,8 +140582,8 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -141511,9 +141527,9 @@ webhooks: - active_lock_reason - body - reactions - label: *749 - organization: *725 - repository: *726 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -141593,8 +141609,8 @@ webhooks: type: string enum: - labeled - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -142537,9 +142553,9 @@ webhooks: - active_lock_reason - body - reactions - label: *749 - organization: *725 - repository: *726 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -142619,8 +142635,8 @@ webhooks: type: string enum: - locked - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -143565,8 +143581,8 @@ webhooks: format: uri user_view_type: type: string - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -143645,8 +143661,8 @@ webhooks: type: string enum: - milestoned - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -144585,9 +144601,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *755 - organization: *725 - repository: *726 + milestone: *756 + organization: *726 + repository: *727 sender: *4 required: - action @@ -146087,8 +146103,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -147031,8 +147047,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -147112,9 +147128,9 @@ webhooks: type: string enum: - pinned - enterprise: *723 - installation: *724 - issue: &756 + enterprise: *724 + installation: *725 + issue: &757 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -148051,8 +148067,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -148131,8 +148147,8 @@ webhooks: type: string enum: - reopened - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -149076,8 +149092,8 @@ webhooks: format: uri user_view_type: type: string - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -150577,11 +150593,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *723 - installation: *724 - issue: *756 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + issue: *757 + organization: *726 + repository: *727 sender: *4 required: - action @@ -150662,7 +150678,7 @@ webhooks: type: string enum: - unassigned - assignee: &782 + assignee: &783 title: User type: - object @@ -150734,11 +150750,11 @@ webhooks: required: - login - id - enterprise: *723 - installation: *724 - issue: *757 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + issue: *758 + organization: *726 + repository: *727 sender: *4 required: - action @@ -150817,12 +150833,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *723 - installation: *724 - issue: *757 - label: *749 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + issue: *758 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -150902,8 +150918,8 @@ webhooks: type: string enum: - unlocked - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -151846,8 +151862,8 @@ webhooks: format: uri user_view_type: type: string - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -151927,11 +151943,11 @@ webhooks: type: string enum: - unpinned - enterprise: *723 - installation: *724 - issue: *756 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + issue: *757 + organization: *726 + repository: *727 sender: *4 required: - action @@ -152010,11 +152026,11 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - label: *749 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -152092,11 +152108,11 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - label: *749 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -152206,11 +152222,11 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - label: *749 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + label: *750 + organization: *726 + repository: *727 sender: *4 required: - action @@ -152292,9 +152308,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *723 - installation: *724 - marketplace_purchase: &758 + enterprise: *724 + installation: *725 + marketplace_purchase: &759 title: Marketplace Purchase type: object required: @@ -152382,8 +152398,8 @@ webhooks: type: integer unit_count: type: integer - organization: *725 - previous_marketplace_purchase: &759 + organization: *726 + previous_marketplace_purchase: &760 title: Marketplace Purchase type: object properties: @@ -152467,7 +152483,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *726 + repository: *727 sender: *4 required: - action @@ -152547,10 +152563,10 @@ webhooks: - changed effective_date: type: string - enterprise: *723 - installation: *724 - marketplace_purchase: *758 - organization: *725 + enterprise: *724 + installation: *725 + marketplace_purchase: *759 + organization: *726 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152638,7 +152654,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *726 + repository: *727 sender: *4 required: - action @@ -152720,10 +152736,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *723 - installation: *724 - marketplace_purchase: *758 - organization: *725 + enterprise: *724 + installation: *725 + marketplace_purchase: *759 + organization: *726 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152809,7 +152825,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *726 + repository: *727 sender: *4 required: - action @@ -152890,8 +152906,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 marketplace_purchase: title: Marketplace Purchase type: object @@ -152977,9 +152993,9 @@ webhooks: type: integer unit_count: type: integer - organization: *725 - previous_marketplace_purchase: *759 - repository: *726 + organization: *726 + previous_marketplace_purchase: *760 + repository: *727 sender: *4 required: - action @@ -153059,12 +153075,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *723 - installation: *724 - marketplace_purchase: *758 - organization: *725 - previous_marketplace_purchase: *759 - repository: *726 + enterprise: *724 + installation: *725 + marketplace_purchase: *759 + organization: *726 + previous_marketplace_purchase: *760 + repository: *727 sender: *4 required: - action @@ -153166,11 +153182,11 @@ webhooks: type: string required: - to - enterprise: *723 - installation: *724 - member: *750 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + member: *751 + organization: *726 + repository: *727 sender: *4 required: - action @@ -153272,11 +153288,11 @@ webhooks: type: - string - 'null' - enterprise: *723 - installation: *724 - member: *750 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + member: *751 + organization: *726 + repository: *727 sender: *4 required: - action @@ -153355,11 +153371,11 @@ webhooks: type: string enum: - removed - enterprise: *723 - installation: *724 - member: *750 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + member: *751 + organization: *726 + repository: *727 sender: *4 required: - action @@ -153437,11 +153453,11 @@ webhooks: type: string enum: - added - enterprise: *723 - installation: *724 - member: *750 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + member: *751 + organization: *726 + repository: *727 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153519,7 +153535,7 @@ webhooks: required: - login - id - team: &760 + team: &761 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -153712,11 +153728,11 @@ webhooks: type: string enum: - removed - enterprise: *723 - installation: *724 - member: *750 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + member: *751 + organization: *726 + repository: *727 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153795,7 +153811,7 @@ webhooks: required: - login - id - team: *760 + team: *761 required: - action - scope @@ -153877,8 +153893,8 @@ webhooks: type: string enum: - checks_requested - installation: *724 - merge_group: &761 + installation: *725 + merge_group: &762 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -153897,15 +153913,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *434 + head_commit: *435 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -153991,10 +154007,10 @@ webhooks: - merged - invalidated - dequeued - installation: *724 - merge_group: *761 - organization: *725 - repository: *726 + installation: *725 + merge_group: *762 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154067,7 +154083,7 @@ webhooks: type: string enum: - deleted - enterprise: *723 + enterprise: *724 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -154175,12 +154191,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *724 - organization: *725 + installation: *725 + organization: *726 repository: anyOf: - type: 'null' - - *726 + - *727 sender: *4 required: - action @@ -154260,11 +154276,11 @@ webhooks: type: string enum: - closed - enterprise: *723 - installation: *724 - milestone: *755 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + milestone: *756 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154343,9 +154359,9 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - milestone: &762 + enterprise: *724 + installation: *725 + milestone: &763 title: Milestone description: A collection of related issues and pull requests. type: object @@ -154487,8 +154503,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154567,11 +154583,11 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - milestone: *755 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + milestone: *756 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154681,11 +154697,11 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - milestone: *755 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + milestone: *756 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154765,11 +154781,11 @@ webhooks: type: string enum: - opened - enterprise: *723 - installation: *724 - milestone: *762 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + milestone: *763 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154848,11 +154864,11 @@ webhooks: type: string enum: - blocked - blocked_user: *750 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + blocked_user: *751 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -154931,11 +154947,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *750 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + blocked_user: *751 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -155014,9 +155030,9 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - membership: &763 + enterprise: *724 + installation: *725 + membership: &764 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -155110,8 +155126,8 @@ webhooks: - role - organization_url - user - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 required: - action @@ -155189,11 +155205,11 @@ webhooks: type: string enum: - member_added - enterprise: *723 - installation: *724 - membership: *763 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + membership: *764 + organization: *726 + repository: *727 sender: *4 required: - action @@ -155272,8 +155288,8 @@ webhooks: type: string enum: - member_invited - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -155395,10 +155411,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 - user: *750 + user: *751 required: - action - invitation @@ -155476,11 +155492,11 @@ webhooks: type: string enum: - member_removed - enterprise: *723 - installation: *724 - membership: *763 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + membership: *764 + organization: *726 + repository: *727 sender: *4 required: - action @@ -155567,11 +155583,11 @@ webhooks: properties: from: type: string - enterprise: *723 - installation: *724 - membership: *763 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + membership: *764 + organization: *726 + repository: *727 sender: *4 required: - action @@ -155647,9 +155663,9 @@ webhooks: type: string enum: - published - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 package: description: Information about the package. type: object @@ -156172,7 +156188,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &764 + items: &765 title: Ruby Gems metadata type: object properties: @@ -156269,7 +156285,7 @@ webhooks: - owner - package_version - registry - repository: *726 + repository: *727 sender: *4 required: - action @@ -156345,9 +156361,9 @@ webhooks: type: string enum: - updated - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 package: description: Information about the package. type: object @@ -156709,7 +156725,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *764 + items: *765 source_url: type: string format: uri @@ -156780,7 +156796,7 @@ webhooks: - owner - package_version - registry - repository: *726 + repository: *727 sender: *4 required: - action @@ -156961,12 +156977,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *723 + enterprise: *724 id: type: integer - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - id @@ -157046,7 +157062,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &765 + personal_access_token_request: &766 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -157196,10 +157212,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *723 - organization: *725 + enterprise: *724 + organization: *726 sender: *4 - installation: *724 + installation: *725 required: - action - personal_access_token_request @@ -157278,11 +157294,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *765 - enterprise: *723 - organization: *725 + personal_access_token_request: *766 + enterprise: *724 + organization: *726 sender: *4 - installation: *724 + installation: *725 required: - action - personal_access_token_request @@ -157360,11 +157376,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *765 - enterprise: *723 - organization: *725 + personal_access_token_request: *766 + enterprise: *724 + organization: *726 sender: *4 - installation: *724 + installation: *725 required: - action - personal_access_token_request @@ -157441,11 +157457,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *765 - organization: *725 - enterprise: *723 + personal_access_token_request: *766 + organization: *726 + enterprise: *724 sender: *4 - installation: *724 + installation: *725 required: - action - personal_access_token_request @@ -157549,7 +157565,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *766 + last_response: *767 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -157581,8 +157597,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 zen: description: Random string of GitHub zen. @@ -157827,10 +157843,10 @@ webhooks: - from required: - note - enterprise: *723 - installation: *724 - organization: *725 - project_card: &767 + enterprise: *724 + installation: *725 + organization: *726 + project_card: &768 title: Project Card type: object properties: @@ -157953,7 +157969,7 @@ webhooks: - creator - created_at - updated_at - repository: *726 + repository: *727 sender: *4 required: - action @@ -158034,11 +158050,11 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - project_card: *767 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project_card: *768 + repository: *727 sender: *4 required: - action @@ -158118,9 +158134,9 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 project_card: title: Project Card type: object @@ -158250,7 +158266,7 @@ webhooks: repository: anyOf: - type: 'null' - - *726 + - *727 sender: *4 required: - action @@ -158344,11 +158360,11 @@ webhooks: - from required: - note - enterprise: *723 - installation: *724 - organization: *725 - project_card: *767 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project_card: *768 + repository: *727 sender: *4 required: - action @@ -158442,9 +158458,9 @@ webhooks: - from required: - column_id - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 project_card: allOf: - title: Project Card @@ -158641,7 +158657,7 @@ webhooks: type: string required: - after_id - repository: *726 + repository: *727 sender: *4 required: - action @@ -158721,10 +158737,10 @@ webhooks: type: string enum: - closed - enterprise: *723 - installation: *724 - organization: *725 - project: &769 + enterprise: *724 + installation: *725 + organization: *726 + project: &770 title: Project type: object properties: @@ -158851,7 +158867,7 @@ webhooks: - creator - created_at - updated_at - repository: *726 + repository: *727 sender: *4 required: - action @@ -158931,10 +158947,10 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - project_column: &768 + enterprise: *724 + installation: *725 + organization: *726 + project_column: &769 title: Project Column type: object properties: @@ -158974,7 +158990,7 @@ webhooks: - name - created_at - updated_at - repository: *726 + repository: *727 sender: *4 required: - action @@ -159053,14 +159069,14 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - project_column: *768 + enterprise: *724 + installation: *725 + organization: *726 + project_column: *769 repository: anyOf: - type: 'null' - - *726 + - *727 sender: *4 required: - action @@ -159149,11 +159165,11 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - organization: *725 - project_column: *768 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project_column: *769 + repository: *727 sender: *4 required: - action @@ -159233,11 +159249,11 @@ webhooks: type: string enum: - moved - enterprise: *723 - installation: *724 - organization: *725 - project_column: *768 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project_column: *769 + repository: *727 sender: *4 required: - action @@ -159317,11 +159333,11 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - project: *769 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project: *770 + repository: *727 sender: *4 required: - action @@ -159401,14 +159417,14 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - project: *769 + enterprise: *724 + installation: *725 + organization: *726 + project: *770 repository: anyOf: - type: 'null' - - *726 + - *727 sender: *4 required: - action @@ -159509,11 +159525,11 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - organization: *725 - project: *769 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project: *770 + repository: *727 sender: *4 required: - action @@ -159592,11 +159608,11 @@ webhooks: type: string enum: - reopened - enterprise: *723 - installation: *724 - organization: *725 - project: *769 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + project: *770 + repository: *727 sender: *4 required: - action @@ -159677,9 +159693,9 @@ webhooks: type: string enum: - closed - installation: *724 - organization: *725 - projects_v2: &770 + installation: *725 + organization: *726 + projects_v2: &771 title: Projects v2 Project description: A projects v2 project type: object @@ -159827,9 +159843,9 @@ webhooks: type: string enum: - created - installation: *724 - organization: *725 - projects_v2: *770 + installation: *725 + organization: *726 + projects_v2: *771 sender: *4 required: - action @@ -159910,9 +159926,9 @@ webhooks: type: string enum: - deleted - installation: *724 - organization: *725 - projects_v2: *770 + installation: *725 + organization: *726 + projects_v2: *771 sender: *4 required: - action @@ -160033,9 +160049,9 @@ webhooks: type: string to: type: string - installation: *724 - organization: *725 - projects_v2: *770 + installation: *725 + organization: *726 + projects_v2: *771 sender: *4 required: - action @@ -160118,7 +160134,7 @@ webhooks: type: string enum: - archived - changes: &774 + changes: &775 type: object properties: archived_at: @@ -160134,9 +160150,9 @@ webhooks: - string - 'null' format: date-time - installation: *724 - organization: *725 - projects_v2_item: &771 + installation: *725 + organization: *726 + projects_v2_item: &772 title: Projects v2 Item description: An item belonging to a project type: object @@ -160275,9 +160291,9 @@ webhooks: - 'null' to: type: string - installation: *724 - organization: *725 - projects_v2_item: *771 + installation: *725 + organization: *726 + projects_v2_item: *772 sender: *4 required: - action @@ -160359,9 +160375,9 @@ webhooks: type: string enum: - created - installation: *724 - organization: *725 - projects_v2_item: *771 + installation: *725 + organization: *726 + projects_v2_item: *772 sender: *4 required: - action @@ -160442,9 +160458,9 @@ webhooks: type: string enum: - deleted - installation: *724 - organization: *725 - projects_v2_item: *771 + installation: *725 + organization: *726 + projects_v2_item: *772 sender: *4 required: - action @@ -160549,7 +160565,7 @@ webhooks: oneOf: - type: string - type: integer - - &772 + - &773 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -160569,7 +160585,7 @@ webhooks: required: - id - name - - &773 + - &774 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -160598,8 +160614,8 @@ webhooks: oneOf: - type: string - type: integer - - *772 - *773 + - *774 type: - 'null' - string @@ -160622,9 +160638,9 @@ webhooks: - 'null' required: - body - installation: *724 - organization: *725 - projects_v2_item: *771 + installation: *725 + organization: *726 + projects_v2_item: *772 sender: *4 required: - action @@ -160721,9 +160737,9 @@ webhooks: type: - string - 'null' - installation: *724 - organization: *725 - projects_v2_item: *771 + installation: *725 + organization: *726 + projects_v2_item: *772 sender: *4 required: - action @@ -160806,10 +160822,10 @@ webhooks: type: string enum: - restored - changes: *774 - installation: *724 - organization: *725 - projects_v2_item: *771 + changes: *775 + installation: *725 + organization: *726 + projects_v2_item: *772 sender: *4 required: - action @@ -160891,9 +160907,9 @@ webhooks: type: string enum: - reopened - installation: *724 - organization: *725 - projects_v2: *770 + installation: *725 + organization: *726 + projects_v2: *771 sender: *4 required: - action @@ -160974,9 +160990,9 @@ webhooks: type: string enum: - created - installation: *724 - organization: *725 - projects_v2_status_update: &775 + installation: *725 + organization: *726 + projects_v2_status_update: &776 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -161111,9 +161127,9 @@ webhooks: type: string enum: - deleted - installation: *724 - organization: *725 - projects_v2_status_update: *775 + installation: *725 + organization: *726 + projects_v2_status_update: *776 sender: *4 required: - action @@ -161259,9 +161275,9 @@ webhooks: - string - 'null' format: date - installation: *724 - organization: *725 - projects_v2_status_update: *775 + installation: *725 + organization: *726 + projects_v2_status_update: *776 sender: *4 required: - action @@ -161332,10 +161348,10 @@ webhooks: title: public event type: object properties: - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - repository @@ -161412,13 +161428,13 @@ webhooks: type: string enum: - assigned - assignee: *750 - enterprise: *723 - installation: *724 - number: &776 + assignee: *751 + enterprise: *724 + installation: *725 + number: &777 description: The pull request number. type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -163767,7 +163783,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -163849,11 +163865,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -166195,7 +166211,7 @@ webhooks: - draft reason: type: string - repository: *726 + repository: *727 sender: *4 required: - action @@ -166277,11 +166293,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -168623,7 +168639,7 @@ webhooks: - draft reason: type: string - repository: *726 + repository: *727 sender: *4 required: - action @@ -168705,13 +168721,13 @@ webhooks: type: string enum: - closed - enterprise: *723 - installation: *724 - number: *776 - organization: *725 - pull_request: &777 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 + pull_request: &778 allOf: - - *582 + - *583 - type: object properties: allow_auto_merge: @@ -168773,7 +168789,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *726 + repository: *727 sender: *4 required: - action @@ -168854,12 +168870,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *723 - installation: *724 - number: *776 - organization: *725 - pull_request: *777 - repository: *726 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 + pull_request: *778 + repository: *727 sender: *4 required: - action @@ -168939,11 +168955,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *723 - milestone: *480 - number: *776 - organization: *725 - pull_request: &778 + enterprise: *724 + milestone: *481 + number: *777 + organization: *726 + pull_request: &779 title: Pull Request type: object properties: @@ -171270,7 +171286,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -171349,11 +171365,11 @@ webhooks: type: string enum: - dequeued - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -173699,7 +173715,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *726 + repository: *727 sender: *4 required: - action @@ -173823,12 +173839,12 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - number: *776 - organization: *725 - pull_request: *777 - repository: *726 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 + pull_request: *778 + repository: *727 sender: *4 required: - action @@ -173908,11 +173924,11 @@ webhooks: type: string enum: - enqueued - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -176243,7 +176259,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -176323,11 +176339,11 @@ webhooks: type: string enum: - labeled - enterprise: *723 - installation: *724 - label: *749 - number: *776 - organization: *725 + enterprise: *724 + installation: *725 + label: *750 + number: *777 + organization: *726 pull_request: title: Pull Request type: object @@ -178675,7 +178691,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -178756,10 +178772,10 @@ webhooks: type: string enum: - locked - enterprise: *723 - installation: *724 - number: *776 - organization: *725 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 pull_request: title: Pull Request type: object @@ -181105,7 +181121,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -181185,12 +181201,12 @@ webhooks: type: string enum: - milestoned - enterprise: *723 - milestone: *480 - number: *776 - organization: *725 - pull_request: *778 - repository: *726 + enterprise: *724 + milestone: *481 + number: *777 + organization: *726 + pull_request: *779 + repository: *727 sender: *4 required: - action @@ -181269,12 +181285,12 @@ webhooks: type: string enum: - opened - enterprise: *723 - installation: *724 - number: *776 - organization: *725 - pull_request: *777 - repository: *726 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 + pull_request: *778 + repository: *727 sender: *4 required: - action @@ -181355,12 +181371,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *723 - installation: *724 - number: *776 - organization: *725 - pull_request: *777 - repository: *726 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 + pull_request: *778 + repository: *727 sender: *4 required: - action @@ -181440,12 +181456,12 @@ webhooks: type: string enum: - reopened - enterprise: *723 - installation: *724 - number: *776 - organization: *725 - pull_request: *777 - repository: *726 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 + pull_request: *778 + repository: *727 sender: *4 required: - action @@ -181820,9 +181836,9 @@ webhooks: - start_side - side - reactions - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: type: object properties: @@ -184052,7 +184068,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *726 + repository: *727 sender: *4 required: - action @@ -184132,7 +184148,7 @@ webhooks: type: string enum: - deleted - comment: &780 + comment: &781 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -184425,9 +184441,9 @@ webhooks: - start_side - side - reactions - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: type: object properties: @@ -186645,7 +186661,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *726 + repository: *727 sender: *4 required: - action @@ -186725,11 +186741,11 @@ webhooks: type: string enum: - edited - changes: *779 - comment: *780 - enterprise: *723 - installation: *724 - organization: *725 + changes: *780 + comment: *781 + enterprise: *724 + installation: *725 + organization: *726 pull_request: type: object properties: @@ -188950,7 +188966,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *726 + repository: *727 sender: *4 required: - action @@ -189031,9 +189047,9 @@ webhooks: type: string enum: - dismissed - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: title: Simple Pull Request type: object @@ -191266,7 +191282,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *726 + repository: *727 review: description: The review that was affected. type: object @@ -191512,9 +191528,9 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: title: Simple Pull Request type: object @@ -193628,8 +193644,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *726 - review: &781 + repository: *727 + review: &782 description: The review that was affected. type: object properties: @@ -193862,12 +193878,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: description: The pull request number. type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -196214,7 +196230,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 requested_reviewer: title: User type: @@ -196300,12 +196316,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: description: The pull request number. type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -198659,7 +198675,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 requested_team: title: Team description: Groups of organization members that gives permissions @@ -198854,12 +198870,12 @@ webhooks: type: string enum: - review_requested - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: description: The pull request number. type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -201208,7 +201224,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 requested_reviewer: title: User type: @@ -201295,12 +201311,12 @@ webhooks: type: string enum: - review_requested - enterprise: *723 - installation: *724 + enterprise: *724 + installation: *725 number: description: The pull request number. type: integer - organization: *725 + organization: *726 pull_request: title: Pull Request type: object @@ -203640,7 +203656,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 requested_team: title: Team description: Groups of organization members that gives permissions @@ -203824,9 +203840,9 @@ webhooks: type: string enum: - submitted - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: title: Simple Pull Request type: object @@ -206062,8 +206078,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *726 - review: *781 + repository: *727 + review: *782 sender: *4 required: - action @@ -206143,9 +206159,9 @@ webhooks: type: string enum: - resolved - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: title: Simple Pull Request type: object @@ -208276,7 +208292,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *726 + repository: *727 sender: *4 thread: type: object @@ -208668,9 +208684,9 @@ webhooks: type: string enum: - unresolved - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 pull_request: title: Simple Pull Request type: object @@ -210784,7 +210800,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *726 + repository: *727 sender: *4 thread: type: object @@ -211178,10 +211194,10 @@ webhooks: type: string before: type: string - enterprise: *723 - installation: *724 - number: *776 - organization: *725 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 pull_request: title: Pull Request type: object @@ -213516,7 +213532,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -213598,11 +213614,11 @@ webhooks: type: string enum: - unassigned - assignee: *782 - enterprise: *723 - installation: *724 - number: *776 - organization: *725 + assignee: *783 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 pull_request: title: Pull Request type: object @@ -215952,7 +215968,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -216031,11 +216047,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *723 - installation: *724 - label: *749 - number: *776 - organization: *725 + enterprise: *724 + installation: *725 + label: *750 + number: *777 + organization: *726 pull_request: title: Pull Request type: object @@ -218374,7 +218390,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -218455,10 +218471,10 @@ webhooks: type: string enum: - unlocked - enterprise: *723 - installation: *724 - number: *776 - organization: *725 + enterprise: *724 + installation: *725 + number: *777 + organization: *726 pull_request: title: Pull Request type: object @@ -220787,7 +220803,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *726 + repository: *727 sender: *4 required: - action @@ -220990,7 +221006,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *723 + enterprise: *724 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -221085,8 +221101,8 @@ webhooks: - url - author - committer - installation: *724 - organization: *725 + installation: *725 + organization: *726 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -221674,9 +221690,9 @@ webhooks: type: string enum: - published - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 registry_package: type: object properties: @@ -222153,7 +222169,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *764 + items: *765 summary: type: string tag_name: @@ -222209,7 +222225,7 @@ webhooks: - owner - package_version - registry - repository: *726 + repository: *727 sender: *4 required: - action @@ -222287,9 +222303,9 @@ webhooks: type: string enum: - updated - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 registry_package: type: object properties: @@ -222601,7 +222617,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *764 + items: *765 summary: type: string tag_name: @@ -222651,7 +222667,7 @@ webhooks: - owner - package_version - registry - repository: *726 + repository: *727 sender: *4 required: - action @@ -222728,10 +222744,10 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - release: &783 + enterprise: *724 + installation: *725 + organization: *726 + release: &784 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -223047,7 +223063,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *726 + repository: *727 sender: *4 required: - action @@ -223124,11 +223140,11 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - release: *783 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + release: *784 + repository: *727 sender: *4 required: - action @@ -223245,11 +223261,11 @@ webhooks: type: boolean required: - to - enterprise: *723 - installation: *724 - organization: *725 - release: *783 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + release: *784 + repository: *727 sender: *4 required: - action @@ -223327,9 +223343,9 @@ webhooks: type: string enum: - prereleased - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -223650,7 +223666,7 @@ webhooks: - string - 'null' format: uri - repository: *726 + repository: *727 sender: *4 required: - action @@ -223726,10 +223742,10 @@ webhooks: type: string enum: - published - enterprise: *723 - installation: *724 - organization: *725 - release: &784 + enterprise: *724 + installation: *725 + organization: *726 + release: &785 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -224047,7 +224063,7 @@ webhooks: - string - 'null' format: uri - repository: *726 + repository: *727 sender: *4 required: - action @@ -224123,11 +224139,11 @@ webhooks: type: string enum: - released - enterprise: *723 - installation: *724 - organization: *725 - release: *783 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + release: *784 + repository: *727 sender: *4 required: - action @@ -224203,11 +224219,11 @@ webhooks: type: string enum: - unpublished - enterprise: *723 - installation: *724 - organization: *725 - release: *784 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + release: *785 + repository: *727 sender: *4 required: - action @@ -224283,11 +224299,11 @@ webhooks: type: string enum: - published - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - repository_advisory: *635 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + repository_advisory: *636 sender: *4 required: - action @@ -224363,11 +224379,11 @@ webhooks: type: string enum: - reported - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - repository_advisory: *635 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + repository_advisory: *636 sender: *4 required: - action @@ -224443,10 +224459,10 @@ webhooks: type: string enum: - archived - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -224523,10 +224539,10 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -224604,10 +224620,10 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -224692,10 +224708,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -224810,10 +224826,10 @@ webhooks: - 'null' items: type: string - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -224885,10 +224901,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 status: type: string @@ -224969,10 +224985,10 @@ webhooks: type: string enum: - privatized - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -225049,10 +225065,10 @@ webhooks: type: string enum: - publicized - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -225146,10 +225162,10 @@ webhooks: - name required: - repository - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -225229,10 +225245,10 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 repository_ruleset: *124 sender: *4 required: @@ -225311,10 +225327,10 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 repository_ruleset: *124 sender: *4 required: @@ -225393,10 +225409,10 @@ webhooks: type: string enum: - edited - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 repository_ruleset: *124 changes: type: object @@ -225704,10 +225720,10 @@ webhooks: - from required: - owner - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -225785,10 +225801,10 @@ webhooks: type: string enum: - unarchived - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -225866,7 +225882,7 @@ webhooks: type: string enum: - create - alert: &785 + alert: &786 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -225990,10 +226006,10 @@ webhooks: type: string enum: - open - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -226203,10 +226219,10 @@ webhooks: type: string enum: - dismissed - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -226284,11 +226300,11 @@ webhooks: type: string enum: - reopen - alert: *785 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + alert: *786 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -226490,10 +226506,10 @@ webhooks: enum: - fixed - open - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -226571,7 +226587,7 @@ webhooks: type: string enum: - created - alert: &786 + alert: &787 type: object properties: number: *96 @@ -226681,10 +226697,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -226765,11 +226781,11 @@ webhooks: type: string enum: - created - alert: *786 - installation: *724 - location: *787 - organization: *725 - repository: *726 + alert: *787 + installation: *725 + location: *788 + organization: *726 + repository: *727 sender: *4 required: - location @@ -227007,11 +227023,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *786 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + alert: *787 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -227089,11 +227105,11 @@ webhooks: type: string enum: - reopened - alert: *786 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + alert: *787 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -227171,11 +227187,11 @@ webhooks: type: string enum: - resolved - alert: *786 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + alert: *787 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -227253,11 +227269,11 @@ webhooks: type: string enum: - validated - alert: *786 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + alert: *787 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -227387,10 +227403,10 @@ webhooks: - organization - enterprise - - repository: *726 - enterprise: *723 - installation: *724 - organization: *725 + repository: *727 + enterprise: *724 + installation: *725 + organization: *726 sender: *4 required: - action @@ -227468,11 +227484,11 @@ webhooks: type: string enum: - published - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - security_advisory: &788 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + security_advisory: &789 description: The details of the security advisory, including summary, description, and severity. type: object @@ -227658,11 +227674,11 @@ webhooks: type: string enum: - updated - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 - security_advisory: *788 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 + security_advisory: *789 sender: *4 required: - action @@ -227735,10 +227751,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -227924,11 +227940,11 @@ webhooks: from: type: object properties: - security_and_analysis: *310 - enterprise: *723 - installation: *724 - organization: *725 - repository: *371 + security_and_analysis: *311 + enterprise: *724 + installation: *725 + organization: *726 + repository: *372 sender: *4 required: - changes @@ -228006,12 +228022,12 @@ webhooks: type: string enum: - cancelled - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - sponsorship: &789 + sponsorship: &790 type: object properties: created_at: @@ -228316,12 +228332,12 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - sponsorship: *789 + sponsorship: *790 required: - action - sponsorship @@ -228409,12 +228425,12 @@ webhooks: type: string required: - from - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - sponsorship: *789 + sponsorship: *790 required: - action - changes @@ -228491,17 +228507,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &790 + effective_date: &791 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: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - sponsorship: *789 + sponsorship: *790 required: - action - sponsorship @@ -228575,7 +228591,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &791 + changes: &792 type: object properties: tier: @@ -228619,13 +228635,13 @@ webhooks: - from required: - tier - effective_date: *790 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + effective_date: *791 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - sponsorship: *789 + sponsorship: *790 required: - action - changes @@ -228702,13 +228718,13 @@ webhooks: type: string enum: - tier_changed - changes: *791 - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + changes: *792 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - sponsorship: *789 + sponsorship: *790 required: - action - changes @@ -228782,10 +228798,10 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -228869,10 +228885,10 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -229306,15 +229322,15 @@ webhooks: type: - string - 'null' - enterprise: *723 + enterprise: *724 id: description: The unique identifier of the status. type: integer - installation: *724 + installation: *725 name: type: string - organization: *725 - repository: *726 + organization: *726 + repository: *727 sender: *4 sha: description: The Commit SHA. @@ -229430,9 +229446,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *148 - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -229522,9 +229538,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *148 - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -229614,9 +229630,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *148 - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -229706,9 +229722,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *148 - installation: *724 - organization: *725 - repository: *726 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -229785,12 +229801,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - team: &792 + team: &793 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -229983,9 +229999,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 repository: title: Repository description: A git repository @@ -230455,7 +230471,7 @@ webhooks: - topics - visibility sender: *4 - team: *792 + team: *793 required: - action - team @@ -230531,9 +230547,9 @@ webhooks: type: string enum: - created - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 repository: title: Repository description: A git repository @@ -231003,7 +231019,7 @@ webhooks: - topics - visibility sender: *4 - team: *792 + team: *793 required: - action - team @@ -231080,9 +231096,9 @@ webhooks: type: string enum: - deleted - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 repository: title: Repository description: A git repository @@ -231552,7 +231568,7 @@ webhooks: - topics - visibility sender: *4 - team: *792 + team: *793 required: - action - team @@ -231696,9 +231712,9 @@ webhooks: - from required: - permissions - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 repository: title: Repository description: A git repository @@ -232168,7 +232184,7 @@ webhooks: - topics - visibility sender: *4 - team: *792 + team: *793 required: - action - changes @@ -232246,9 +232262,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *723 - installation: *724 - organization: *725 + enterprise: *724 + installation: *725 + organization: *726 repository: title: Repository description: A git repository @@ -232718,7 +232734,7 @@ webhooks: - topics - visibility sender: *4 - team: *792 + team: *793 required: - action - team @@ -232794,10 +232810,10 @@ webhooks: type: string enum: - started - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 required: - action @@ -232870,17 +232886,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *723 + enterprise: *724 inputs: type: - object - 'null' additionalProperties: true - installation: *724 - organization: *725 + installation: *725 + organization: *726 ref: type: string - repository: *726 + repository: *727 sender: *4 workflow: type: string @@ -232962,10 +232978,10 @@ webhooks: type: string enum: - completed - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 workflow_job: allOf: @@ -233221,7 +233237,7 @@ webhooks: type: string required: - conclusion - deployment: *500 + deployment: *501 required: - action - repository @@ -233300,10 +233316,10 @@ webhooks: type: string enum: - in_progress - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 workflow_job: allOf: @@ -233585,7 +233601,7 @@ webhooks: required: - status - steps - deployment: *500 + deployment: *501 required: - action - repository @@ -233664,10 +233680,10 @@ webhooks: type: string enum: - queued - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 workflow_job: type: object @@ -233813,7 +233829,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *500 + deployment: *501 required: - action - repository @@ -233892,10 +233908,10 @@ webhooks: type: string enum: - waiting - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 workflow_job: type: object @@ -234042,7 +234058,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *500 + deployment: *501 required: - action - repository @@ -234122,12 +234138,12 @@ webhooks: type: string enum: - completed - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - workflow: *745 + workflow: *746 workflow_run: title: Workflow Run type: object @@ -235146,12 +235162,12 @@ webhooks: type: string enum: - in_progress - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - workflow: *745 + workflow: *746 workflow_run: title: Workflow Run type: object @@ -236155,12 +236171,12 @@ webhooks: type: string enum: - requested - enterprise: *723 - installation: *724 - organization: *725 - repository: *726 + enterprise: *724 + installation: *725 + organization: *726 + repository: *727 sender: *4 - workflow: *745 + workflow: *746 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/ghec.2022-11-28.json b/descriptions-next/ghec/ghec.2022-11-28.json index 1266adf346..0b8fd61cf5 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.json +++ b/descriptions-next/ghec/ghec.2022-11-28.json @@ -25632,6 +25632,9 @@ }, { "$ref": "#/components/parameters/personal-access-token-after" + }, + { + "$ref": "#/components/parameters/personal-access-token-token-id" } ], "responses": { @@ -25979,6 +25982,9 @@ }, { "$ref": "#/components/parameters/personal-access-token-after" + }, + { + "$ref": "#/components/parameters/personal-access-token-token-id" } ], "responses": { @@ -46226,7 +46232,7 @@ }, "put": { "summary": "Create or update a repository secret", - "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/enterprise-cloud@latest//rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/enterprise-cloud@latest//rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -46304,7 +46310,7 @@ }, "delete": { "summary": "Delete a repository secret", - "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -50659,7 +50665,7 @@ }, "post": { "summary": "Create a custom deployment protection rule on an environment", - "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/enterprise-cloud@latest//actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", "tags": [ "repos" ], @@ -106825,6 +106831,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -106895,6 +106902,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -106905,6 +106913,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -324907,6 +324916,22 @@ "format": "date-time" } }, + "personal-access-token-token-id": { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } + }, "fine-grained-personal-access-token-id": { "name": "pat_id", "description": "The unique identifier of the fine-grained personal access token.", diff --git a/descriptions-next/ghec/ghec.2022-11-28.yaml b/descriptions-next/ghec/ghec.2022-11-28.yaml index ff1b0c52a0..d4f3b2d47f 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.yaml +++ b/descriptions-next/ghec/ghec.2022-11-28.yaml @@ -18571,6 +18571,7 @@ paths: - "$ref": "#/components/parameters/personal-access-token-permission" - "$ref": "#/components/parameters/personal-access-token-before" - "$ref": "#/components/parameters/personal-access-token-after" + - "$ref": "#/components/parameters/personal-access-token-token-id" responses: '500': "$ref": "#/components/responses/internal_error" @@ -18813,6 +18814,7 @@ paths: - "$ref": "#/components/parameters/personal-access-token-permission" - "$ref": "#/components/parameters/personal-access-token-before" - "$ref": "#/components/parameters/personal-access-token-after" + - "$ref": "#/components/parameters/personal-access-token-token-id" responses: '500': "$ref": "#/components/responses/internal_error" @@ -33560,7 +33562,7 @@ paths: Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/enterprise-cloud@latest//rest/guides/encrypting-secrets-for-the-rest-api)." - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/create-or-update-repo-secret @@ -33615,7 +33617,7 @@ paths: description: |- Deletes a development environment secret in a repository using the secret name. - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/delete-repo-secret @@ -36903,7 +36905,7 @@ paths: The authenticated user must have admin or owner permissions to the repository to use this endpoint. - For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app). + For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/enterprise-cloud@latest//actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules). OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. tags: @@ -77173,6 +77175,7 @@ components: id: description: Unique identifier of the webhook delivery. type: integer + format: int64 examples: - 42 guid: @@ -77225,6 +77228,7 @@ components: type: - integer - 'null' + format: int64 examples: - 123 repository_id: @@ -77232,6 +77236,7 @@ components: type: - integer - 'null' + format: int64 examples: - 123 throttled_at: @@ -242990,6 +242995,18 @@ components: schema: type: string format: date-time + personal-access-token-token-id: + name: token_id + description: The ID of the token + in: query + required: false + schema: + type: array + maxItems: 50 + items: + type: string + examples: + - token_id[]=1,token_id[]=2 fine-grained-personal-access-token-id: name: pat_id description: The unique identifier of the fine-grained personal access token. diff --git a/descriptions-next/ghec/ghec.json b/descriptions-next/ghec/ghec.json index 1266adf346..0b8fd61cf5 100644 --- a/descriptions-next/ghec/ghec.json +++ b/descriptions-next/ghec/ghec.json @@ -25632,6 +25632,9 @@ }, { "$ref": "#/components/parameters/personal-access-token-after" + }, + { + "$ref": "#/components/parameters/personal-access-token-token-id" } ], "responses": { @@ -25979,6 +25982,9 @@ }, { "$ref": "#/components/parameters/personal-access-token-after" + }, + { + "$ref": "#/components/parameters/personal-access-token-token-id" } ], "responses": { @@ -46226,7 +46232,7 @@ }, "put": { "summary": "Create or update a repository secret", - "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/enterprise-cloud@latest//rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using\n[LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see \"[Encrypting secrets for the REST API](https://docs.github.com/enterprise-cloud@latest//rest/guides/encrypting-secrets-for-the-rest-api).\"\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -46304,7 +46310,7 @@ }, "delete": { "summary": "Delete a repository secret", - "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Deletes a development environment secret in a repository using the secret name.\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin.", "tags": [ "codespaces" ], @@ -50659,7 +50665,7 @@ }, "post": { "summary": "Create a custom deployment protection rule on an environment", - "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/enterprise-cloud@latest//actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", "tags": [ "repos" ], @@ -106825,6 +106831,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -106895,6 +106902,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -106905,6 +106913,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -324907,6 +324916,22 @@ "format": "date-time" } }, + "personal-access-token-token-id": { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } + }, "fine-grained-personal-access-token-id": { "name": "pat_id", "description": "The unique identifier of the fine-grained personal access token.", diff --git a/descriptions-next/ghec/ghec.yaml b/descriptions-next/ghec/ghec.yaml index ff1b0c52a0..d4f3b2d47f 100644 --- a/descriptions-next/ghec/ghec.yaml +++ b/descriptions-next/ghec/ghec.yaml @@ -18571,6 +18571,7 @@ paths: - "$ref": "#/components/parameters/personal-access-token-permission" - "$ref": "#/components/parameters/personal-access-token-before" - "$ref": "#/components/parameters/personal-access-token-after" + - "$ref": "#/components/parameters/personal-access-token-token-id" responses: '500': "$ref": "#/components/responses/internal_error" @@ -18813,6 +18814,7 @@ paths: - "$ref": "#/components/parameters/personal-access-token-permission" - "$ref": "#/components/parameters/personal-access-token-before" - "$ref": "#/components/parameters/personal-access-token-after" + - "$ref": "#/components/parameters/personal-access-token-token-id" responses: '500': "$ref": "#/components/responses/internal_error" @@ -33560,7 +33562,7 @@ paths: Creates or updates a repository development environment secret with an encrypted value. Encrypt your secret using [LibSodium](https://libsodium.gitbook.io/doc/bindings_for_other_languages). For more information, see "[Encrypting secrets for the REST API](https://docs.github.com/enterprise-cloud@latest//rest/guides/encrypting-secrets-for-the-rest-api)." - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/create-or-update-repo-secret @@ -33615,7 +33617,7 @@ paths: description: |- Deletes a development environment secret in a repository using the secret name. - OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. + OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. The associated user must be a repository admin. tags: - codespaces operationId: codespaces/delete-repo-secret @@ -36903,7 +36905,7 @@ paths: The authenticated user must have admin or owner permissions to the repository to use this endpoint. - For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app). + For more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-cloud@latest//rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/enterprise-cloud@latest//actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules). OAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint. tags: @@ -77173,6 +77175,7 @@ components: id: description: Unique identifier of the webhook delivery. type: integer + format: int64 examples: - 42 guid: @@ -77225,6 +77228,7 @@ components: type: - integer - 'null' + format: int64 examples: - 123 repository_id: @@ -77232,6 +77236,7 @@ components: type: - integer - 'null' + format: int64 examples: - 123 throttled_at: @@ -242990,6 +242995,18 @@ components: schema: type: string format: date-time + personal-access-token-token-id: + name: token_id + description: The ID of the token + in: query + required: false + schema: + type: array + maxItems: 50 + items: + type: string + examples: + - token_id[]=1,token_id[]=2 fine-grained-personal-access-token-id: name: pat_id description: The unique identifier of the fine-grained personal access token. diff --git a/descriptions-next/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json b/descriptions-next/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json index 466658d85b..6ba09ed277 100644 --- a/descriptions-next/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json +++ b/descriptions-next/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json @@ -10486,6 +10486,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -10556,6 +10557,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -10566,6 +10568,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -106755,6 +106758,7 @@ "id": { "description": "Unique identifier of the webhook delivery.", "type": "integer", + "format": "int64", "examples": [ 42 ] @@ -106825,6 +106829,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -106835,6 +106840,7 @@ "integer", "null" ], + "format": "int64", "examples": [ 123 ] @@ -124742,6 +124748,22 @@ "type": "string", "format": "date-time" } + }, + { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } } ], "responses": { @@ -126943,6 +126965,22 @@ "type": "string", "format": "date-time" } + }, + { + "name": "token_id", + "description": "The ID of the token", + "in": "query", + "required": false, + "schema": { + "type": "array", + "maxItems": 50, + "items": { + "type": "string" + }, + "examples": [ + "token_id[]=1,token_id[]=2" + ] + } } ], "responses": { @@ -281037,7 +281075,7 @@ }, "post": { "summary": "Create a custom deployment protection rule on an environment", - "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-server@3.12/rest/apps/apps#get-an-app).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", + "description": "Enable a custom deployment protection rule for an environment.\n\nThe authenticated user must have admin or owner permissions to the repository to use this endpoint.\n\nFor more information about the app that is providing this custom deployment rule, see the [documentation for the `GET /apps/{app_slug}` endpoint](https://docs.github.com/enterprise-server@3.12/rest/apps/apps#get-an-app), as well as the [guide to creating custom deployment protection rules](https://docs.github.com/enterprise-server@3.12/actions/managing-workflow-runs-and-deployments/managing-deployments/creating-custom-deployment-protection-rules).\n\nOAuth app tokens and personal access tokens (classic) need the `repo` scope to use this endpoint.", "tags": [ "repos" ], @@ -298081,6 +298119,7 @@ "id": { "description": "Unique identifier of the webhook delivery{"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}